From 4b6e0bc97b02a51c5d5a1ff3171da4c0d1e2ffad Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sat, 22 Jul 2023 03:58:48 -0400 Subject: [PATCH] feat: add `attribute_specifier` to struct --- grammar.js | 1 + src/grammar.json | 12 + src/parser.c | 117131 ++++++++++++++++---------------- test/corpus/declarations.txt | 15 +- 4 files changed, 58699 insertions(+), 58460 deletions(-) diff --git a/grammar.js b/grammar.js index 399e34e..0a53f6e 100644 --- a/grammar.js +++ b/grammar.js @@ -575,6 +575,7 @@ module.exports = grammar({ struct_specifier: $ => prec.right(seq( 'struct', + optional($.attribute_specifier), optional($.ms_declspec_modifier), choice( seq( diff --git a/src/grammar.json b/src/grammar.json index ef02691..4458d5a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3708,6 +3708,18 @@ "type": "STRING", "value": "struct" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ diff --git a/src/parser.c b/src/parser.c index 3d175bc..ef428a4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1997 +#define STATE_COUNT 2005 #define LARGE_STATE_COUNT 530 #define SYMBOL_COUNT 300 #define ALIAS_COUNT 3 @@ -14,7 +14,7 @@ #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 115 +#define PRODUCTION_ID_COUNT 118 enum { sym_identifier = 1, @@ -2276,74 +2276,77 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [42] = {.index = 61, .length = 2}, [43] = {.index = 63, .length = 2}, [45] = {.index = 65, .length = 2}, - [46] = {.index = 67, .length = 3}, - [47] = {.index = 70, .length = 1}, - [48] = {.index = 71, .length = 1}, - [49] = {.index = 72, .length = 2}, - [50] = {.index = 74, .length = 1}, - [51] = {.index = 75, .length = 1}, - [52] = {.index = 76, .length = 2}, - [53] = {.index = 78, .length = 3}, - [54] = {.index = 81, .length = 2}, - [55] = {.index = 83, .length = 3}, - [56] = {.index = 86, .length = 2}, - [57] = {.index = 88, .length = 2}, - [58] = {.index = 90, .length = 3}, - [59] = {.index = 93, .length = 2}, - [60] = {.index = 95, .length = 2}, - [61] = {.index = 97, .length = 1}, - [62] = {.index = 98, .length = 2}, - [63] = {.index = 100, .length = 3}, - [64] = {.index = 103, .length = 2}, - [65] = {.index = 105, .length = 2}, - [66] = {.index = 107, .length = 3}, - [67] = {.index = 110, .length = 2}, - [68] = {.index = 112, .length = 1}, - [69] = {.index = 113, .length = 2}, - [70] = {.index = 115, .length = 1}, + [46] = {.index = 67, .length = 1}, + [47] = {.index = 68, .length = 1}, + [48] = {.index = 69, .length = 3}, + [49] = {.index = 72, .length = 1}, + [50] = {.index = 73, .length = 1}, + [51] = {.index = 74, .length = 2}, + [52] = {.index = 76, .length = 1}, + [53] = {.index = 77, .length = 1}, + [54] = {.index = 78, .length = 2}, + [55] = {.index = 80, .length = 3}, + [56] = {.index = 83, .length = 2}, + [57] = {.index = 85, .length = 3}, + [58] = {.index = 88, .length = 2}, + [59] = {.index = 90, .length = 2}, + [60] = {.index = 92, .length = 3}, + [61] = {.index = 95, .length = 2}, + [62] = {.index = 97, .length = 2}, + [63] = {.index = 99, .length = 1}, + [64] = {.index = 100, .length = 2}, + [65] = {.index = 102, .length = 3}, + [66] = {.index = 105, .length = 2}, + [67] = {.index = 107, .length = 2}, + [68] = {.index = 109, .length = 3}, + [69] = {.index = 112, .length = 2}, + [70] = {.index = 114, .length = 2}, [71] = {.index = 116, .length = 1}, [72] = {.index = 117, .length = 2}, - [73] = {.index = 119, .length = 3}, - [74] = {.index = 122, .length = 2}, - [75] = {.index = 124, .length = 1}, - [77] = {.index = 125, .length = 3}, - [78] = {.index = 128, .length = 3}, - [79] = {.index = 131, .length = 2}, - [80] = {.index = 133, .length = 1}, - [81] = {.index = 134, .length = 2}, - [82] = {.index = 136, .length = 2}, - [83] = {.index = 138, .length = 2}, - [84] = {.index = 140, .length = 3}, - [85] = {.index = 143, .length = 2}, - [86] = {.index = 145, .length = 1}, - [87] = {.index = 146, .length = 2}, - [88] = {.index = 148, .length = 2}, - [89] = {.index = 150, .length = 3}, - [90] = {.index = 153, .length = 3}, - [91] = {.index = 156, .length = 2}, - [92] = {.index = 158, .length = 2}, - [93] = {.index = 160, .length = 3}, - [94] = {.index = 163, .length = 3}, - [95] = {.index = 166, .length = 2}, - [96] = {.index = 168, .length = 2}, - [97] = {.index = 170, .length = 1}, - [98] = {.index = 171, .length = 4}, - [99] = {.index = 175, .length = 3}, - [100] = {.index = 178, .length = 3}, - [101] = {.index = 181, .length = 4}, - [102] = {.index = 185, .length = 3}, - [103] = {.index = 188, .length = 3}, - [104] = {.index = 191, .length = 2}, - [105] = {.index = 193, .length = 2}, - [106] = {.index = 29, .length = 1}, - [107] = {.index = 195, .length = 5}, - [108] = {.index = 200, .length = 4}, - [109] = {.index = 204, .length = 4}, - [110] = {.index = 208, .length = 2}, - [111] = {.index = 210, .length = 2}, - [112] = {.index = 212, .length = 5}, - [113] = {.index = 217, .length = 2}, - [114] = {.index = 219, .length = 3}, + [73] = {.index = 119, .length = 1}, + [74] = {.index = 120, .length = 1}, + [75] = {.index = 121, .length = 2}, + [76] = {.index = 123, .length = 3}, + [77] = {.index = 126, .length = 2}, + [78] = {.index = 128, .length = 1}, + [80] = {.index = 129, .length = 3}, + [81] = {.index = 132, .length = 3}, + [82] = {.index = 135, .length = 2}, + [83] = {.index = 137, .length = 1}, + [84] = {.index = 138, .length = 2}, + [85] = {.index = 140, .length = 2}, + [86] = {.index = 142, .length = 2}, + [87] = {.index = 144, .length = 3}, + [88] = {.index = 147, .length = 2}, + [89] = {.index = 149, .length = 1}, + [90] = {.index = 150, .length = 2}, + [91] = {.index = 152, .length = 2}, + [92] = {.index = 154, .length = 3}, + [93] = {.index = 157, .length = 3}, + [94] = {.index = 160, .length = 2}, + [95] = {.index = 162, .length = 2}, + [96] = {.index = 164, .length = 3}, + [97] = {.index = 167, .length = 3}, + [98] = {.index = 170, .length = 2}, + [99] = {.index = 172, .length = 2}, + [100] = {.index = 174, .length = 1}, + [101] = {.index = 175, .length = 4}, + [102] = {.index = 179, .length = 3}, + [103] = {.index = 182, .length = 3}, + [104] = {.index = 185, .length = 4}, + [105] = {.index = 189, .length = 3}, + [106] = {.index = 192, .length = 3}, + [107] = {.index = 195, .length = 2}, + [108] = {.index = 197, .length = 2}, + [109] = {.index = 29, .length = 1}, + [110] = {.index = 199, .length = 5}, + [111] = {.index = 204, .length = 4}, + [112] = {.index = 208, .length = 4}, + [113] = {.index = 212, .length = 2}, + [114] = {.index = 214, .length = 2}, + [115] = {.index = 216, .length = 5}, + [116] = {.index = 221, .length = 2}, + [117] = {.index = 223, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2455,224 +2458,231 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 3}, {field_name, 2}, [67] = + {field_name, 3}, + [68] = + {field_body, 3}, + [69] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [70] = + [72] = {field_type, 2}, - [71] = + [73] = {field_assembly_code, 2}, - [72] = + [74] = {field_name, 0}, {field_type, 2}, - [74] = + [76] = {field_declarator, 2}, - [75] = + [77] = {field_declarator, 0}, - [76] = + [78] = {field_declarator, 0}, {field_value, 2}, - [78] = + [80] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [81] = + [83] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [83] = + [85] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [86] = + [88] = {field_argument, 0}, {field_index, 2}, - [88] = + [90] = {field_alternative, 3}, {field_condition, 0}, - [90] = + [92] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [93] = + [95] = {field_alternative, 3}, {field_condition, 1}, - [95] = + [97] = {field_alternative, 3}, {field_name, 1}, - [97] = + [99] = {field_size, 1}, - [98] = + [100] = {field_declarator, 3}, {field_type, 1}, - [100] = + [102] = {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 1}, - [103] = + [105] = {field_declarator, 3}, {field_type, 2}, - [105] = + [107] = {field_name, 0}, {field_value, 2}, - [107] = + [109] = {field_body, 4}, {field_name, 1}, {field_underlying_type, 3}, - [110] = + [112] = + {field_body, 4}, + {field_name, 3}, + [114] = {field_body, 1}, {field_condition, 3}, - [112] = + [116] = {field_operand, 1}, - [113] = + [117] = {field_assembly_code, 2}, {field_output_operands, 3}, - [115] = + [119] = {field_assembly_code, 3}, - [116] = + [120] = {field_declarator, 3}, - [117] = + [121] = {field_declarator, 0}, {field_size, 2}, - [119] = + [123] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [122] = + [126] = {field_alternative, 4}, {field_condition, 1}, - [124] = + [128] = {field_size, 2}, - [125] = + [129] = {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 1}, - [128] = + [132] = {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 2}, - [131] = + [135] = {field_declarator, 4}, {field_type, 2}, - [133] = + [137] = {field_body, 5}, - [134] = + [138] = {field_body, 5}, {field_initializer, 2}, - [136] = + [140] = {field_member, 4}, {field_type, 2}, - [138] = + [142] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [140] = + [144] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [143] = + [147] = {field_assembly_code, 3}, {field_output_operands, 4}, - [145] = + [149] = {field_declarator, 4}, - [146] = + [150] = {field_declarator, 0}, {field_size, 3}, - [148] = + [152] = {field_designator, 0}, {field_value, 2}, - [150] = + [154] = {field_declarator, 4}, {field_declarator, 5, .inherited = true}, {field_type, 2}, - [153] = + [157] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [156] = + [160] = {field_body, 6}, {field_update, 4}, - [158] = + [162] = {field_body, 6}, {field_condition, 3}, - [160] = + [164] = {field_body, 6}, {field_initializer, 2}, {field_update, 4}, - [163] = + [167] = {field_body, 6}, {field_condition, 3}, {field_initializer, 2}, - [166] = + [170] = {field_body, 6}, {field_initializer, 2}, - [168] = + [172] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [170] = + [174] = {field_register, 1}, - [171] = + [175] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [175] = + [179] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [178] = + [182] = {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [181] = + [185] = {field_body, 7}, {field_condition, 3}, {field_initializer, 2}, {field_update, 5}, - [185] = + [189] = {field_body, 7}, {field_initializer, 2}, {field_update, 5}, - [188] = + [192] = {field_body, 7}, {field_condition, 4}, {field_initializer, 2}, - [191] = + [195] = {field_constraint, 0}, {field_value, 2}, - [193] = + [197] = {field_register, 1}, {field_register, 2, .inherited = true}, - [195] = + [199] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [200] = + [204] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [204] = + [208] = {field_body, 8}, {field_condition, 4}, {field_initializer, 2}, {field_update, 6}, - [208] = + [212] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [210] = + [214] = {field_label, 1}, {field_label, 2, .inherited = true}, - [212] = + [216] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [217] = + [221] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [219] = + [223] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -2716,13 +2726,19 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [45] = { [2] = alias_sym_type_identifier, }, - [66] = { + [46] = { + [3] = alias_sym_type_identifier, + }, + [68] = { [1] = alias_sym_type_identifier, }, - [76] = { + [69] = { + [3] = alias_sym_type_identifier, + }, + [79] = { [1] = alias_sym_field_identifier, }, - [82] = { + [85] = { [4] = alias_sym_field_identifier, }, }; @@ -2735,55 +2751,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 2, - [5] = 5, - [6] = 5, - [7] = 5, - [8] = 2, - [9] = 2, - [10] = 5, - [11] = 5, + [3] = 3, + [4] = 3, + [5] = 2, + [6] = 2, + [7] = 3, + [8] = 3, + [9] = 3, + [10] = 2, + [11] = 2, [12] = 12, - [13] = 13, - [14] = 12, - [15] = 12, + [13] = 12, + [14] = 14, + [15] = 15, [16] = 16, - [17] = 13, - [18] = 12, - [19] = 13, - [20] = 20, - [21] = 13, - [22] = 22, - [23] = 12, - [24] = 13, - [25] = 25, - [26] = 26, - [27] = 22, + [17] = 17, + [18] = 18, + [19] = 12, + [20] = 15, + [21] = 15, + [22] = 15, + [23] = 15, + [24] = 24, + [25] = 12, + [26] = 12, + [27] = 24, [28] = 28, - [29] = 29, - [30] = 30, - [31] = 30, - [32] = 28, - [33] = 30, - [34] = 22, - [35] = 35, - [36] = 35, - [37] = 22, - [38] = 35, - [39] = 28, - [40] = 40, - [41] = 30, - [42] = 28, - [43] = 43, - [44] = 28, - [45] = 35, - [46] = 29, - [47] = 29, - [48] = 29, - [49] = 30, - [50] = 35, - [51] = 29, + [29] = 24, + [30] = 28, + [31] = 31, + [32] = 32, + [33] = 33, + [34] = 28, + [35] = 32, + [36] = 31, + [37] = 28, + [38] = 31, + [39] = 31, + [40] = 33, + [41] = 33, + [42] = 32, + [43] = 32, + [44] = 33, + [45] = 31, + [46] = 28, + [47] = 33, + [48] = 24, + [49] = 49, + [50] = 50, + [51] = 32, [52] = 52, [53] = 53, [54] = 54, @@ -2791,31 +2807,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 56, [57] = 57, [58] = 58, - [59] = 56, - [60] = 54, - [61] = 55, - [62] = 57, - [63] = 58, - [64] = 56, - [65] = 58, - [66] = 54, + [59] = 54, + [60] = 58, + [61] = 57, + [62] = 55, + [63] = 56, + [64] = 57, + [65] = 55, + [66] = 56, [67] = 58, [68] = 54, - [69] = 56, - [70] = 57, - [71] = 57, + [69] = 58, + [70] = 55, + [71] = 58, [72] = 54, - [73] = 58, - [74] = 55, - [75] = 56, - [76] = 55, - [77] = 57, + [73] = 56, + [74] = 57, + [75] = 54, + [76] = 57, + [77] = 56, [78] = 55, [79] = 57, - [80] = 54, - [81] = 55, - [82] = 56, - [83] = 58, + [80] = 58, + [81] = 54, + [82] = 55, + [83] = 56, [84] = 84, [85] = 84, [86] = 84, @@ -2869,13 +2885,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [134] = 134, [135] = 135, [136] = 136, - [137] = 91, + [137] = 137, [138] = 138, [139] = 139, [140] = 140, [141] = 141, [142] = 142, - [143] = 143, + [143] = 91, [144] = 144, [145] = 145, [146] = 146, @@ -2886,376 +2902,376 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [151] = 151, [152] = 152, [153] = 153, - [154] = 124, - [155] = 110, - [156] = 97, - [157] = 101, - [158] = 123, - [159] = 122, - [160] = 122, - [161] = 125, - [162] = 130, - [163] = 129, - [164] = 131, - [165] = 93, - [166] = 120, - [167] = 126, - [168] = 98, - [169] = 121, - [170] = 95, - [171] = 94, - [172] = 99, - [173] = 104, + [154] = 104, + [155] = 109, + [156] = 96, + [157] = 124, + [158] = 129, + [159] = 103, + [160] = 94, + [161] = 96, + [162] = 93, + [163] = 122, + [164] = 99, + [165] = 106, + [166] = 121, + [167] = 130, + [168] = 108, + [169] = 131, + [170] = 128, + [171] = 92, + [172] = 97, + [173] = 123, [174] = 120, - [175] = 127, - [176] = 128, - [177] = 100, - [178] = 119, - [179] = 102, - [180] = 103, - [181] = 118, - [182] = 105, - [183] = 106, - [184] = 107, - [185] = 108, - [186] = 109, - [187] = 96, - [188] = 117, - [189] = 111, - [190] = 92, - [191] = 112, - [192] = 116, - [193] = 113, - [194] = 114, - [195] = 115, - [196] = 151, - [197] = 142, - [198] = 146, - [199] = 149, - [200] = 145, - [201] = 136, - [202] = 135, - [203] = 132, + [175] = 95, + [176] = 98, + [177] = 119, + [178] = 127, + [179] = 125, + [180] = 118, + [181] = 100, + [182] = 121, + [183] = 101, + [184] = 102, + [185] = 105, + [186] = 107, + [187] = 126, + [188] = 111, + [189] = 110, + [190] = 112, + [191] = 113, + [192] = 114, + [193] = 117, + [194] = 115, + [195] = 116, + [196] = 141, + [197] = 151, + [198] = 91, + [199] = 153, + [200] = 152, + [201] = 144, + [202] = 145, + [203] = 142, [204] = 91, - [205] = 133, - [206] = 139, - [207] = 150, - [208] = 90, - [209] = 153, - [210] = 134, - [211] = 144, - [212] = 140, - [213] = 138, - [214] = 148, - [215] = 141, - [216] = 91, - [217] = 152, - [218] = 143, - [219] = 91, - [220] = 147, - [221] = 106, - [222] = 95, - [223] = 109, - [224] = 108, + [205] = 146, + [206] = 150, + [207] = 149, + [208] = 133, + [209] = 91, + [210] = 132, + [211] = 148, + [212] = 90, + [213] = 147, + [214] = 140, + [215] = 134, + [216] = 139, + [217] = 135, + [218] = 136, + [219] = 138, + [220] = 137, + [221] = 221, + [222] = 222, + [223] = 111, + [224] = 109, [225] = 107, - [226] = 106, - [227] = 105, - [228] = 228, - [229] = 103, - [230] = 102, - [231] = 231, - [232] = 110, - [233] = 100, - [234] = 99, - [235] = 98, - [236] = 236, - [237] = 111, - [238] = 238, - [239] = 92, - [240] = 127, + [226] = 105, + [227] = 102, + [228] = 101, + [229] = 100, + [230] = 100, + [231] = 98, + [232] = 232, + [233] = 95, + [234] = 102, + [235] = 123, + [236] = 97, + [237] = 105, + [238] = 103, + [239] = 239, + [240] = 110, [241] = 241, - [242] = 242, - [243] = 129, - [244] = 244, - [245] = 125, - [246] = 109, - [247] = 112, - [248] = 113, - [249] = 249, - [250] = 250, - [251] = 97, - [252] = 96, - [253] = 95, - [254] = 94, - [255] = 104, - [256] = 94, - [257] = 108, - [258] = 258, - [259] = 104, - [260] = 112, - [261] = 95, - [262] = 96, - [263] = 114, - [264] = 264, - [265] = 120, - [266] = 127, - [267] = 267, - [268] = 111, + [242] = 107, + [243] = 243, + [244] = 124, + [245] = 245, + [246] = 126, + [247] = 247, + [248] = 109, + [249] = 111, + [250] = 112, + [251] = 221, + [252] = 129, + [253] = 128, + [254] = 92, + [255] = 127, + [256] = 125, + [257] = 127, + [258] = 243, + [259] = 125, + [260] = 113, + [261] = 121, + [262] = 110, + [263] = 92, + [264] = 128, + [265] = 113, + [266] = 114, + [267] = 114, + [268] = 115, [269] = 269, - [270] = 270, + [270] = 108, [271] = 271, - [272] = 228, - [273] = 228, - [274] = 128, - [275] = 97, - [276] = 115, - [277] = 126, - [278] = 124, - [279] = 93, - [280] = 92, - [281] = 122, - [282] = 116, - [283] = 121, - [284] = 117, - [285] = 267, - [286] = 101, - [287] = 118, - [288] = 288, - [289] = 288, - [290] = 113, - [291] = 114, - [292] = 115, - [293] = 123, - [294] = 267, - [295] = 116, - [296] = 264, - [297] = 258, - [298] = 117, - [299] = 118, - [300] = 119, - [301] = 241, - [302] = 107, - [303] = 106, - [304] = 105, - [305] = 101, - [306] = 123, - [307] = 238, - [308] = 119, - [309] = 130, - [310] = 131, - [311] = 242, - [312] = 244, - [313] = 249, - [314] = 250, - [315] = 228, - [316] = 316, - [317] = 231, - [318] = 236, - [319] = 319, - [320] = 320, - [321] = 231, - [322] = 271, - [323] = 128, - [324] = 121, - [325] = 269, - [326] = 270, - [327] = 122, - [328] = 270, - [329] = 271, - [330] = 269, - [331] = 270, - [332] = 269, - [333] = 228, - [334] = 236, - [335] = 93, - [336] = 124, - [337] = 126, - [338] = 231, - [339] = 236, - [340] = 128, - [341] = 231, - [342] = 127, - [343] = 120, - [344] = 288, - [345] = 104, - [346] = 288, - [347] = 267, - [348] = 271, - [349] = 94, - [350] = 110, - [351] = 96, - [352] = 264, - [353] = 316, - [354] = 97, - [355] = 258, - [356] = 236, - [357] = 241, - [358] = 319, - [359] = 103, - [360] = 102, - [361] = 238, - [362] = 242, - [363] = 101, - [364] = 244, - [365] = 320, - [366] = 123, - [367] = 125, - [368] = 320, - [369] = 129, - [370] = 125, - [371] = 271, - [372] = 258, - [373] = 130, - [374] = 126, + [272] = 106, + [273] = 104, + [274] = 99, + [275] = 116, + [276] = 96, + [277] = 129, + [278] = 94, + [279] = 117, + [280] = 118, + [281] = 119, + [282] = 120, + [283] = 115, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 98, + [288] = 130, + [289] = 95, + [290] = 130, + [291] = 116, + [292] = 131, + [293] = 117, + [294] = 118, + [295] = 131, + [296] = 119, + [297] = 93, + [298] = 122, + [299] = 299, + [300] = 120, + [301] = 301, + [302] = 302, + [303] = 222, + [304] = 304, + [305] = 94, + [306] = 306, + [307] = 96, + [308] = 302, + [309] = 232, + [310] = 222, + [311] = 306, + [312] = 108, + [313] = 313, + [314] = 99, + [315] = 104, + [316] = 106, + [317] = 304, + [318] = 108, + [319] = 286, + [320] = 271, + [321] = 306, + [322] = 110, + [323] = 121, + [324] = 239, + [325] = 241, + [326] = 232, + [327] = 313, + [328] = 245, + [329] = 247, + [330] = 101, + [331] = 269, + [332] = 284, + [333] = 285, + [334] = 299, + [335] = 123, + [336] = 125, + [337] = 302, + [338] = 97, + [339] = 222, + [340] = 304, + [341] = 306, + [342] = 103, + [343] = 127, + [344] = 92, + [345] = 304, + [346] = 286, + [347] = 271, + [348] = 239, + [349] = 241, + [350] = 243, + [351] = 245, + [352] = 247, + [353] = 221, + [354] = 269, + [355] = 128, + [356] = 129, + [357] = 284, + [358] = 130, + [359] = 285, + [360] = 299, + [361] = 131, + [362] = 106, + [363] = 104, + [364] = 126, + [365] = 99, + [366] = 301, + [367] = 222, + [368] = 302, + [369] = 302, + [370] = 222, + [371] = 304, + [372] = 126, + [373] = 313, + [374] = 306, [375] = 124, - [376] = 131, - [377] = 249, - [378] = 98, - [379] = 93, - [380] = 250, - [381] = 99, - [382] = 100, - [383] = 100, - [384] = 269, - [385] = 102, - [386] = 99, - [387] = 270, - [388] = 103, - [389] = 98, - [390] = 319, - [391] = 316, - [392] = 316, - [393] = 105, - [394] = 107, - [395] = 319, - [396] = 319, - [397] = 108, - [398] = 241, - [399] = 250, - [400] = 316, - [401] = 249, - [402] = 109, - [403] = 244, - [404] = 121, - [405] = 242, - [406] = 238, - [407] = 110, - [408] = 111, - [409] = 92, - [410] = 241, - [411] = 112, - [412] = 320, - [413] = 129, - [414] = 264, - [415] = 320, - [416] = 250, - [417] = 113, - [418] = 258, - [419] = 249, - [420] = 114, - [421] = 264, - [422] = 244, - [423] = 242, - [424] = 267, - [425] = 115, - [426] = 116, - [427] = 238, - [428] = 117, - [429] = 238, - [430] = 118, - [431] = 288, - [432] = 241, - [433] = 258, - [434] = 264, - [435] = 267, - [436] = 288, - [437] = 119, - [438] = 270, - [439] = 228, - [440] = 269, - [441] = 242, - [442] = 236, - [443] = 231, - [444] = 244, - [445] = 249, - [446] = 320, - [447] = 250, - [448] = 130, - [449] = 316, - [450] = 319, - [451] = 131, - [452] = 151, - [453] = 149, - [454] = 146, - [455] = 142, + [376] = 93, + [377] = 313, + [378] = 122, + [379] = 103, + [380] = 97, + [381] = 94, + [382] = 286, + [383] = 271, + [384] = 123, + [385] = 232, + [386] = 239, + [387] = 241, + [388] = 243, + [389] = 245, + [390] = 247, + [391] = 221, + [392] = 95, + [393] = 269, + [394] = 284, + [395] = 98, + [396] = 285, + [397] = 299, + [398] = 286, + [399] = 301, + [400] = 271, + [401] = 302, + [402] = 112, + [403] = 304, + [404] = 306, + [405] = 100, + [406] = 301, + [407] = 101, + [408] = 313, + [409] = 102, + [410] = 105, + [411] = 286, + [412] = 271, + [413] = 239, + [414] = 241, + [415] = 239, + [416] = 313, + [417] = 124, + [418] = 241, + [419] = 107, + [420] = 243, + [421] = 245, + [422] = 247, + [423] = 221, + [424] = 269, + [425] = 284, + [426] = 285, + [427] = 299, + [428] = 243, + [429] = 245, + [430] = 301, + [431] = 232, + [432] = 301, + [433] = 122, + [434] = 247, + [435] = 109, + [436] = 120, + [437] = 299, + [438] = 119, + [439] = 118, + [440] = 117, + [441] = 116, + [442] = 285, + [443] = 284, + [444] = 115, + [445] = 269, + [446] = 114, + [447] = 113, + [448] = 93, + [449] = 221, + [450] = 112, + [451] = 111, + [452] = 134, + [453] = 151, + [454] = 153, + [455] = 150, [456] = 149, - [457] = 141, - [458] = 138, - [459] = 150, - [460] = 147, - [461] = 148, - [462] = 151, - [463] = 152, - [464] = 140, + [457] = 147, + [458] = 139, + [459] = 138, + [460] = 137, + [461] = 136, + [462] = 135, + [463] = 133, + [464] = 141, [465] = 144, - [466] = 133, - [467] = 140, - [468] = 153, - [469] = 138, - [470] = 141, - [471] = 152, - [472] = 142, - [473] = 132, - [474] = 143, - [475] = 147, - [476] = 153, - [477] = 143, - [478] = 134, - [479] = 136, - [480] = 150, - [481] = 139, - [482] = 134, - [483] = 135, - [484] = 136, - [485] = 139, - [486] = 146, - [487] = 145, - [488] = 145, - [489] = 135, + [466] = 151, + [467] = 146, + [468] = 148, + [469] = 152, + [470] = 145, + [471] = 142, + [472] = 132, + [473] = 134, + [474] = 140, + [475] = 153, + [476] = 152, + [477] = 148, + [478] = 146, + [479] = 145, + [480] = 144, + [481] = 142, + [482] = 150, + [483] = 149, + [484] = 147, + [485] = 140, + [486] = 139, + [487] = 141, + [488] = 132, + [489] = 138, [490] = 133, - [491] = 132, - [492] = 148, - [493] = 144, - [494] = 141, - [495] = 147, - [496] = 149, - [497] = 148, - [498] = 144, - [499] = 134, - [500] = 143, - [501] = 139, - [502] = 502, - [503] = 132, - [504] = 138, - [505] = 152, - [506] = 146, - [507] = 133, - [508] = 151, - [509] = 142, - [510] = 150, - [511] = 153, - [512] = 145, - [513] = 135, - [514] = 140, - [515] = 136, + [491] = 137, + [492] = 136, + [493] = 135, + [494] = 153, + [495] = 152, + [496] = 141, + [497] = 151, + [498] = 139, + [499] = 140, + [500] = 147, + [501] = 142, + [502] = 149, + [503] = 133, + [504] = 144, + [505] = 150, + [506] = 145, + [507] = 146, + [508] = 508, + [509] = 137, + [510] = 132, + [511] = 138, + [512] = 136, + [513] = 134, + [514] = 148, + [515] = 135, [516] = 516, - [517] = 516, - [518] = 518, - [519] = 518, + [517] = 517, + [518] = 517, + [519] = 517, [520] = 516, - [521] = 516, - [522] = 518, - [523] = 518, + [521] = 517, + [522] = 516, + [523] = 516, [524] = 90, [525] = 525, [526] = 526, @@ -3273,29 +3289,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [538] = 538, [539] = 539, [540] = 540, - [541] = 541, + [541] = 540, [542] = 540, - [543] = 540, - [544] = 544, - [545] = 544, - [546] = 540, - [547] = 544, - [548] = 544, - [549] = 549, + [543] = 543, + [544] = 540, + [545] = 543, + [546] = 546, + [547] = 543, + [548] = 548, + [549] = 543, [550] = 550, [551] = 551, [552] = 552, [553] = 553, [554] = 554, [555] = 555, - [556] = 555, - [557] = 557, - [558] = 558, - [559] = 553, - [560] = 555, - [561] = 553, - [562] = 555, - [563] = 553, + [556] = 556, + [557] = 556, + [558] = 554, + [559] = 556, + [560] = 554, + [561] = 561, + [562] = 554, + [563] = 556, [564] = 564, [565] = 564, [566] = 564, @@ -3306,101 +3322,101 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [571] = 564, [572] = 564, [573] = 564, - [574] = 564, - [575] = 554, - [576] = 576, - [577] = 554, + [574] = 574, + [575] = 564, + [576] = 555, + [577] = 577, [578] = 578, - [579] = 554, - [580] = 580, + [579] = 555, + [580] = 555, [581] = 581, [582] = 582, [583] = 583, - [584] = 583, + [584] = 577, [585] = 585, [586] = 586, [587] = 587, - [588] = 586, + [588] = 588, [589] = 589, [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 586, - [595] = 595, - [596] = 596, - [597] = 593, - [598] = 590, - [599] = 596, + [591] = 585, + [592] = 590, + [593] = 590, + [594] = 585, + [595] = 586, + [596] = 587, + [597] = 586, + [598] = 588, + [599] = 599, [600] = 600, - [601] = 600, - [602] = 589, - [603] = 596, - [604] = 587, - [605] = 589, - [606] = 590, - [607] = 607, - [608] = 592, - [609] = 595, - [610] = 586, - [611] = 591, - [612] = 585, - [613] = 591, - [614] = 590, - [615] = 593, - [616] = 596, - [617] = 587, - [618] = 585, - [619] = 591, - [620] = 620, - [621] = 592, - [622] = 587, - [623] = 623, - [624] = 595, - [625] = 589, - [626] = 600, - [627] = 586, + [601] = 601, + [602] = 587, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 589, + [607] = 588, + [608] = 586, + [609] = 600, + [610] = 601, + [611] = 605, + [612] = 612, + [613] = 604, + [614] = 589, + [615] = 604, + [616] = 585, + [617] = 605, + [618] = 590, + [619] = 619, + [620] = 589, + [621] = 585, + [622] = 585, + [623] = 586, + [624] = 600, + [625] = 590, + [626] = 605, + [627] = 601, [628] = 628, - [629] = 589, - [630] = 595, - [631] = 593, - [632] = 595, - [633] = 595, - [634] = 593, - [635] = 585, - [636] = 587, - [637] = 590, - [638] = 592, - [639] = 591, - [640] = 600, - [641] = 587, - [642] = 589, - [643] = 592, - [644] = 591, - [645] = 590, - [646] = 596, - [647] = 593, - [648] = 596, - [649] = 585, - [650] = 592, - [651] = 585, + [629] = 588, + [630] = 600, + [631] = 605, + [632] = 601, + [633] = 599, + [634] = 587, + [635] = 589, + [636] = 605, + [637] = 604, + [638] = 587, + [639] = 588, + [640] = 587, + [641] = 600, + [642] = 604, + [643] = 601, + [644] = 604, + [645] = 601, + [646] = 600, + [647] = 588, + [648] = 590, + [649] = 599, + [650] = 586, + [651] = 599, [652] = 652, [653] = 653, [654] = 654, [655] = 655, [656] = 656, [657] = 657, - [658] = 653, + [658] = 658, [659] = 659, [660] = 660, - [661] = 661, - [662] = 662, + [661] = 656, + [662] = 652, [663] = 663, [664] = 664, - [665] = 664, - [666] = 653, - [667] = 653, - [668] = 668, + [665] = 656, + [666] = 666, + [667] = 667, + [668] = 656, [669] = 669, [670] = 670, [671] = 671, @@ -3410,93 +3426,93 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [675] = 675, [676] = 676, [677] = 677, - [678] = 673, + [678] = 678, [679] = 679, [680] = 680, - [681] = 681, + [681] = 672, [682] = 682, [683] = 683, - [684] = 681, - [685] = 679, - [686] = 674, - [687] = 677, - [688] = 688, + [684] = 676, + [685] = 675, + [686] = 673, + [687] = 687, + [688] = 676, [689] = 689, [690] = 690, - [691] = 691, + [691] = 670, [692] = 692, - [693] = 693, - [694] = 694, - [695] = 695, + [693] = 673, + [694] = 683, + [695] = 689, [696] = 696, - [697] = 672, - [698] = 696, + [697] = 669, + [698] = 682, [699] = 699, - [700] = 695, - [701] = 679, - [702] = 693, - [703] = 692, - [704] = 689, - [705] = 688, - [706] = 676, - [707] = 694, - [708] = 681, - [709] = 691, - [710] = 677, - [711] = 672, - [712] = 674, - [713] = 695, - [714] = 714, - [715] = 715, - [716] = 694, - [717] = 717, - [718] = 691, - [719] = 693, - [720] = 676, - [721] = 677, - [722] = 722, - [723] = 673, + [700] = 692, + [701] = 680, + [702] = 678, + [703] = 672, + [704] = 677, + [705] = 689, + [706] = 706, + [707] = 674, + [708] = 671, + [709] = 687, + [710] = 710, + [711] = 669, + [712] = 699, + [713] = 672, + [714] = 678, + [715] = 670, + [716] = 690, + [717] = 690, + [718] = 670, + [719] = 669, + [720] = 687, + [721] = 671, + [722] = 689, + [723] = 699, [724] = 676, - [725] = 722, - [726] = 692, - [727] = 673, - [728] = 673, - [729] = 672, - [730] = 683, - [731] = 674, - [732] = 675, - [733] = 683, - [734] = 682, - [735] = 672, - [736] = 691, - [737] = 694, - [738] = 696, - [739] = 695, - [740] = 693, - [741] = 692, - [742] = 689, - [743] = 683, - [744] = 682, - [745] = 673, - [746] = 688, - [747] = 679, - [748] = 681, - [749] = 696, - [750] = 688, - [751] = 689, - [752] = 682, + [725] = 674, + [726] = 689, + [727] = 706, + [728] = 689, + [729] = 729, + [730] = 678, + [731] = 731, + [732] = 677, + [733] = 733, + [734] = 673, + [735] = 682, + [736] = 683, + [737] = 680, + [738] = 699, + [739] = 706, + [740] = 706, + [741] = 690, + [742] = 742, + [743] = 687, + [744] = 671, + [745] = 677, + [746] = 746, + [747] = 674, + [748] = 748, + [749] = 682, + [750] = 683, + [751] = 680, + [752] = 678, [753] = 753, [754] = 754, [755] = 755, [756] = 756, [757] = 757, - [758] = 576, + [758] = 574, [759] = 759, - [760] = 760, - [761] = 760, - [762] = 525, - [763] = 526, - [764] = 764, + [760] = 526, + [761] = 761, + [762] = 762, + [763] = 761, + [764] = 525, [765] = 765, [766] = 766, [767] = 767, @@ -3545,45 +3561,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [810] = 810, [811] = 811, [812] = 812, - [813] = 813, - [814] = 813, - [815] = 813, - [816] = 813, - [817] = 813, + [813] = 812, + [814] = 814, + [815] = 812, + [816] = 812, + [817] = 812, [818] = 818, [819] = 819, [820] = 820, [821] = 820, [822] = 820, [823] = 820, - [824] = 820, - [825] = 825, + [824] = 824, + [825] = 820, [826] = 820, - [827] = 765, - [828] = 778, - [829] = 810, - [830] = 770, - [831] = 777, - [832] = 809, - [833] = 782, - [834] = 834, - [835] = 766, - [836] = 795, - [837] = 769, - [838] = 806, - [839] = 801, - [840] = 774, - [841] = 796, - [842] = 793, - [843] = 799, - [844] = 803, - [845] = 805, - [846] = 811, - [847] = 790, - [848] = 785, - [849] = 798, + [827] = 810, + [828] = 783, + [829] = 794, + [830] = 766, + [831] = 768, + [832] = 791, + [833] = 765, + [834] = 809, + [835] = 792, + [836] = 787, + [837] = 837, + [838] = 805, + [839] = 793, + [840] = 780, + [841] = 769, + [842] = 798, + [843] = 803, + [844] = 800, + [845] = 807, + [846] = 777, + [847] = 811, + [848] = 806, + [849] = 786, [850] = 850, - [851] = 132, + [851] = 851, [852] = 852, [853] = 853, [854] = 854, @@ -3591,153 +3607,153 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [856] = 856, [857] = 857, [858] = 858, - [859] = 148, + [859] = 859, [860] = 860, - [861] = 144, - [862] = 153, + [861] = 861, + [862] = 862, [863] = 863, [864] = 864, [865] = 865, [866] = 866, [867] = 867, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 145, - [872] = 872, - [873] = 873, - [874] = 135, - [875] = 875, - [876] = 132, - [877] = 153, - [878] = 864, - [879] = 867, - [880] = 144, - [881] = 865, - [882] = 850, - [883] = 868, - [884] = 884, - [885] = 852, - [886] = 870, - [887] = 148, - [888] = 888, - [889] = 863, - [890] = 890, + [868] = 152, + [869] = 145, + [870] = 142, + [871] = 132, + [872] = 134, + [873] = 140, + [874] = 874, + [875] = 824, + [876] = 876, + [877] = 874, + [878] = 865, + [879] = 851, + [880] = 862, + [881] = 861, + [882] = 866, + [883] = 864, + [884] = 853, + [885] = 850, + [886] = 860, + [887] = 859, + [888] = 858, + [889] = 857, + [890] = 863, [891] = 891, - [892] = 856, - [893] = 860, - [894] = 869, - [895] = 895, - [896] = 872, - [897] = 897, - [898] = 873, - [899] = 855, - [900] = 854, - [901] = 145, - [902] = 135, - [903] = 857, - [904] = 825, + [892] = 892, + [893] = 856, + [894] = 894, + [895] = 140, + [896] = 134, + [897] = 132, + [898] = 142, + [899] = 145, + [900] = 152, + [901] = 855, + [902] = 854, + [903] = 903, + [904] = 904, [905] = 905, - [906] = 858, - [907] = 853, + [906] = 867, + [907] = 907, [908] = 908, [909] = 909, - [910] = 525, - [911] = 526, - [912] = 757, - [913] = 756, - [914] = 865, - [915] = 132, - [916] = 850, - [917] = 865, - [918] = 864, - [919] = 856, - [920] = 863, - [921] = 803, - [922] = 922, - [923] = 805, + [910] = 757, + [911] = 525, + [912] = 756, + [913] = 526, + [914] = 914, + [915] = 765, + [916] = 780, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 803, + [921] = 921, + [922] = 850, + [923] = 923, [924] = 924, - [925] = 873, - [926] = 806, - [927] = 872, - [928] = 870, - [929] = 860, - [930] = 867, - [931] = 868, - [932] = 850, - [933] = 852, - [934] = 852, - [935] = 924, - [936] = 867, - [937] = 864, - [938] = 793, - [939] = 868, - [940] = 870, - [941] = 941, - [942] = 854, - [943] = 145, - [944] = 857, - [945] = 856, - [946] = 863, - [947] = 857, - [948] = 924, - [949] = 801, - [950] = 860, - [951] = 858, - [952] = 952, - [953] = 953, - [954] = 853, - [955] = 858, - [956] = 956, - [957] = 765, - [958] = 135, - [959] = 924, - [960] = 810, - [961] = 872, - [962] = 809, - [963] = 799, - [964] = 796, - [965] = 853, - [966] = 854, + [925] = 140, + [926] = 926, + [927] = 134, + [928] = 854, + [929] = 132, + [930] = 930, + [931] = 931, + [932] = 142, + [933] = 145, + [934] = 768, + [935] = 152, + [936] = 851, + [937] = 855, + [938] = 145, + [939] = 921, + [940] = 142, + [941] = 800, + [942] = 874, + [943] = 865, + [944] = 856, + [945] = 798, + [946] = 921, + [947] = 851, + [948] = 862, + [949] = 861, + [950] = 866, + [951] = 864, + [952] = 921, + [953] = 853, + [954] = 862, + [955] = 850, + [956] = 860, + [957] = 859, + [958] = 858, + [959] = 857, + [960] = 863, + [961] = 863, + [962] = 791, + [963] = 963, + [964] = 853, + [965] = 152, + [966] = 856, [967] = 855, - [968] = 873, - [969] = 766, - [970] = 869, - [971] = 855, - [972] = 972, - [973] = 924, + [968] = 857, + [969] = 969, + [970] = 854, + [971] = 809, + [972] = 858, + [973] = 861, [974] = 974, - [975] = 145, - [976] = 135, - [977] = 977, - [978] = 795, - [979] = 778, - [980] = 153, - [981] = 981, - [982] = 982, - [983] = 153, - [984] = 132, - [985] = 869, - [986] = 148, - [987] = 144, - [988] = 988, - [989] = 148, + [975] = 132, + [976] = 810, + [977] = 134, + [978] = 792, + [979] = 979, + [980] = 867, + [981] = 787, + [982] = 874, + [983] = 783, + [984] = 867, + [985] = 866, + [986] = 865, + [987] = 860, + [988] = 769, + [989] = 864, [990] = 990, - [991] = 991, - [992] = 144, + [991] = 859, + [992] = 140, [993] = 993, [994] = 994, - [995] = 123, + [995] = 921, [996] = 996, [997] = 997, [998] = 998, [999] = 999, [1000] = 1000, - [1001] = 1001, + [1001] = 131, [1002] = 1002, [1003] = 1003, - [1004] = 131, - [1005] = 1005, + [1004] = 122, + [1005] = 93, [1006] = 1006, [1007] = 1007, [1008] = 1008, @@ -3747,13 +3763,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1012] = 1012, [1013] = 1013, [1014] = 1014, - [1015] = 101, + [1015] = 1015, [1016] = 1016, - [1017] = 1017, + [1017] = 130, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 130, + [1021] = 1021, [1022] = 1022, [1023] = 1023, [1024] = 1024, @@ -3762,7 +3778,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1027] = 1027, [1028] = 1028, [1029] = 1029, - [1030] = 1027, + [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, @@ -3770,104 +3786,104 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1035] = 1035, [1036] = 1036, [1037] = 1037, - [1038] = 1027, + [1038] = 1038, [1039] = 1039, - [1040] = 1027, + [1040] = 1040, [1041] = 1041, [1042] = 1042, [1043] = 1043, - [1044] = 1044, - [1045] = 1027, - [1046] = 1035, + [1044] = 1043, + [1045] = 1043, + [1046] = 1033, [1047] = 1047, - [1048] = 1048, - [1049] = 1049, + [1048] = 1043, + [1049] = 1043, [1050] = 1050, [1051] = 1051, [1052] = 1052, [1053] = 1053, [1054] = 1054, - [1055] = 1049, - [1056] = 1047, + [1055] = 1055, + [1056] = 1056, [1057] = 1057, - [1058] = 1058, - [1059] = 1052, + [1058] = 1055, + [1059] = 1059, [1060] = 1060, - [1061] = 1047, + [1061] = 1054, [1062] = 1062, [1063] = 1063, - [1064] = 1048, + [1064] = 1064, [1065] = 1065, - [1066] = 1066, - [1067] = 1065, - [1068] = 1068, - [1069] = 1068, - [1070] = 1066, - [1071] = 1057, - [1072] = 1057, - [1073] = 1047, - [1074] = 1050, - [1075] = 1057, - [1076] = 1050, - [1077] = 1062, - [1078] = 1050, - [1079] = 1047, - [1080] = 1052, - [1081] = 1049, - [1082] = 1049, - [1083] = 1049, - [1084] = 1050, - [1085] = 1068, + [1066] = 1064, + [1067] = 1067, + [1068] = 1067, + [1069] = 1053, + [1070] = 1070, + [1071] = 1071, + [1072] = 1070, + [1073] = 1071, + [1074] = 1063, + [1075] = 1075, + [1076] = 1060, + [1077] = 1065, + [1078] = 1062, + [1079] = 1065, + [1080] = 1053, + [1081] = 1063, + [1082] = 1070, + [1083] = 1056, + [1084] = 1064, + [1085] = 1054, [1086] = 1053, - [1087] = 1053, - [1088] = 1065, - [1089] = 1057, - [1090] = 1052, - [1091] = 1054, - [1092] = 1048, - [1093] = 1048, - [1094] = 1047, - [1095] = 1062, - [1096] = 1049, - [1097] = 1048, - [1098] = 1054, - [1099] = 1050, - [1100] = 1053, - [1101] = 1068, - [1102] = 1051, - [1103] = 1066, - [1104] = 1104, - [1105] = 1065, - [1106] = 1068, - [1107] = 1054, - [1108] = 1062, - [1109] = 1048, - [1110] = 1066, - [1111] = 1057, - [1112] = 1112, - [1113] = 1052, - [1114] = 1066, - [1115] = 1054, - [1116] = 1116, - [1117] = 1062, - [1118] = 1065, - [1119] = 1062, - [1120] = 1052, - [1121] = 1053, - [1122] = 1068, - [1123] = 1065, - [1124] = 1066, - [1125] = 1125, - [1126] = 1126, - [1127] = 1127, + [1087] = 1067, + [1088] = 1059, + [1089] = 1070, + [1090] = 1067, + [1091] = 1071, + [1092] = 1064, + [1093] = 1060, + [1094] = 1055, + [1095] = 1054, + [1096] = 1056, + [1097] = 1065, + [1098] = 1060, + [1099] = 1099, + [1100] = 1064, + [1101] = 1063, + [1102] = 1070, + [1103] = 1053, + [1104] = 1070, + [1105] = 1059, + [1106] = 1054, + [1107] = 1064, + [1108] = 1063, + [1109] = 1067, + [1110] = 1063, + [1111] = 1071, + [1112] = 1053, + [1113] = 1113, + [1114] = 1054, + [1115] = 1055, + [1116] = 1071, + [1117] = 1056, + [1118] = 1118, + [1119] = 1060, + [1120] = 1055, + [1121] = 1056, + [1122] = 1055, + [1123] = 1059, + [1124] = 1067, + [1125] = 1071, + [1126] = 1056, + [1127] = 1065, [1128] = 1128, - [1129] = 1128, - [1130] = 793, - [1131] = 1131, + [1129] = 1065, + [1130] = 1130, + [1131] = 1059, [1132] = 1132, [1133] = 1133, - [1134] = 1134, - [1135] = 795, + [1134] = 803, + [1135] = 1135, [1136] = 1136, [1137] = 1137, [1138] = 1138, @@ -3876,107 +3892,107 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 778, - [1145] = 1138, - [1146] = 765, - [1147] = 1147, + [1144] = 1144, + [1145] = 1145, + [1146] = 780, + [1147] = 1143, [1148] = 1148, - [1149] = 1138, - [1150] = 1150, - [1151] = 1128, - [1152] = 1128, - [1153] = 806, - [1154] = 809, - [1155] = 810, - [1156] = 1128, - [1157] = 799, - [1158] = 796, - [1159] = 1138, + [1149] = 1149, + [1150] = 1143, + [1151] = 1143, + [1152] = 1152, + [1153] = 1143, + [1154] = 769, + [1155] = 783, + [1156] = 1148, + [1157] = 1157, + [1158] = 1158, + [1159] = 768, [1160] = 1160, - [1161] = 1161, - [1162] = 1162, - [1163] = 766, - [1164] = 1128, - [1165] = 805, - [1166] = 801, - [1167] = 803, - [1168] = 1168, + [1161] = 1143, + [1162] = 800, + [1163] = 791, + [1164] = 798, + [1165] = 787, + [1166] = 809, + [1167] = 765, + [1168] = 792, [1169] = 1169, - [1170] = 1170, - [1171] = 1170, - [1172] = 1172, + [1170] = 1148, + [1171] = 810, + [1172] = 1148, [1173] = 1173, [1174] = 1174, [1175] = 1175, [1176] = 1176, [1177] = 1177, [1178] = 1178, - [1179] = 1169, - [1180] = 1172, - [1181] = 1170, - [1182] = 1172, - [1183] = 1175, + [1179] = 1176, + [1180] = 1180, + [1181] = 1175, + [1182] = 1182, + [1183] = 1182, [1184] = 1184, - [1185] = 1169, - [1186] = 1184, - [1187] = 1168, - [1188] = 1168, - [1189] = 812, - [1190] = 1170, - [1191] = 1184, - [1192] = 1168, - [1193] = 1169, - [1194] = 1184, + [1185] = 1174, + [1186] = 1174, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1176, + [1191] = 1191, + [1192] = 1192, + [1193] = 1176, + [1194] = 1177, [1195] = 1195, [1196] = 1196, - [1197] = 1197, - [1198] = 1175, - [1199] = 1184, - [1200] = 1172, - [1201] = 1175, - [1202] = 1172, - [1203] = 1176, - [1204] = 1204, - [1205] = 1170, - [1206] = 1168, - [1207] = 1207, + [1197] = 1178, + [1198] = 1178, + [1199] = 1177, + [1200] = 1177, + [1201] = 1178, + [1202] = 1175, + [1203] = 1192, + [1204] = 1178, + [1205] = 1205, + [1206] = 1175, + [1207] = 1192, [1208] = 1175, - [1209] = 1169, - [1210] = 1043, - [1211] = 1063, - [1212] = 1212, - [1213] = 1213, - [1214] = 1197, - [1215] = 1178, - [1216] = 1173, - [1217] = 1217, + [1209] = 1174, + [1210] = 1192, + [1211] = 814, + [1212] = 1192, + [1213] = 1177, + [1214] = 1174, + [1215] = 1176, + [1216] = 1041, + [1217] = 1099, [1218] = 1218, [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, + [1220] = 1188, + [1221] = 1184, + [1222] = 1189, [1223] = 1223, [1224] = 1224, [1225] = 1225, [1226] = 1226, [1227] = 1227, [1228] = 1228, - [1229] = 1217, - [1230] = 1226, + [1229] = 1229, + [1230] = 1230, [1231] = 1231, [1232] = 1232, [1233] = 1233, - [1234] = 1022, - [1235] = 1235, - [1236] = 1228, - [1237] = 1237, + [1234] = 1234, + [1235] = 1234, + [1236] = 1236, + [1237] = 1226, [1238] = 1238, [1239] = 1239, [1240] = 1240, - [1241] = 1241, + [1241] = 1003, [1242] = 1242, - [1243] = 1243, - [1244] = 1241, + [1243] = 1238, + [1244] = 1244, [1245] = 1245, [1246] = 1246, [1247] = 1247, @@ -3984,200 +4000,200 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1249] = 1249, [1250] = 1250, [1251] = 1251, - [1252] = 1239, + [1252] = 1252, [1253] = 1253, [1254] = 1254, - [1255] = 1242, - [1256] = 1240, + [1255] = 1255, + [1256] = 1256, [1257] = 1257, - [1258] = 1258, - [1259] = 1259, + [1258] = 1247, + [1259] = 1248, [1260] = 1260, [1261] = 1261, [1262] = 1262, - [1263] = 1263, + [1263] = 1254, [1264] = 1264, - [1265] = 1254, - [1266] = 1253, - [1267] = 1238, + [1265] = 1252, + [1266] = 1266, + [1267] = 1251, [1268] = 1268, - [1269] = 1269, + [1269] = 1246, [1270] = 1270, [1271] = 1271, - [1272] = 1272, - [1273] = 1247, - [1274] = 1243, + [1272] = 1250, + [1273] = 1273, + [1274] = 1274, [1275] = 1275, - [1276] = 1276, - [1277] = 1251, + [1276] = 1260, + [1277] = 1277, [1278] = 1278, [1279] = 1279, - [1280] = 1280, - [1281] = 1253, - [1282] = 1275, - [1283] = 1250, - [1284] = 1243, - [1285] = 1285, - [1286] = 1286, - [1287] = 1249, - [1288] = 1253, - [1289] = 1248, - [1290] = 1253, - [1291] = 797, - [1292] = 1292, - [1293] = 1243, - [1294] = 1294, - [1295] = 1294, - [1296] = 1268, + [1280] = 1262, + [1281] = 1268, + [1282] = 1277, + [1283] = 1283, + [1284] = 1247, + [1285] = 1279, + [1286] = 1246, + [1287] = 1287, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, + [1291] = 1291, + [1292] = 1244, + [1293] = 1293, + [1294] = 1247, + [1295] = 1295, + [1296] = 796, [1297] = 1297, - [1298] = 1298, - [1299] = 1258, - [1300] = 1280, - [1301] = 1278, - [1302] = 1298, - [1303] = 1257, - [1304] = 1297, - [1305] = 1297, - [1306] = 1260, - [1307] = 1261, - [1308] = 1298, - [1309] = 1309, - [1310] = 1262, - [1311] = 1309, - [1312] = 1312, - [1313] = 1245, - [1314] = 1279, - [1315] = 1263, - [1316] = 797, - [1317] = 1298, - [1318] = 1318, - [1319] = 1297, - [1320] = 1272, - [1321] = 1297, - [1322] = 1264, - [1323] = 1271, - [1324] = 1270, - [1325] = 1269, - [1326] = 1259, - [1327] = 1022, - [1328] = 1328, - [1329] = 1329, - [1330] = 1043, - [1331] = 1331, - [1332] = 1331, - [1333] = 1331, - [1334] = 1331, - [1335] = 1335, - [1336] = 1335, - [1337] = 1335, - [1338] = 1335, - [1339] = 1339, - [1340] = 1340, + [1298] = 1275, + [1299] = 1246, + [1300] = 1247, + [1301] = 1301, + [1302] = 1302, + [1303] = 1303, + [1304] = 1302, + [1305] = 1264, + [1306] = 1288, + [1307] = 1289, + [1308] = 1293, + [1309] = 1303, + [1310] = 1297, + [1311] = 1270, + [1312] = 1287, + [1313] = 1257, + [1314] = 1303, + [1315] = 1303, + [1316] = 1245, + [1317] = 1290, + [1318] = 1302, + [1319] = 1303, + [1320] = 1283, + [1321] = 1302, + [1322] = 796, + [1323] = 1301, + [1324] = 1324, + [1325] = 1325, + [1326] = 1274, + [1327] = 1256, + [1328] = 1273, + [1329] = 1271, + [1330] = 1266, + [1331] = 1261, + [1332] = 1291, + [1333] = 1003, + [1334] = 1334, + [1335] = 1041, + [1336] = 1336, + [1337] = 1337, + [1338] = 1337, + [1339] = 1337, + [1340] = 1337, [1341] = 1341, - [1342] = 1340, - [1343] = 1343, - [1344] = 1339, - [1345] = 1340, + [1342] = 1341, + [1343] = 1341, + [1344] = 1341, + [1345] = 1345, [1346] = 1346, - [1347] = 1341, - [1348] = 1339, - [1349] = 1341, - [1350] = 1339, - [1351] = 1340, - [1352] = 1339, - [1353] = 1341, - [1354] = 1339, - [1355] = 1341, - [1356] = 1340, - [1357] = 1357, - [1358] = 1358, + [1347] = 1346, + [1348] = 1345, + [1349] = 1349, + [1350] = 1349, + [1351] = 1349, + [1352] = 1345, + [1353] = 1349, + [1354] = 1346, + [1355] = 1345, + [1356] = 1346, + [1357] = 1345, + [1358] = 1346, [1359] = 1359, [1360] = 1360, - [1361] = 1361, - [1362] = 1362, + [1361] = 1349, + [1362] = 1349, [1363] = 1363, [1364] = 1364, [1365] = 1365, - [1366] = 1359, - [1367] = 1367, - [1368] = 1359, + [1366] = 1366, + [1367] = 1363, + [1368] = 1368, [1369] = 1369, [1370] = 1370, - [1371] = 1371, + [1371] = 1363, [1372] = 1372, [1373] = 1373, [1374] = 1374, - [1375] = 1359, + [1375] = 1363, [1376] = 1376, [1377] = 1377, - [1378] = 1359, - [1379] = 1379, + [1378] = 1378, + [1379] = 1363, [1380] = 1380, - [1381] = 1380, - [1382] = 1380, + [1381] = 1381, + [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 1380, - [1387] = 1380, - [1388] = 1388, + [1386] = 1386, + [1387] = 1386, + [1388] = 1386, [1389] = 1389, - [1390] = 1380, + [1390] = 1390, [1391] = 1391, [1392] = 1392, - [1393] = 1393, - [1394] = 1394, + [1393] = 1386, + [1394] = 1386, [1395] = 1395, - [1396] = 1392, - [1397] = 1395, - [1398] = 1394, - [1399] = 1392, - [1400] = 1400, - [1401] = 1392, - [1402] = 1400, + [1396] = 1396, + [1397] = 1386, + [1398] = 1398, + [1399] = 1399, + [1400] = 1399, + [1401] = 1401, + [1402] = 1401, [1403] = 1403, - [1404] = 1400, - [1405] = 1403, - [1406] = 1403, - [1407] = 1400, + [1404] = 1404, + [1405] = 1401, + [1406] = 1406, + [1407] = 1406, [1408] = 1408, - [1409] = 1395, - [1410] = 1395, - [1411] = 1411, - [1412] = 1394, - [1413] = 1400, - [1414] = 1403, - [1415] = 1394, - [1416] = 1395, - [1417] = 1394, - [1418] = 1392, - [1419] = 1419, + [1409] = 1408, + [1410] = 1408, + [1411] = 1406, + [1412] = 1399, + [1413] = 1399, + [1414] = 1408, + [1415] = 1415, + [1416] = 1416, + [1417] = 1406, + [1418] = 1415, + [1419] = 1399, [1420] = 1420, - [1421] = 1403, - [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1426, - [1427] = 1424, + [1421] = 1415, + [1422] = 1408, + [1423] = 1406, + [1424] = 1415, + [1425] = 1415, + [1426] = 1401, + [1427] = 1401, [1428] = 1428, [1429] = 1429, [1430] = 1430, [1431] = 1431, - [1432] = 1424, + [1432] = 1432, [1433] = 1433, [1434] = 1434, [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1424, + [1436] = 1429, + [1437] = 1429, + [1438] = 1429, [1439] = 1439, [1440] = 1440, - [1441] = 1441, + [1441] = 1429, [1442] = 1442, [1443] = 1443, [1444] = 1444, - [1445] = 1424, + [1445] = 1445, [1446] = 1446, [1447] = 1447, [1448] = 1448, @@ -4216,34 +4232,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1479, + [1484] = 1484, [1485] = 1485, - [1486] = 1479, - [1487] = 1487, - [1488] = 1487, + [1486] = 1486, + [1487] = 1483, + [1488] = 1486, [1489] = 1489, - [1490] = 1490, - [1491] = 1489, + [1490] = 1483, + [1491] = 1484, [1492] = 1492, - [1493] = 1489, - [1494] = 1489, - [1495] = 1479, - [1496] = 1487, + [1493] = 1493, + [1494] = 1494, + [1495] = 1484, + [1496] = 1496, [1497] = 1497, [1498] = 1498, - [1499] = 1499, - [1500] = 1487, + [1499] = 1486, + [1500] = 1484, [1501] = 1501, [1502] = 1502, [1503] = 1503, - [1504] = 1503, - [1505] = 1503, + [1504] = 1483, + [1505] = 1486, [1506] = 1506, [1507] = 1507, - [1508] = 1503, + [1508] = 1508, [1509] = 1509, [1510] = 1510, - [1511] = 1509, + [1511] = 1511, [1512] = 1512, [1513] = 1513, [1514] = 1514, @@ -4251,132 +4267,132 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1516] = 1516, [1517] = 1517, [1518] = 1518, - [1519] = 1503, - [1520] = 1520, + [1519] = 1510, + [1520] = 1510, [1521] = 1521, - [1522] = 1503, - [1523] = 1523, - [1524] = 1509, - [1525] = 1503, - [1526] = 1503, - [1527] = 1527, - [1528] = 1506, + [1522] = 1522, + [1523] = 1510, + [1524] = 1510, + [1525] = 1525, + [1526] = 1510, + [1527] = 1510, + [1528] = 1510, [1529] = 1529, [1530] = 1530, - [1531] = 1503, - [1532] = 1506, + [1531] = 1522, + [1532] = 1522, [1533] = 1533, - [1534] = 1534, + [1534] = 1517, [1535] = 1535, [1536] = 1536, - [1537] = 1537, + [1537] = 1510, [1538] = 1538, - [1539] = 1539, - [1540] = 1536, - [1541] = 1535, - [1542] = 1534, + [1539] = 1517, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, [1543] = 1543, [1544] = 1544, [1545] = 1545, [1546] = 1546, - [1547] = 1535, + [1547] = 1547, [1548] = 1548, - [1549] = 1538, + [1549] = 1549, [1550] = 1550, [1551] = 1551, - [1552] = 1534, + [1552] = 1552, [1553] = 1553, [1554] = 1554, [1555] = 1555, [1556] = 1556, [1557] = 1557, - [1558] = 1533, + [1558] = 1558, [1559] = 1559, - [1560] = 1538, + [1560] = 1560, [1561] = 1561, [1562] = 1562, - [1563] = 1563, + [1563] = 1557, [1564] = 1564, [1565] = 1565, - [1566] = 1566, + [1566] = 1564, [1567] = 1567, [1568] = 1568, [1569] = 1569, - [1570] = 1559, + [1570] = 1544, [1571] = 1571, - [1572] = 1563, - [1573] = 1571, - [1574] = 1555, - [1575] = 1575, + [1572] = 1556, + [1573] = 1573, + [1574] = 1574, + [1575] = 1540, [1576] = 1576, - [1577] = 1561, + [1577] = 1577, [1578] = 1578, - [1579] = 1561, - [1580] = 1553, - [1581] = 1554, + [1579] = 1579, + [1580] = 1580, + [1581] = 1581, [1582] = 1582, - [1583] = 1583, - [1584] = 1534, - [1585] = 1535, + [1583] = 1555, + [1584] = 1556, + [1585] = 1545, [1586] = 1586, - [1587] = 1587, - [1588] = 1538, - [1589] = 1589, - [1590] = 1590, - [1591] = 1591, - [1592] = 1592, - [1593] = 1563, - [1594] = 1559, - [1595] = 1563, - [1596] = 1559, - [1597] = 1597, - [1598] = 1571, - [1599] = 1599, - [1600] = 1600, - [1601] = 1601, - [1602] = 1565, - [1603] = 1538, - [1604] = 1561, - [1605] = 1571, - [1606] = 1606, - [1607] = 1561, + [1587] = 1541, + [1588] = 1588, + [1589] = 1557, + [1590] = 1564, + [1591] = 1540, + [1592] = 1588, + [1593] = 1581, + [1594] = 1547, + [1595] = 1541, + [1596] = 1588, + [1597] = 1562, + [1598] = 1581, + [1599] = 1555, + [1600] = 1569, + [1601] = 1555, + [1602] = 1544, + [1603] = 1586, + [1604] = 1557, + [1605] = 1541, + [1606] = 1588, + [1607] = 1544, [1608] = 1608, - [1609] = 1535, - [1610] = 1534, + [1609] = 1540, + [1610] = 1564, [1611] = 1611, - [1612] = 1555, - [1613] = 1533, - [1614] = 1614, + [1612] = 1547, + [1613] = 1564, + [1614] = 1540, [1615] = 1615, - [1616] = 1559, - [1617] = 1563, + [1616] = 1616, + [1617] = 1617, [1618] = 1618, - [1619] = 1619, - [1620] = 1571, - [1621] = 1565, - [1622] = 1534, + [1619] = 1544, + [1620] = 1620, + [1621] = 1621, + [1622] = 1541, [1623] = 1623, - [1624] = 1535, + [1624] = 1581, [1625] = 1625, [1626] = 1626, [1627] = 1627, - [1628] = 1571, - [1629] = 1555, - [1630] = 1630, - [1631] = 1587, - [1632] = 1555, - [1633] = 1587, + [1628] = 1628, + [1629] = 1629, + [1630] = 1557, + [1631] = 1631, + [1632] = 1581, + [1633] = 1633, [1634] = 1634, [1635] = 1635, [1636] = 1636, [1637] = 1637, - [1638] = 1638, - [1639] = 1639, - [1640] = 1639, - [1641] = 1641, - [1642] = 1642, - [1643] = 1643, - [1644] = 1637, + [1638] = 1581, + [1639] = 1545, + [1640] = 1640, + [1641] = 1588, + [1642] = 1541, + [1643] = 1588, + [1644] = 1555, [1645] = 1645, [1646] = 1646, [1647] = 1647, @@ -4384,111 +4400,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1649] = 1649, [1650] = 1650, [1651] = 1651, - [1652] = 1650, - [1653] = 1653, - [1654] = 1654, + [1652] = 1652, + [1653] = 1645, + [1654] = 1645, [1655] = 1655, - [1656] = 1656, + [1656] = 1648, [1657] = 1657, - [1658] = 1658, - [1659] = 1656, + [1658] = 1649, + [1659] = 1659, [1660] = 1660, [1661] = 1661, - [1662] = 1658, - [1663] = 1650, - [1664] = 1664, - [1665] = 1650, + [1662] = 1662, + [1663] = 1663, + [1664] = 1663, + [1665] = 1665, [1666] = 1666, - [1667] = 1643, - [1668] = 1656, - [1669] = 1643, - [1670] = 1639, - [1671] = 1645, - [1672] = 1637, + [1667] = 1645, + [1668] = 1668, + [1669] = 1669, + [1670] = 1661, + [1671] = 1671, + [1672] = 1663, [1673] = 1673, - [1674] = 1674, - [1675] = 1675, - [1676] = 1658, - [1677] = 1658, - [1678] = 1645, + [1674] = 1648, + [1675] = 1661, + [1676] = 1665, + [1677] = 1662, + [1678] = 1678, [1679] = 1679, [1680] = 1680, - [1681] = 1681, - [1682] = 1658, - [1683] = 1643, - [1684] = 1656, - [1685] = 1685, - [1686] = 1650, + [1681] = 1648, + [1682] = 1662, + [1683] = 1661, + [1684] = 1665, + [1685] = 1663, + [1686] = 1649, [1687] = 1687, - [1688] = 1660, - [1689] = 1646, - [1690] = 1690, - [1691] = 1656, - [1692] = 1692, - [1693] = 1643, - [1694] = 1637, - [1695] = 1637, - [1696] = 1643, - [1697] = 1656, + [1688] = 1649, + [1689] = 1657, + [1690] = 1661, + [1691] = 1648, + [1692] = 1665, + [1693] = 1662, + [1694] = 1662, + [1695] = 1659, + [1696] = 1696, + [1697] = 1697, [1698] = 1645, - [1699] = 1646, - [1700] = 1656, - [1701] = 1637, - [1702] = 1643, - [1703] = 1639, - [1704] = 1642, - [1705] = 1645, - [1706] = 1656, - [1707] = 1639, - [1708] = 1643, - [1709] = 1643, - [1710] = 1642, - [1711] = 1639, - [1712] = 1656, - [1713] = 1713, - [1714] = 1714, + [1699] = 1645, + [1700] = 1700, + [1701] = 1701, + [1702] = 1702, + [1703] = 1673, + [1704] = 1648, + [1705] = 1659, + [1706] = 1662, + [1707] = 1665, + [1708] = 1645, + [1709] = 1648, + [1710] = 1648, + [1711] = 1661, + [1712] = 1663, + [1713] = 1657, + [1714] = 1645, [1715] = 1715, - [1716] = 1716, - [1717] = 1717, + [1716] = 1648, + [1717] = 1649, [1718] = 1718, [1719] = 1719, - [1720] = 1720, - [1721] = 1717, - [1722] = 1719, - [1723] = 1720, + [1720] = 1645, + [1721] = 1721, + [1722] = 1722, + [1723] = 1723, [1724] = 1724, - [1725] = 1717, + [1725] = 1725, [1726] = 1726, - [1727] = 1727, - [1728] = 1719, + [1727] = 1726, + [1728] = 1728, [1729] = 1729, - [1730] = 1730, + [1730] = 1726, [1731] = 1731, - [1732] = 1732, - [1733] = 1720, - [1734] = 1734, + [1732] = 1728, + [1733] = 1729, + [1734] = 1726, [1735] = 1735, - [1736] = 1736, - [1737] = 1737, - [1738] = 1717, + [1736] = 1728, + [1737] = 1729, + [1738] = 1726, [1739] = 1739, - [1740] = 1719, - [1741] = 1720, + [1740] = 1740, + [1741] = 1729, [1742] = 1742, [1743] = 1743, [1744] = 1744, - [1745] = 1745, + [1745] = 1728, [1746] = 1746, - [1747] = 1713, - [1748] = 1717, - [1749] = 1749, + [1747] = 1728, + [1748] = 1748, + [1749] = 1744, [1750] = 1750, - [1751] = 1714, + [1751] = 1751, [1752] = 1752, [1753] = 1753, [1754] = 1754, - [1755] = 1755, - [1756] = 1719, + [1755] = 1722, + [1756] = 1756, [1757] = 1757, [1758] = 1758, [1759] = 1759, @@ -4497,244 +4513,252 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1762] = 1762, [1763] = 1763, [1764] = 1764, - [1765] = 1720, + [1765] = 1765, [1766] = 1766, [1767] = 1767, [1768] = 1768, [1769] = 1769, [1770] = 1770, - [1771] = 1771, + [1771] = 757, [1772] = 1772, - [1773] = 1773, + [1773] = 1723, [1774] = 1774, - [1775] = 1774, - [1776] = 1771, + [1775] = 1775, + [1776] = 1776, [1777] = 1777, - [1778] = 1773, - [1779] = 1779, - [1780] = 1732, - [1781] = 1781, - [1782] = 1731, + [1778] = 1746, + [1779] = 1776, + [1780] = 1780, + [1781] = 1726, + [1782] = 1770, [1783] = 1783, - [1784] = 1730, - [1785] = 1785, + [1784] = 1784, + [1785] = 1780, [1786] = 1786, - [1787] = 1714, - [1788] = 1742, - [1789] = 1789, - [1790] = 1790, - [1791] = 1749, - [1792] = 1746, - [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1734, - [1797] = 1797, - [1798] = 1798, - [1799] = 1736, - [1800] = 1737, - [1801] = 1735, - [1802] = 1781, - [1803] = 1803, - [1804] = 1783, - [1805] = 1715, - [1806] = 1716, + [1787] = 1735, + [1788] = 1760, + [1789] = 756, + [1790] = 1759, + [1791] = 1723, + [1792] = 1758, + [1793] = 1772, + [1794] = 1777, + [1795] = 1722, + [1796] = 1725, + [1797] = 1726, + [1798] = 1767, + [1799] = 1731, + [1800] = 1724, + [1801] = 1801, + [1802] = 1802, + [1803] = 1729, + [1804] = 1804, + [1805] = 1725, + [1806] = 1806, [1807] = 1807, [1808] = 1808, - [1809] = 1743, - [1810] = 1744, + [1809] = 1809, + [1810] = 1742, [1811] = 1811, - [1812] = 1743, - [1813] = 756, - [1814] = 1724, - [1815] = 757, - [1816] = 1745, - [1817] = 1785, - [1818] = 1758, - [1819] = 1742, - [1820] = 1786, - [1821] = 1785, - [1822] = 1755, - [1823] = 1777, - [1824] = 1754, - [1825] = 1719, - [1826] = 1759, - [1827] = 1760, - [1828] = 1828, - [1829] = 1767, - [1830] = 1764, - [1831] = 1744, + [1812] = 1721, + [1813] = 1739, + [1814] = 1740, + [1815] = 1815, + [1816] = 1726, + [1817] = 1735, + [1818] = 1728, + [1819] = 1784, + [1820] = 1820, + [1821] = 1752, + [1822] = 1743, + [1823] = 1783, + [1824] = 1824, + [1825] = 1780, + [1826] = 1784, + [1827] = 1777, + [1828] = 1746, + [1829] = 1754, + [1830] = 1728, + [1831] = 1831, [1832] = 1764, - [1833] = 1833, - [1834] = 1811, - [1835] = 1767, - [1836] = 1720, - [1837] = 1713, - [1838] = 1771, - [1839] = 1839, - [1840] = 1840, - [1841] = 1774, - [1842] = 1762, - [1843] = 1762, - [1844] = 1760, - [1845] = 1773, - [1846] = 1759, - [1847] = 1732, - [1848] = 1720, - [1849] = 1731, - [1850] = 1850, - [1851] = 1730, - [1852] = 1777, - [1853] = 1785, - [1854] = 1717, - [1855] = 1786, - [1856] = 1715, - [1857] = 1716, - [1858] = 1719, - [1859] = 1742, - [1860] = 1755, + [1833] = 1783, + [1834] = 1724, + [1835] = 1744, + [1836] = 1748, + [1837] = 1784, + [1838] = 1838, + [1839] = 1752, + [1840] = 1772, + [1841] = 1724, + [1842] = 1721, + [1843] = 1775, + [1844] = 1748, + [1845] = 1845, + [1846] = 1776, + [1847] = 1742, + [1848] = 1848, + [1849] = 1770, + [1850] = 1783, + [1851] = 1764, + [1852] = 1806, + [1853] = 1786, + [1854] = 1854, + [1855] = 1760, + [1856] = 1856, + [1857] = 1759, + [1858] = 1858, + [1859] = 1758, + [1860] = 1723, [1861] = 1861, - [1862] = 1714, - [1863] = 1724, - [1864] = 1777, - [1865] = 1745, + [1862] = 1729, + [1863] = 1767, + [1864] = 1739, + [1865] = 1740, [1866] = 1866, - [1867] = 1867, - [1868] = 1717, - [1869] = 1717, - [1870] = 1749, - [1871] = 1754, - [1872] = 1746, - [1873] = 1867, - [1874] = 1730, - [1875] = 1713, + [1867] = 1725, + [1868] = 1868, + [1869] = 1722, + [1870] = 1752, + [1871] = 1743, + [1872] = 1786, + [1873] = 1743, + [1874] = 1874, + [1875] = 1770, [1876] = 1876, [1877] = 1877, - [1878] = 1771, - [1879] = 1745, - [1880] = 1731, - [1881] = 1774, - [1882] = 1811, - [1883] = 1883, - [1884] = 1758, - [1885] = 1732, - [1886] = 1886, - [1887] = 1731, - [1888] = 1744, - [1889] = 1730, - [1890] = 1754, - [1891] = 1861, - [1892] = 1714, - [1893] = 1732, - [1894] = 1715, - [1895] = 1716, - [1896] = 1743, - [1897] = 1734, - [1898] = 1898, - [1899] = 1724, - [1900] = 1900, - [1901] = 1736, - [1902] = 1737, - [1903] = 1735, + [1878] = 1878, + [1879] = 1764, + [1880] = 1775, + [1881] = 1756, + [1882] = 1882, + [1883] = 1752, + [1884] = 1722, + [1885] = 1885, + [1886] = 1776, + [1887] = 1887, + [1888] = 1888, + [1889] = 1770, + [1890] = 1757, + [1891] = 1891, + [1892] = 1892, + [1893] = 1760, + [1894] = 1894, + [1895] = 1759, + [1896] = 1731, + [1897] = 1758, + [1898] = 1756, + [1899] = 1757, + [1900] = 1722, + [1901] = 1758, + [1902] = 1739, + [1903] = 1740, [1904] = 1904, - [1905] = 1905, - [1906] = 1783, - [1907] = 1907, - [1908] = 1715, - [1909] = 1774, - [1910] = 1715, - [1911] = 1715, - [1912] = 1715, - [1913] = 1781, - [1914] = 1771, - [1915] = 1771, - [1916] = 1774, - [1917] = 1781, - [1918] = 1755, - [1919] = 1919, - [1920] = 1750, - [1921] = 1840, - [1922] = 1783, + [1905] = 1729, + [1906] = 1759, + [1907] = 1743, + [1908] = 1760, + [1909] = 1731, + [1910] = 1910, + [1911] = 1765, + [1912] = 1912, + [1913] = 1766, + [1914] = 1765, + [1915] = 1768, + [1916] = 1739, + [1917] = 1917, + [1918] = 1739, + [1919] = 1739, + [1920] = 1739, + [1921] = 1769, + [1922] = 1922, [1923] = 1923, - [1924] = 1719, - [1925] = 1735, + [1924] = 1742, + [1925] = 1925, [1926] = 1926, - [1927] = 1737, - [1928] = 1715, - [1929] = 1743, - [1930] = 1736, - [1931] = 1866, - [1932] = 1850, - [1933] = 1744, - [1934] = 1764, - [1935] = 1734, - [1936] = 1767, - [1937] = 1759, - [1938] = 1760, - [1939] = 1773, - [1940] = 1923, - [1941] = 1732, - [1942] = 1811, - [1943] = 1731, - [1944] = 1923, - [1945] = 1730, - [1946] = 1762, - [1947] = 1947, - [1948] = 1746, - [1949] = 1749, - [1950] = 1866, - [1951] = 1745, - [1952] = 1764, - [1953] = 1840, - [1954] = 1767, - [1955] = 1839, - [1956] = 1720, - [1957] = 1773, - [1958] = 1713, - [1959] = 1717, - [1960] = 1714, - [1961] = 1777, - [1962] = 1923, - [1963] = 1963, - [1964] = 1758, + [1927] = 1770, + [1928] = 1752, + [1929] = 1754, + [1930] = 1930, + [1931] = 1831, + [1932] = 1721, + [1933] = 1933, + [1934] = 1758, + [1935] = 1935, + [1936] = 1759, + [1937] = 1748, + [1938] = 1776, + [1939] = 1866, + [1940] = 1760, + [1941] = 1744, + [1942] = 1772, + [1943] = 1769, + [1944] = 1775, + [1945] = 1777, + [1946] = 1765, + [1947] = 1786, + [1948] = 1780, + [1949] = 1766, + [1950] = 1776, + [1951] = 1783, + [1952] = 1831, + [1953] = 1953, + [1954] = 1784, + [1955] = 1735, + [1956] = 1723, + [1957] = 1768, + [1958] = 1866, + [1959] = 1725, + [1960] = 1772, + [1961] = 1769, + [1962] = 1775, + [1963] = 1746, + [1964] = 1807, [1965] = 1786, - [1966] = 1762, - [1967] = 1764, - [1968] = 1968, - [1969] = 1767, - [1970] = 1970, - [1971] = 1724, - [1972] = 1773, - [1973] = 1785, - [1974] = 1786, - [1975] = 1975, - [1976] = 1755, - [1977] = 1923, - [1978] = 1742, - [1979] = 1840, - [1980] = 1975, - [1981] = 1719, - [1982] = 1720, - [1983] = 1866, - [1984] = 1742, - [1985] = 1975, - [1986] = 1850, - [1987] = 1987, - [1988] = 1866, - [1989] = 1759, - [1990] = 1990, - [1991] = 1760, - [1992] = 1866, - [1993] = 1716, - [1994] = 1975, - [1995] = 1975, - [1996] = 1975, + [1966] = 1726, + [1967] = 1767, + [1968] = 1876, + [1969] = 1729, + [1970] = 1831, + [1971] = 1731, + [1972] = 1756, + [1973] = 1757, + [1974] = 1729, + [1975] = 1772, + [1976] = 1761, + [1977] = 1775, + [1978] = 1806, + [1979] = 1742, + [1980] = 1786, + [1981] = 1728, + [1982] = 1982, + [1983] = 1983, + [1984] = 1721, + [1985] = 1831, + [1986] = 1748, + [1987] = 1766, + [1988] = 1904, + [1989] = 1768, + [1990] = 1746, + [1991] = 1866, + [1992] = 1754, + [1993] = 1904, + [1994] = 1724, + [1995] = 1744, + [1996] = 1866, + [1997] = 1740, + [1998] = 1753, + [1999] = 1728, + [2000] = 1866, + [2001] = 1739, + [2002] = 1904, + [2003] = 1904, + [2004] = 1904, }; static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 43642 - ? (c < 4206 - ? (c < 2730 + return (c < 43514 + ? (c < 4193 + ? (c < 2707 ? (c < 1994 ? (c < 910 ? (c < 736 @@ -4813,754 +4837,732 @@ 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 < 2602 - ? (c < 2544 + : (c <= 2482 || (c < 2579 + ? (c < 2527 ? (c < 2510 ? (c < 2493 ? (c >= 2486 && c <= 2489) : c <= 2493) - : (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 <= 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 >= 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 <= 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 < 6576 + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (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 < 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 <= 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 < 11696 ? (c >= 11688 && c <= 11694) : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))))) - : (c <= 11726 || (c < 12337 - ? (c < 12293 + : (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 < 12445 + : (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 >= 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 <= 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 < 42240 ? (c >= 42192 && c <= 42237) : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))))) - : (c <= 42606 || (c < 42891 - ? (c < 42775 + : (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 < 42965 + : (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 < 43360 - ? (c < 43250 - ? (c < 43072 + : (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 < 43274 + : (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 < 43514 - ? (c < 43488 + : (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 < 43588 + : (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 >= 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 <= 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 < 43744 ? (c >= 43739 && c <= 43741) : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))))) - : (c <= 43790 || (c < 43868 - ? (c < 43816 + : (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 < 55216 + : (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 < 64326 - ? (c < 64298 - ? (c < 64275 + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 ? (c < 64256 ? (c >= 64112 && c <= 64217) : c <= 64262) - : (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 <= 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 < 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 <= 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 >= 68288 && c <= 68295) - : 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 <= 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 >= 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 <= 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 < 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 <= 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 >= 72368 && c <= 72440) - : 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 <= 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 <= 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 <= 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 >= 110592 && c <= 110882) - : 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 <= 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 >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : 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))))))))))))))))); + : 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_2(int32_t c) { - return (c < 43642 - ? (c < 4206 - ? (c < 2707 + return (c < 43494 + ? (c < 4186 + ? (c < 2703 ? (c < 1969 ? (c < 908 ? (c < 710 @@ -5639,757 +5641,735 @@ 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 < 2579 - ? (c < 2527 + : (c <= 2480 || (c < 2575 + ? (c < 2524 ? (c < 2493 ? (c < 2486 ? c == 2482 : c <= 2489) - : (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 <= 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 == 3749 - : 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 <= 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 >= 4213 && c <= 4225) - : c <= 4238) - : (c <= 4293 || (c < 4301 + : c <= 4238))) + : (c <= 4293 || (c < 4304 + ? (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 < 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 <= 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 < 8016 ? (c >= 8008 && c <= 8013) : c <= 8023) - : (c <= 8025 || c == 8027)))) - : (c <= 8029 || (c < 8130 - ? (c < 8118 + : (c <= 8025 || c == 8027)) + : (c <= 8029 || (c < 8118 ? (c < 8064 ? (c >= 8031 && c <= 8061) : c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8150 + : (c <= 8124 || c == 8126)))))))))) + : (c <= 8132 || (c < 12321 + ? (c < 8526 + ? (c < 8455 + ? (c < 8182 + ? (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 <= 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 < 8469 ? (c >= 8458 && c <= 8467) : c <= 8469) - : (c <= 8477 || c == 8484)))) - : (c <= 8486 || (c < 8526 - ? (c < 8508 + : (c <= 8477 || c == 8484)) + : (c <= 8486 || (c < 8508 ? (c < 8490 ? c == 8488 : c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))) - : (c <= 8526 || (c < 11499 + : (c <= 8511 || (c >= 8517 && c <= 8521))))))) + : (c <= 8526 || (c < 11648 + ? (c < 11520 + ? (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 <= 11502 || (c >= 11506 && c <= 11507))) + : (c <= 11557 || (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 < 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 <= 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 < 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 < 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 <= 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 < 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 < 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 <= 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 < 64256 ? (c >= 64112 && c <= 64217) : c <= 64262) - : (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 <= 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 < 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 <= 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 >= 68288 && c <= 68295) - : 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 <= 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 >= 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 <= 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 < 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 <= 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 >= 72368 && c <= 72440) - : 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 <= 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 <= 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 <= 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 >= 110592 && c <= 110882) - : 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 <= 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 >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : 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))))))))))))))))); + : 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_3(int32_t c) { - return (c < 43646 - ? (c < 4213 - ? (c < 2738 - ? (c < 2036 + return (c < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 ? (c < 931 ? (c < 748 ? (c < 192 @@ -6416,805 +6396,783 @@ static inline bool sym_identifier_character_set_3(int32_t c) { ? c == 902 : c <= 906) : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1749 - ? (c < 1488 + : (c <= 1013 || (c < 1649 + ? (c < 1376 ? (c < 1329 ? (c < 1162 ? (c >= 1015 && c <= 1153) : c <= 1327) - : (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 <= 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 >= 2990 && c <= 3001) - : 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 <= 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 < 3346 + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 ? (c >= 3342 && c <= 3344) - : 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 <= 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 < 4304 + : c <= 4293))) + : (c <= 4295 || (c < 4348 + ? (c < 4304 ? c == 4301 - : 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 <= 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 < 8025 ? (c >= 8016 && c <= 8023) : c <= 8025) - : (c <= 8027 || c == 8029)))) - : (c <= 8061 || (c < 8134 - ? (c < 8126 + : (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 < 8160 + : (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 >= 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 <= 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 < 8544 - ? (c < 8517 + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 ? (c < 8508 ? (c >= 8490 && c <= 8505) : c <= 8511) - : (c <= 8521 || c == 8526)) - : (c <= 8584 || (c < 11506 + : (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 < 11728 - ? (c < 11688 - ? (c < 11631 + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 ? (c < 11568 ? c == 11565 : c <= 11623) - : (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 <= 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 < 12704 ? (c >= 12593 && c <= 12686) : c <= 12735) - : (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 <= 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 < 43701 ? c == 43697 : c <= 43702) - : (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 <= 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 >= 66504 && c <= 66511) - : 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 <= 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 >= 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 <= 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 < 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 <= 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 == 70855 - : 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 <= 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 < 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 <= 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 < 74880 ? (c >= 74752 && c <= 74862) : c <= 75075) - : (c <= 77808 || (c < 78913 - ? (c >= 77824 && c <= 78895) - : c <= 78918))) - : (c <= 83526 || (c < 92784 + : (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 < 93952 - ? (c < 93053 + : (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 < 94176 + : (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 < 110948 - ? (c < 110589 - ? (c < 110576 + : (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 < 110928 - ? (c < 110898 + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 ? (c >= 110592 && c <= 110882) - : 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 <= 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 >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : 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 <= 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' @@ -7291,1708 +7249,1680 @@ 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 < 2602 - ? (c < 2544 + : (c <= 2482 || (c < 2579 + ? (c < 2527 ? (c < 2510 ? (c < 2493 ? (c >= 2486 && c <= 2489) : c <= 2493) - : (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 <= 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 >= 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 <= 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 < 6576 + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (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 < 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 <= 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 < 11696 ? (c >= 11688 && c <= 11694) : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))))) - : (c <= 11726 || (c < 12337 - ? (c < 12293 + : (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 < 12445 + : (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 >= 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 <= 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 < 42240 ? (c >= 42192 && c <= 42237) : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))))) - : (c <= 42606 || (c < 42891 - ? (c < 42775 + : (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 < 42965 + : (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 < 43360 - ? (c < 43250 - ? (c < 43072 + : (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 < 43274 + : (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 < 43514 - ? (c < 43488 + : (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 < 43588 + : (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 >= 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 <= 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 < 43744 ? (c >= 43739 && c <= 43741) : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))))) - : (c <= 43790 || (c < 43868 - ? (c < 43816 + : (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 < 55216 + : (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 < 64326 - ? (c < 64298 - ? (c < 64275 + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 ? (c < 64256 ? (c >= 64112 && c <= 64217) : c <= 64262) - : (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 <= 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 < 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 <= 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 >= 68288 && c <= 68295) - : 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 <= 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 >= 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 <= 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 < 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 <= 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 >= 72368 && c <= 72440) - : 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 <= 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 <= 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 <= 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 >= 110592 && c <= 110882) - : 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 <= 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 >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 ? (c >= 119997 && c <= 120003) - : 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))))))))))))))))); + : 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_5(int32_t c) { - return (c < 43785 - ? (c < 3804 - ? (c < 2759 - ? (c < 2048 - ? (c < 1155 - ? (c < 736 - ? (c < 183 - ? (c < 'a' + return (c < 43616 + ? (c < 3782 + ? (c < 2748 + ? (c < 2045 + ? (c < 1015 + ? (c < 710 + ? (c < 181 + ? (c < '_' ? (c < 'A' ? (c >= '0' && c <= '9') - : (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 <= '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 == 3840 - : (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 <= 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 < 43739 ? (c >= 43642 && c <= 43714) : c <= 43741) : (c <= 43759 || (c < 43777 ? (c >= 43762 && c <= 43766) - : c <= 43782))))))))))))))) - : (c <= 43790 || (c < 71960 - ? (c < 67840 - ? (c < 65549 - ? (c < 64848 - ? (c < 64112 - ? (c < 44012 - ? (c < 43824 + : c <= 43782))) + : (c <= 43790 || (c < 43816 ? (c < 43808 ? (c >= 43793 && c <= 43798) - : (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 <= 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 >= 71472 && c <= 71481) - : c <= 71494))) - : (c <= 71738 || (c < 71945 - ? (c < 71935 + : c <= 71494) + : (c <= 71738 || (c < 71935 ? (c >= 71840 && c <= 71913) - : c <= 71942) - : (c <= 71945 || (c < 71957 + : c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 ? (c >= 71948 && c <= 71955) - : c <= 71958))))))))))))) - : (c <= 71989 || (c < 119995 - ? (c < 92784 - ? (c < 73023 - ? (c < 72704 - ? (c < 72163 - ? (c < 72096 - ? (c < 71995 + : c <= 71958) + : (c <= 71989 || (c < 71995 ? (c >= 71991 && c <= 71992) - : (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 <= 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 < 73728 ? c == 73648 : c <= 74649) : (c <= 74862 || (c < 77712 ? (c >= 74880 && c <= 75075) - : 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 <= 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 >= 113664 && c <= 113770) - : c <= 113788))) - : (c <= 113800 || (c < 118528 - ? (c < 113821 + : c <= 113788) + : (c <= 113800 || (c < 113821 ? (c >= 113808 && c <= 113817) - : c <= 113822) - : (c <= 118573 || (c < 119141 + : c <= 113822))))) + : (c <= 118573 || (c < 119210 + ? (c < 119149 + ? (c < 119141 ? (c >= 118576 && c <= 118598) - : c <= 119145))))) - : (c <= 119154 || (c < 119894 - ? (c < 119210 - ? (c < 119173 + : c <= 119145) + : (c <= 119154 || (c < 119173 ? (c >= 119163 && c <= 119170) - : c <= 119179) - : (c <= 119213 || (c < 119808 + : c <= 119179))) + : (c <= 119213 || (c < 119894 + ? (c < 119808 ? (c >= 119362 && c <= 119364) - : c <= 119892))) - : (c <= 119964 || (c < 119973 - ? (c < 119970 + : c <= 119892) + : (c <= 119964 || (c < 119970 ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 119970))))))))))) + : (c <= 119974 || (c < 124912 + ? (c < 120746 + ? (c < 120134 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))))))))))) - : (c <= 119995 || (c < 124912 - ? (c < 121403 - ? (c < 120514 - ? (c < 120123 - ? (c < 120077 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : (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 <= 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 >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 + : c <= 122904))))) + : (c <= 122913 || (c < 123214 + ? (c < 123136 + ? (c < 122918 ? (c >= 122915 && c <= 122916) - : 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 <= 122922) + : (c <= 123180 || (c < 123200 + ? (c >= 123184 && c <= 123197) + : c <= 123209))) + : (c <= 123214 || (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123566) + : c <= 123641) : (c <= 124902 || (c < 124909 ? (c >= 124904 && c <= 124907) : c <= 124910))))))))) @@ -9050,15 +8980,13 @@ static inline bool sym_identifier_character_set_5(int32_t c) { ? (c >= 126635 && c <= 126651) : c <= 130041) : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177977) + ? (c >= 173824 && c <= 177976) : c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 ? (c >= 183984 && c <= 191456) : c <= 195101) - : (c <= 201546 || (c < 917760 - ? (c >= 201552 && c <= 205743) - : c <= 917999))))))))))))))))); + : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); } static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -9188,22 +9116,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(90); END_STATE(); case 19: - if (lookahead == '\n') SKIP(41) + if (lookahead == '\n') SKIP(21) END_STATE(); case 20: - if (lookahead == '\n') SKIP(41) + if (lookahead == '\n') SKIP(21) if (lookahead == '\r') SKIP(19) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); END_STATE(); case 21: - if (lookahead == '\n') SKIP(23) - END_STATE(); - case 22: - if (lookahead == '\n') SKIP(23) - if (lookahead == '\r') SKIP(21) - END_STATE(); - case 23: if (lookahead == '\n') ADVANCE(105); if (lookahead == '!') ADVANCE(58); if (lookahead == '%') ADVANCE(185); @@ -9216,12 +9135,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(203); if (lookahead == '=') ADVANCE(59); if (lookahead == '>') ADVANCE(199); - if (lookahead == '\\') SKIP(22) + if (lookahead == '\\') SKIP(20) if (lookahead == '^') ADVANCE(191); if (lookahead == '|') ADVANCE(190); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(23) + lookahead == ' ') SKIP(21) + END_STATE(); + case 22: + if (lookahead == '\n') SKIP(41) + END_STATE(); + case 23: + if (lookahead == '\n') SKIP(41) + if (lookahead == '\r') SKIP(22) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); END_STATE(); case 24: if (lookahead == '\n') SKIP(46) @@ -9511,7 +9439,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(240); if (lookahead == 'L') ADVANCE(285); if (lookahead == 'U') ADVANCE(286); - if (lookahead == '\\') ADVANCE(20); + if (lookahead == '\\') ADVANCE(23); if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); if (lookahead == 'u') ADVANCE(287); if (lookahead == '~') ADVANCE(170); @@ -12648,9 +12576,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [19] = {.lex_state = 40}, [20] = {.lex_state = 40}, [21] = {.lex_state = 40}, - [22] = {.lex_state = 37}, + [22] = {.lex_state = 40}, [23] = {.lex_state = 40}, - [24] = {.lex_state = 40}, + [24] = {.lex_state = 37}, [25] = {.lex_state = 40}, [26] = {.lex_state = 40}, [27] = {.lex_state = 40}, @@ -12660,23 +12588,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 102}, [32] = {.lex_state = 102}, [33] = {.lex_state = 102}, - [34] = {.lex_state = 39}, + [34] = {.lex_state = 102}, [35] = {.lex_state = 102}, [36] = {.lex_state = 102}, [37] = {.lex_state = 102}, [38] = {.lex_state = 102}, [39] = {.lex_state = 102}, - [40] = {.lex_state = 39}, + [40] = {.lex_state = 102}, [41] = {.lex_state = 102}, [42] = {.lex_state = 102}, - [43] = {.lex_state = 39}, + [43] = {.lex_state = 102}, [44] = {.lex_state = 102}, [45] = {.lex_state = 102}, [46] = {.lex_state = 102}, [47] = {.lex_state = 102}, - [48] = {.lex_state = 102}, - [49] = {.lex_state = 102}, - [50] = {.lex_state = 102}, + [48] = {.lex_state = 39}, + [49] = {.lex_state = 39}, + [50] = {.lex_state = 39}, [51] = {.lex_state = 102}, [52] = {.lex_state = 102}, [53] = {.lex_state = 102}, @@ -12690,21 +12618,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [61] = {.lex_state = 40}, [62] = {.lex_state = 40}, [63] = {.lex_state = 40}, - [64] = {.lex_state = 102}, - [65] = {.lex_state = 102}, - [66] = {.lex_state = 102}, - [67] = {.lex_state = 102}, - [68] = {.lex_state = 39}, + [64] = {.lex_state = 39}, + [65] = {.lex_state = 39}, + [66] = {.lex_state = 39}, + [67] = {.lex_state = 39}, + [68] = {.lex_state = 102}, [69] = {.lex_state = 102}, [70] = {.lex_state = 102}, - [71] = {.lex_state = 39}, - [72] = {.lex_state = 102}, - [73] = {.lex_state = 39}, + [71] = {.lex_state = 102}, + [72] = {.lex_state = 39}, + [73] = {.lex_state = 102}, [74] = {.lex_state = 102}, - [75] = {.lex_state = 39}, + [75] = {.lex_state = 102}, [76] = {.lex_state = 102}, [77] = {.lex_state = 102}, - [78] = {.lex_state = 39}, + [78] = {.lex_state = 102}, [79] = {.lex_state = 102}, [80] = {.lex_state = 102}, [81] = {.lex_state = 102}, @@ -12763,13 +12691,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 37}, [135] = {.lex_state = 37}, [136] = {.lex_state = 37}, - [137] = {.lex_state = 40}, + [137] = {.lex_state = 37}, [138] = {.lex_state = 37}, [139] = {.lex_state = 37}, [140] = {.lex_state = 37}, [141] = {.lex_state = 37}, [142] = {.lex_state = 37}, - [143] = {.lex_state = 37}, + [143] = {.lex_state = 40}, [144] = {.lex_state = 37}, [145] = {.lex_state = 37}, [146] = {.lex_state = 37}, @@ -12782,11 +12710,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [153] = {.lex_state = 37}, [154] = {.lex_state = 40}, [155] = {.lex_state = 40}, - [156] = {.lex_state = 40}, + [156] = {.lex_state = 102}, [157] = {.lex_state = 40}, [158] = {.lex_state = 40}, [159] = {.lex_state = 40}, - [160] = {.lex_state = 102}, + [160] = {.lex_state = 40}, [161] = {.lex_state = 40}, [162] = {.lex_state = 40}, [163] = {.lex_state = 40}, @@ -12824,7 +12752,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [195] = {.lex_state = 40}, [196] = {.lex_state = 40}, [197] = {.lex_state = 40}, - [198] = {.lex_state = 40}, + [198] = {.lex_state = 102}, [199] = {.lex_state = 40}, [200] = {.lex_state = 40}, [201] = {.lex_state = 40}, @@ -12834,18 +12762,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [205] = {.lex_state = 40}, [206] = {.lex_state = 40}, [207] = {.lex_state = 40}, - [208] = {.lex_state = 36}, - [209] = {.lex_state = 40}, + [208] = {.lex_state = 40}, + [209] = {.lex_state = 102}, [210] = {.lex_state = 40}, [211] = {.lex_state = 40}, - [212] = {.lex_state = 40}, + [212] = {.lex_state = 36}, [213] = {.lex_state = 40}, [214] = {.lex_state = 40}, [215] = {.lex_state = 40}, - [216] = {.lex_state = 102}, + [216] = {.lex_state = 40}, [217] = {.lex_state = 40}, [218] = {.lex_state = 40}, - [219] = {.lex_state = 102}, + [219] = {.lex_state = 40}, [220] = {.lex_state = 40}, [221] = {.lex_state = 102}, [222] = {.lex_state = 102}, @@ -12854,62 +12782,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [225] = {.lex_state = 39}, [226] = {.lex_state = 39}, [227] = {.lex_state = 39}, - [228] = {.lex_state = 102}, + [228] = {.lex_state = 39}, [229] = {.lex_state = 39}, - [230] = {.lex_state = 39}, - [231] = {.lex_state = 102}, + [230] = {.lex_state = 102}, + [231] = {.lex_state = 39}, [232] = {.lex_state = 102}, [233] = {.lex_state = 39}, - [234] = {.lex_state = 39}, + [234] = {.lex_state = 102}, [235] = {.lex_state = 39}, - [236] = {.lex_state = 102}, + [236] = {.lex_state = 39}, [237] = {.lex_state = 102}, - [238] = {.lex_state = 102}, + [238] = {.lex_state = 39}, [239] = {.lex_state = 102}, [240] = {.lex_state = 102}, [241] = {.lex_state = 102}, [242] = {.lex_state = 102}, - [243] = {.lex_state = 39}, - [244] = {.lex_state = 102}, - [245] = {.lex_state = 39}, - [246] = {.lex_state = 102}, + [243] = {.lex_state = 102}, + [244] = {.lex_state = 39}, + [245] = {.lex_state = 102}, + [246] = {.lex_state = 39}, [247] = {.lex_state = 102}, [248] = {.lex_state = 102}, [249] = {.lex_state = 102}, [250] = {.lex_state = 102}, - [251] = {.lex_state = 39}, + [251] = {.lex_state = 102}, [252] = {.lex_state = 39}, [253] = {.lex_state = 39}, [254] = {.lex_state = 39}, - [255] = {.lex_state = 102}, + [255] = {.lex_state = 39}, [256] = {.lex_state = 102}, [257] = {.lex_state = 102}, [258] = {.lex_state = 102}, [259] = {.lex_state = 39}, [260] = {.lex_state = 39}, - [261] = {.lex_state = 102}, - [262] = {.lex_state = 102}, + [261] = {.lex_state = 39}, + [262] = {.lex_state = 39}, [263] = {.lex_state = 102}, [264] = {.lex_state = 102}, - [265] = {.lex_state = 39}, + [265] = {.lex_state = 102}, [266] = {.lex_state = 39}, [267] = {.lex_state = 102}, [268] = {.lex_state = 39}, [269] = {.lex_state = 102}, - [270] = {.lex_state = 102}, + [270] = {.lex_state = 39}, [271] = {.lex_state = 102}, - [272] = {.lex_state = 102}, - [273] = {.lex_state = 102}, + [272] = {.lex_state = 39}, + [273] = {.lex_state = 39}, [274] = {.lex_state = 39}, - [275] = {.lex_state = 102}, - [276] = {.lex_state = 102}, - [277] = {.lex_state = 39}, + [275] = {.lex_state = 39}, + [276] = {.lex_state = 39}, + [277] = {.lex_state = 102}, [278] = {.lex_state = 39}, [279] = {.lex_state = 39}, [280] = {.lex_state = 39}, [281] = {.lex_state = 39}, - [282] = {.lex_state = 102}, - [283] = {.lex_state = 39}, + [282] = {.lex_state = 39}, + [283] = {.lex_state = 102}, [284] = {.lex_state = 102}, [285] = {.lex_state = 102}, [286] = {.lex_state = 102}, @@ -12917,26 +12845,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [288] = {.lex_state = 102}, [289] = {.lex_state = 102}, [290] = {.lex_state = 39}, - [291] = {.lex_state = 39}, + [291] = {.lex_state = 102}, [292] = {.lex_state = 39}, [293] = {.lex_state = 102}, [294] = {.lex_state = 102}, - [295] = {.lex_state = 39}, + [295] = {.lex_state = 102}, [296] = {.lex_state = 102}, - [297] = {.lex_state = 102}, + [297] = {.lex_state = 39}, [298] = {.lex_state = 39}, - [299] = {.lex_state = 39}, - [300] = {.lex_state = 39}, + [299] = {.lex_state = 102}, + [300] = {.lex_state = 102}, [301] = {.lex_state = 102}, [302] = {.lex_state = 102}, [303] = {.lex_state = 102}, [304] = {.lex_state = 102}, - [305] = {.lex_state = 39}, - [306] = {.lex_state = 39}, + [305] = {.lex_state = 102}, + [306] = {.lex_state = 102}, [307] = {.lex_state = 102}, [308] = {.lex_state = 102}, - [309] = {.lex_state = 39}, - [310] = {.lex_state = 39}, + [309] = {.lex_state = 102}, + [310] = {.lex_state = 102}, [311] = {.lex_state = 102}, [312] = {.lex_state = 102}, [313] = {.lex_state = 102}, @@ -12976,7 +12904,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [347] = {.lex_state = 102}, [348] = {.lex_state = 102}, [349] = {.lex_state = 102}, - [350] = {.lex_state = 39}, + [350] = {.lex_state = 102}, [351] = {.lex_state = 102}, [352] = {.lex_state = 102}, [353] = {.lex_state = 102}, @@ -13028,7 +12956,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [399] = {.lex_state = 102}, [400] = {.lex_state = 102}, [401] = {.lex_state = 102}, - [402] = {.lex_state = 102}, + [402] = {.lex_state = 39}, [403] = {.lex_state = 102}, [404] = {.lex_state = 102}, [405] = {.lex_state = 102}, @@ -13079,47 +13007,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [450] = {.lex_state = 102}, [451] = {.lex_state = 102}, [452] = {.lex_state = 102}, - [453] = {.lex_state = 102}, + [453] = {.lex_state = 39}, [454] = {.lex_state = 39}, - [455] = {.lex_state = 102}, + [455] = {.lex_state = 39}, [456] = {.lex_state = 39}, - [457] = {.lex_state = 102}, - [458] = {.lex_state = 102}, + [457] = {.lex_state = 39}, + [458] = {.lex_state = 39}, [459] = {.lex_state = 39}, - [460] = {.lex_state = 102}, - [461] = {.lex_state = 102}, + [460] = {.lex_state = 39}, + [461] = {.lex_state = 39}, [462] = {.lex_state = 39}, [463] = {.lex_state = 39}, [464] = {.lex_state = 39}, - [465] = {.lex_state = 102}, + [465] = {.lex_state = 39}, [466] = {.lex_state = 102}, - [467] = {.lex_state = 102}, - [468] = {.lex_state = 102}, + [467] = {.lex_state = 39}, + [468] = {.lex_state = 39}, [469] = {.lex_state = 39}, [470] = {.lex_state = 39}, - [471] = {.lex_state = 102}, + [471] = {.lex_state = 39}, [472] = {.lex_state = 39}, - [473] = {.lex_state = 102}, + [473] = {.lex_state = 39}, [474] = {.lex_state = 39}, - [475] = {.lex_state = 39}, - [476] = {.lex_state = 39}, + [475] = {.lex_state = 102}, + [476] = {.lex_state = 102}, [477] = {.lex_state = 102}, - [478] = {.lex_state = 39}, - [479] = {.lex_state = 39}, + [478] = {.lex_state = 102}, + [479] = {.lex_state = 102}, [480] = {.lex_state = 102}, - [481] = {.lex_state = 39}, + [481] = {.lex_state = 102}, [482] = {.lex_state = 102}, [483] = {.lex_state = 102}, [484] = {.lex_state = 102}, [485] = {.lex_state = 102}, [486] = {.lex_state = 102}, [487] = {.lex_state = 102}, - [488] = {.lex_state = 39}, - [489] = {.lex_state = 39}, - [490] = {.lex_state = 39}, - [491] = {.lex_state = 39}, - [492] = {.lex_state = 39}, - [493] = {.lex_state = 39}, + [488] = {.lex_state = 102}, + [489] = {.lex_state = 102}, + [490] = {.lex_state = 102}, + [491] = {.lex_state = 102}, + [492] = {.lex_state = 102}, + [493] = {.lex_state = 102}, [494] = {.lex_state = 102}, [495] = {.lex_state = 102}, [496] = {.lex_state = 102}, @@ -13174,14 +13102,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [545] = {.lex_state = 44}, [546] = {.lex_state = 44}, [547] = {.lex_state = 44}, - [548] = {.lex_state = 44}, - [549] = {.lex_state = 102}, + [548] = {.lex_state = 102}, + [549] = {.lex_state = 44}, [550] = {.lex_state = 102}, [551] = {.lex_state = 102}, [552] = {.lex_state = 102}, [553] = {.lex_state = 45}, - [554] = {.lex_state = 44}, - [555] = {.lex_state = 45}, + [554] = {.lex_state = 45}, + [555] = {.lex_state = 44}, [556] = {.lex_state = 45}, [557] = {.lex_state = 45}, [558] = {.lex_state = 45}, @@ -13203,13 +13131,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [574] = {.lex_state = 45}, [575] = {.lex_state = 45}, [576] = {.lex_state = 45}, - [577] = {.lex_state = 43}, - [578] = {.lex_state = 48}, + [577] = {.lex_state = 102}, + [578] = {.lex_state = 43}, [579] = {.lex_state = 48}, - [580] = {.lex_state = 48}, - [581] = {.lex_state = 43}, + [580] = {.lex_state = 43}, + [581] = {.lex_state = 48}, [582] = {.lex_state = 43}, - [583] = {.lex_state = 102}, + [583] = {.lex_state = 48}, [584] = {.lex_state = 102}, [585] = {.lex_state = 102}, [586] = {.lex_state = 102}, @@ -13246,7 +13174,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [617] = {.lex_state = 102}, [618] = {.lex_state = 102}, [619] = {.lex_state = 102}, - [620] = {.lex_state = 44}, + [620] = {.lex_state = 102}, [621] = {.lex_state = 102}, [622] = {.lex_state = 102}, [623] = {.lex_state = 102}, @@ -13254,7 +13182,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [625] = {.lex_state = 102}, [626] = {.lex_state = 102}, [627] = {.lex_state = 102}, - [628] = {.lex_state = 102}, + [628] = {.lex_state = 44}, [629] = {.lex_state = 102}, [630] = {.lex_state = 102}, [631] = {.lex_state = 102}, @@ -13298,13 +13226,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 102}, [670] = {.lex_state = 102}, [671] = {.lex_state = 102}, - [672] = {.lex_state = 44}, + [672] = {.lex_state = 102}, [673] = {.lex_state = 102}, [674] = {.lex_state = 102}, [675] = {.lex_state = 102}, [676] = {.lex_state = 102}, [677] = {.lex_state = 102}, - [678] = {.lex_state = 102}, + [678] = {.lex_state = 44}, [679] = {.lex_state = 102}, [680] = {.lex_state = 102}, [681] = {.lex_state = 102}, @@ -13323,12 +13251,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [694] = {.lex_state = 102}, [695] = {.lex_state = 102}, [696] = {.lex_state = 102}, - [697] = {.lex_state = 44}, + [697] = {.lex_state = 102}, [698] = {.lex_state = 102}, [699] = {.lex_state = 102}, [700] = {.lex_state = 102}, [701] = {.lex_state = 102}, - [702] = {.lex_state = 102}, + [702] = {.lex_state = 44}, [703] = {.lex_state = 102}, [704] = {.lex_state = 102}, [705] = {.lex_state = 102}, @@ -13337,10 +13265,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [708] = {.lex_state = 102}, [709] = {.lex_state = 102}, [710] = {.lex_state = 102}, - [711] = {.lex_state = 44}, + [711] = {.lex_state = 102}, [712] = {.lex_state = 102}, [713] = {.lex_state = 102}, - [714] = {.lex_state = 102}, + [714] = {.lex_state = 44}, [715] = {.lex_state = 102}, [716] = {.lex_state = 102}, [717] = {.lex_state = 102}, @@ -13355,13 +13283,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [726] = {.lex_state = 102}, [727] = {.lex_state = 102}, [728] = {.lex_state = 102}, - [729] = {.lex_state = 44}, - [730] = {.lex_state = 102}, + [729] = {.lex_state = 102}, + [730] = {.lex_state = 44}, [731] = {.lex_state = 102}, [732] = {.lex_state = 102}, [733] = {.lex_state = 102}, [734] = {.lex_state = 102}, - [735] = {.lex_state = 44}, + [735] = {.lex_state = 102}, [736] = {.lex_state = 102}, [737] = {.lex_state = 102}, [738] = {.lex_state = 102}, @@ -13378,7 +13306,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [749] = {.lex_state = 102}, [750] = {.lex_state = 102}, [751] = {.lex_state = 102}, - [752] = {.lex_state = 102}, + [752] = {.lex_state = 44}, [753] = {.lex_state = 42}, [754] = {.lex_state = 42}, [755] = {.lex_state = 42}, @@ -13386,11 +13314,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [757] = {.lex_state = 42}, [758] = {.lex_state = 45}, [759] = {.lex_state = 44}, - [760] = {.lex_state = 45}, - [761] = {.lex_state = 102}, - [762] = {.lex_state = 102}, + [760] = {.lex_state = 102}, + [761] = {.lex_state = 45}, + [762] = {.lex_state = 44}, [763] = {.lex_state = 102}, - [764] = {.lex_state = 44}, + [764] = {.lex_state = 102}, [765] = {.lex_state = 45}, [766] = {.lex_state = 45}, [767] = {.lex_state = 45}, @@ -13403,7 +13331,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [774] = {.lex_state = 45}, [775] = {.lex_state = 45}, [776] = {.lex_state = 45}, - [777] = {.lex_state = 45}, + [777] = {.lex_state = 43}, [778] = {.lex_state = 45}, [779] = {.lex_state = 45}, [780] = {.lex_state = 45}, @@ -13411,12 +13339,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [782] = {.lex_state = 45}, [783] = {.lex_state = 45}, [784] = {.lex_state = 45}, - [785] = {.lex_state = 43}, - [786] = {.lex_state = 45}, + [785] = {.lex_state = 45}, + [786] = {.lex_state = 43}, [787] = {.lex_state = 45}, [788] = {.lex_state = 45}, [789] = {.lex_state = 45}, - [790] = {.lex_state = 43}, + [790] = {.lex_state = 45}, [791] = {.lex_state = 45}, [792] = {.lex_state = 45}, [793] = {.lex_state = 45}, @@ -13424,7 +13352,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [795] = {.lex_state = 45}, [796] = {.lex_state = 45}, [797] = {.lex_state = 45}, - [798] = {.lex_state = 43}, + [798] = {.lex_state = 45}, [799] = {.lex_state = 45}, [800] = {.lex_state = 45}, [801] = {.lex_state = 45}, @@ -13432,15 +13360,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [803] = {.lex_state = 45}, [804] = {.lex_state = 45}, [805] = {.lex_state = 45}, - [806] = {.lex_state = 45}, + [806] = {.lex_state = 43}, [807] = {.lex_state = 45}, [808] = {.lex_state = 45}, [809] = {.lex_state = 45}, [810] = {.lex_state = 45}, [811] = {.lex_state = 45}, - [812] = {.lex_state = 102}, + [812] = {.lex_state = 44}, [813] = {.lex_state = 44}, - [814] = {.lex_state = 44}, + [814] = {.lex_state = 102}, [815] = {.lex_state = 44}, [816] = {.lex_state = 44}, [817] = {.lex_state = 44}, @@ -13450,8 +13378,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [821] = {.lex_state = 45}, [822] = {.lex_state = 45}, [823] = {.lex_state = 45}, - [824] = {.lex_state = 45}, - [825] = {.lex_state = 102}, + [824] = {.lex_state = 102}, + [825] = {.lex_state = 45}, [826] = {.lex_state = 45}, [827] = {.lex_state = 45}, [828] = {.lex_state = 45}, @@ -13460,10 +13388,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [831] = {.lex_state = 45}, [832] = {.lex_state = 45}, [833] = {.lex_state = 45}, - [834] = {.lex_state = 44}, + [834] = {.lex_state = 45}, [835] = {.lex_state = 45}, [836] = {.lex_state = 45}, - [837] = {.lex_state = 45}, + [837] = {.lex_state = 44}, [838] = {.lex_state = 45}, [839] = {.lex_state = 45}, [840] = {.lex_state = 45}, @@ -13502,7 +13430,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [873] = {.lex_state = 44}, [874] = {.lex_state = 44}, [875] = {.lex_state = 44}, - [876] = {.lex_state = 45}, + [876] = {.lex_state = 44}, [877] = {.lex_state = 45}, [878] = {.lex_state = 45}, [879] = {.lex_state = 45}, @@ -13510,128 +13438,128 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [881] = {.lex_state = 45}, [882] = {.lex_state = 45}, [883] = {.lex_state = 45}, - [884] = {.lex_state = 44}, + [884] = {.lex_state = 45}, [885] = {.lex_state = 45}, [886] = {.lex_state = 45}, [887] = {.lex_state = 45}, - [888] = {.lex_state = 44}, + [888] = {.lex_state = 45}, [889] = {.lex_state = 45}, - [890] = {.lex_state = 44}, + [890] = {.lex_state = 45}, [891] = {.lex_state = 44}, - [892] = {.lex_state = 45}, + [892] = {.lex_state = 44}, [893] = {.lex_state = 45}, - [894] = {.lex_state = 45}, - [895] = {.lex_state = 44}, + [894] = {.lex_state = 44}, + [895] = {.lex_state = 45}, [896] = {.lex_state = 45}, - [897] = {.lex_state = 44}, + [897] = {.lex_state = 45}, [898] = {.lex_state = 45}, [899] = {.lex_state = 45}, [900] = {.lex_state = 45}, [901] = {.lex_state = 45}, [902] = {.lex_state = 45}, - [903] = {.lex_state = 45}, + [903] = {.lex_state = 44}, [904] = {.lex_state = 44}, [905] = {.lex_state = 44}, [906] = {.lex_state = 45}, - [907] = {.lex_state = 45}, + [907] = {.lex_state = 44}, [908] = {.lex_state = 44}, [909] = {.lex_state = 44}, [910] = {.lex_state = 44}, [911] = {.lex_state = 44}, [912] = {.lex_state = 44}, [913] = {.lex_state = 44}, - [914] = {.lex_state = 43}, - [915] = {.lex_state = 43}, - [916] = {.lex_state = 48}, - [917] = {.lex_state = 48}, - [918] = {.lex_state = 48}, - [919] = {.lex_state = 43}, - [920] = {.lex_state = 48}, - [921] = {.lex_state = 45}, - [922] = {.lex_state = 44}, - [923] = {.lex_state = 45}, - [924] = {.lex_state = 42}, - [925] = {.lex_state = 43}, - [926] = {.lex_state = 45}, - [927] = {.lex_state = 43}, + [914] = {.lex_state = 44}, + [915] = {.lex_state = 45}, + [916] = {.lex_state = 45}, + [917] = {.lex_state = 44}, + [918] = {.lex_state = 44}, + [919] = {.lex_state = 44}, + [920] = {.lex_state = 45}, + [921] = {.lex_state = 42}, + [922] = {.lex_state = 43}, + [923] = {.lex_state = 44}, + [924] = {.lex_state = 44}, + [925] = {.lex_state = 48}, + [926] = {.lex_state = 44}, + [927] = {.lex_state = 48}, [928] = {.lex_state = 43}, [929] = {.lex_state = 48}, - [930] = {.lex_state = 48}, - [931] = {.lex_state = 43}, - [932] = {.lex_state = 43}, + [930] = {.lex_state = 44}, + [931] = {.lex_state = 44}, + [932] = {.lex_state = 48}, [933] = {.lex_state = 48}, - [934] = {.lex_state = 43}, - [935] = {.lex_state = 42}, + [934] = {.lex_state = 45}, + [935] = {.lex_state = 48}, [936] = {.lex_state = 43}, [937] = {.lex_state = 43}, - [938] = {.lex_state = 45}, - [939] = {.lex_state = 48}, - [940] = {.lex_state = 48}, - [941] = {.lex_state = 44}, - [942] = {.lex_state = 43}, - [943] = {.lex_state = 43}, + [938] = {.lex_state = 43}, + [939] = {.lex_state = 42}, + [940] = {.lex_state = 43}, + [941] = {.lex_state = 45}, + [942] = {.lex_state = 48}, + [943] = {.lex_state = 48}, [944] = {.lex_state = 43}, - [945] = {.lex_state = 48}, - [946] = {.lex_state = 43}, + [945] = {.lex_state = 45}, + [946] = {.lex_state = 42}, [947] = {.lex_state = 48}, - [948] = {.lex_state = 42}, - [949] = {.lex_state = 45}, - [950] = {.lex_state = 43}, - [951] = {.lex_state = 43}, - [952] = {.lex_state = 44}, - [953] = {.lex_state = 44}, + [948] = {.lex_state = 48}, + [949] = {.lex_state = 48}, + [950] = {.lex_state = 48}, + [951] = {.lex_state = 48}, + [952] = {.lex_state = 42}, + [953] = {.lex_state = 48}, [954] = {.lex_state = 43}, [955] = {.lex_state = 48}, - [956] = {.lex_state = 44}, - [957] = {.lex_state = 45}, - [958] = {.lex_state = 43}, - [959] = {.lex_state = 42}, - [960] = {.lex_state = 45}, - [961] = {.lex_state = 48}, + [956] = {.lex_state = 48}, + [957] = {.lex_state = 48}, + [958] = {.lex_state = 48}, + [959] = {.lex_state = 48}, + [960] = {.lex_state = 48}, + [961] = {.lex_state = 43}, [962] = {.lex_state = 45}, - [963] = {.lex_state = 45}, - [964] = {.lex_state = 45}, - [965] = {.lex_state = 48}, + [963] = {.lex_state = 44}, + [964] = {.lex_state = 43}, + [965] = {.lex_state = 43}, [966] = {.lex_state = 48}, [967] = {.lex_state = 48}, - [968] = {.lex_state = 48}, - [969] = {.lex_state = 45}, - [970] = {.lex_state = 43}, - [971] = {.lex_state = 43}, - [972] = {.lex_state = 44}, - [973] = {.lex_state = 42}, + [968] = {.lex_state = 43}, + [969] = {.lex_state = 44}, + [970] = {.lex_state = 48}, + [971] = {.lex_state = 45}, + [972] = {.lex_state = 43}, + [973] = {.lex_state = 43}, [974] = {.lex_state = 44}, - [975] = {.lex_state = 48}, - [976] = {.lex_state = 48}, - [977] = {.lex_state = 44}, + [975] = {.lex_state = 43}, + [976] = {.lex_state = 45}, + [977] = {.lex_state = 43}, [978] = {.lex_state = 45}, - [979] = {.lex_state = 45}, - [980] = {.lex_state = 43}, - [981] = {.lex_state = 44}, - [982] = {.lex_state = 44}, - [983] = {.lex_state = 48}, - [984] = {.lex_state = 48}, - [985] = {.lex_state = 48}, - [986] = {.lex_state = 48}, + [979] = {.lex_state = 44}, + [980] = {.lex_state = 48}, + [981] = {.lex_state = 45}, + [982] = {.lex_state = 43}, + [983] = {.lex_state = 45}, + [984] = {.lex_state = 43}, + [985] = {.lex_state = 43}, + [986] = {.lex_state = 43}, [987] = {.lex_state = 43}, - [988] = {.lex_state = 44}, + [988] = {.lex_state = 45}, [989] = {.lex_state = 43}, [990] = {.lex_state = 44}, - [991] = {.lex_state = 44}, - [992] = {.lex_state = 48}, + [991] = {.lex_state = 43}, + [992] = {.lex_state = 43}, [993] = {.lex_state = 44}, [994] = {.lex_state = 44}, - [995] = {.lex_state = 102}, + [995] = {.lex_state = 42}, [996] = {.lex_state = 44}, [997] = {.lex_state = 44}, [998] = {.lex_state = 44}, [999] = {.lex_state = 44}, [1000] = {.lex_state = 44}, - [1001] = {.lex_state = 44}, + [1001] = {.lex_state = 102}, [1002] = {.lex_state = 44}, [1003] = {.lex_state = 44}, [1004] = {.lex_state = 102}, - [1005] = {.lex_state = 44}, + [1005] = {.lex_state = 102}, [1006] = {.lex_state = 44}, [1007] = {.lex_state = 44}, [1008] = {.lex_state = 44}, @@ -13641,13 +13569,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1012] = {.lex_state = 44}, [1013] = {.lex_state = 44}, [1014] = {.lex_state = 44}, - [1015] = {.lex_state = 102}, + [1015] = {.lex_state = 44}, [1016] = {.lex_state = 44}, - [1017] = {.lex_state = 44}, + [1017] = {.lex_state = 102}, [1018] = {.lex_state = 44}, [1019] = {.lex_state = 44}, [1020] = {.lex_state = 44}, - [1021] = {.lex_state = 102}, + [1021] = {.lex_state = 44}, [1022] = {.lex_state = 44}, [1023] = {.lex_state = 44}, [1024] = {.lex_state = 44}, @@ -13657,27 +13585,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1028] = {.lex_state = 44}, [1029] = {.lex_state = 44}, [1030] = {.lex_state = 44}, - [1031] = {.lex_state = 45}, + [1031] = {.lex_state = 44}, [1032] = {.lex_state = 44}, - [1033] = {.lex_state = 44}, + [1033] = {.lex_state = 45}, [1034] = {.lex_state = 45}, - [1035] = {.lex_state = 45}, - [1036] = {.lex_state = 45}, + [1035] = {.lex_state = 44}, + [1036] = {.lex_state = 44}, [1037] = {.lex_state = 44}, [1038] = {.lex_state = 44}, [1039] = {.lex_state = 44}, - [1040] = {.lex_state = 44}, - [1041] = {.lex_state = 45}, + [1040] = {.lex_state = 45}, + [1041] = {.lex_state = 44}, [1042] = {.lex_state = 44}, [1043] = {.lex_state = 44}, [1044] = {.lex_state = 44}, [1045] = {.lex_state = 44}, [1046] = {.lex_state = 45}, - [1047] = {.lex_state = 45}, - [1048] = {.lex_state = 45}, - [1049] = {.lex_state = 45}, + [1047] = {.lex_state = 44}, + [1048] = {.lex_state = 44}, + [1049] = {.lex_state = 44}, [1050] = {.lex_state = 45}, - [1051] = {.lex_state = 45}, + [1051] = {.lex_state = 44}, [1052] = {.lex_state = 45}, [1053] = {.lex_state = 45}, [1054] = {.lex_state = 45}, @@ -13689,7 +13617,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1060] = {.lex_state = 45}, [1061] = {.lex_state = 45}, [1062] = {.lex_state = 45}, - [1063] = {.lex_state = 44}, + [1063] = {.lex_state = 45}, [1064] = {.lex_state = 45}, [1065] = {.lex_state = 45}, [1066] = {.lex_state = 45}, @@ -13725,7 +13653,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1096] = {.lex_state = 45}, [1097] = {.lex_state = 45}, [1098] = {.lex_state = 45}, - [1099] = {.lex_state = 45}, + [1099] = {.lex_state = 44}, [1100] = {.lex_state = 45}, [1101] = {.lex_state = 45}, [1102] = {.lex_state = 45}, @@ -13752,20 +13680,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1123] = {.lex_state = 45}, [1124] = {.lex_state = 45}, [1125] = {.lex_state = 45}, - [1126] = {.lex_state = 44}, + [1126] = {.lex_state = 45}, [1127] = {.lex_state = 45}, [1128] = {.lex_state = 45}, [1129] = {.lex_state = 45}, [1130] = {.lex_state = 45}, - [1131] = {.lex_state = 44}, + [1131] = {.lex_state = 45}, [1132] = {.lex_state = 45}, [1133] = {.lex_state = 45}, [1134] = {.lex_state = 45}, - [1135] = {.lex_state = 45}, - [1136] = {.lex_state = 45}, + [1135] = {.lex_state = 44}, + [1136] = {.lex_state = 44}, [1137] = {.lex_state = 45}, [1138] = {.lex_state = 45}, - [1139] = {.lex_state = 44}, + [1139] = {.lex_state = 45}, [1140] = {.lex_state = 45}, [1141] = {.lex_state = 45}, [1142] = {.lex_state = 45}, @@ -13774,11 +13702,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1145] = {.lex_state = 45}, [1146] = {.lex_state = 45}, [1147] = {.lex_state = 45}, - [1148] = {.lex_state = 44}, + [1148] = {.lex_state = 45}, [1149] = {.lex_state = 45}, [1150] = {.lex_state = 45}, [1151] = {.lex_state = 45}, - [1152] = {.lex_state = 45}, + [1152] = {.lex_state = 44}, [1153] = {.lex_state = 45}, [1154] = {.lex_state = 45}, [1155] = {.lex_state = 45}, @@ -13786,7 +13714,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1157] = {.lex_state = 45}, [1158] = {.lex_state = 45}, [1159] = {.lex_state = 45}, - [1160] = {.lex_state = 45}, + [1160] = {.lex_state = 44}, [1161] = {.lex_state = 45}, [1162] = {.lex_state = 45}, [1163] = {.lex_state = 45}, @@ -13794,16 +13722,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1165] = {.lex_state = 45}, [1166] = {.lex_state = 45}, [1167] = {.lex_state = 45}, - [1168] = {.lex_state = 44}, - [1169] = {.lex_state = 44}, - [1170] = {.lex_state = 44}, - [1171] = {.lex_state = 44}, - [1172] = {.lex_state = 44}, - [1173] = {.lex_state = 44}, + [1168] = {.lex_state = 45}, + [1169] = {.lex_state = 45}, + [1170] = {.lex_state = 45}, + [1171] = {.lex_state = 45}, + [1172] = {.lex_state = 45}, + [1173] = {.lex_state = 45}, [1174] = {.lex_state = 44}, [1175] = {.lex_state = 44}, [1176] = {.lex_state = 44}, - [1177] = {.lex_state = 45}, + [1177] = {.lex_state = 44}, [1178] = {.lex_state = 44}, [1179] = {.lex_state = 44}, [1180] = {.lex_state = 44}, @@ -13817,12 +13745,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1188] = {.lex_state = 44}, [1189] = {.lex_state = 44}, [1190] = {.lex_state = 44}, - [1191] = {.lex_state = 44}, + [1191] = {.lex_state = 45}, [1192] = {.lex_state = 44}, [1193] = {.lex_state = 44}, [1194] = {.lex_state = 44}, [1195] = {.lex_state = 44}, - [1196] = {.lex_state = 44}, + [1196] = {.lex_state = 45}, [1197] = {.lex_state = 44}, [1198] = {.lex_state = 44}, [1199] = {.lex_state = 44}, @@ -13833,7 +13761,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1204] = {.lex_state = 44}, [1205] = {.lex_state = 44}, [1206] = {.lex_state = 44}, - [1207] = {.lex_state = 45}, + [1207] = {.lex_state = 44}, [1208] = {.lex_state = 44}, [1209] = {.lex_state = 44}, [1210] = {.lex_state = 44}, @@ -13852,23 +13780,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1223] = {.lex_state = 44}, [1224] = {.lex_state = 44}, [1225] = {.lex_state = 44}, - [1226] = {.lex_state = 41}, + [1226] = {.lex_state = 44}, [1227] = {.lex_state = 44}, [1228] = {.lex_state = 44}, - [1229] = {.lex_state = 23}, - [1230] = {.lex_state = 41}, + [1229] = {.lex_state = 44}, + [1230] = {.lex_state = 44}, [1231] = {.lex_state = 44}, [1232] = {.lex_state = 44}, [1233] = {.lex_state = 44}, [1234] = {.lex_state = 44}, [1235] = {.lex_state = 44}, [1236] = {.lex_state = 44}, - [1237] = {.lex_state = 44}, + [1237] = {.lex_state = 21}, [1238] = {.lex_state = 41}, - [1239] = {.lex_state = 41}, - [1240] = {.lex_state = 41}, - [1241] = {.lex_state = 41}, - [1242] = {.lex_state = 41}, + [1239] = {.lex_state = 44}, + [1240] = {.lex_state = 44}, + [1241] = {.lex_state = 44}, + [1242] = {.lex_state = 44}, [1243] = {.lex_state = 41}, [1244] = {.lex_state = 41}, [1245] = {.lex_state = 44}, @@ -13879,86 +13807,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1250] = {.lex_state = 41}, [1251] = {.lex_state = 41}, [1252] = {.lex_state = 41}, - [1253] = {.lex_state = 41}, + [1253] = {.lex_state = 44}, [1254] = {.lex_state = 41}, [1255] = {.lex_state = 41}, - [1256] = {.lex_state = 41}, + [1256] = {.lex_state = 44}, [1257] = {.lex_state = 44}, - [1258] = {.lex_state = 44}, - [1259] = {.lex_state = 44}, - [1260] = {.lex_state = 44}, + [1258] = {.lex_state = 41}, + [1259] = {.lex_state = 41}, + [1260] = {.lex_state = 41}, [1261] = {.lex_state = 44}, - [1262] = {.lex_state = 44}, - [1263] = {.lex_state = 44}, + [1262] = {.lex_state = 41}, + [1263] = {.lex_state = 41}, [1264] = {.lex_state = 44}, [1265] = {.lex_state = 41}, - [1266] = {.lex_state = 41}, + [1266] = {.lex_state = 44}, [1267] = {.lex_state = 41}, - [1268] = {.lex_state = 44}, - [1269] = {.lex_state = 44}, + [1268] = {.lex_state = 41}, + [1269] = {.lex_state = 41}, [1270] = {.lex_state = 44}, [1271] = {.lex_state = 44}, - [1272] = {.lex_state = 44}, - [1273] = {.lex_state = 41}, - [1274] = {.lex_state = 41}, + [1272] = {.lex_state = 41}, + [1273] = {.lex_state = 44}, + [1274] = {.lex_state = 44}, [1275] = {.lex_state = 41}, [1276] = {.lex_state = 41}, [1277] = {.lex_state = 41}, [1278] = {.lex_state = 44}, - [1279] = {.lex_state = 44}, - [1280] = {.lex_state = 44}, + [1279] = {.lex_state = 41}, + [1280] = {.lex_state = 41}, [1281] = {.lex_state = 41}, [1282] = {.lex_state = 41}, - [1283] = {.lex_state = 41}, + [1283] = {.lex_state = 44}, [1284] = {.lex_state = 41}, - [1285] = {.lex_state = 44}, + [1285] = {.lex_state = 41}, [1286] = {.lex_state = 41}, - [1287] = {.lex_state = 41}, - [1288] = {.lex_state = 41}, - [1289] = {.lex_state = 41}, - [1290] = {.lex_state = 41}, + [1287] = {.lex_state = 44}, + [1288] = {.lex_state = 44}, + [1289] = {.lex_state = 44}, + [1290] = {.lex_state = 44}, [1291] = {.lex_state = 44}, - [1292] = {.lex_state = 44}, - [1293] = {.lex_state = 41}, - [1294] = {.lex_state = 44}, - [1295] = {.lex_state = 23}, - [1296] = {.lex_state = 23}, - [1297] = {.lex_state = 23}, - [1298] = {.lex_state = 23}, - [1299] = {.lex_state = 23}, - [1300] = {.lex_state = 23}, - [1301] = {.lex_state = 23}, - [1302] = {.lex_state = 23}, - [1303] = {.lex_state = 23}, - [1304] = {.lex_state = 23}, - [1305] = {.lex_state = 23}, - [1306] = {.lex_state = 23}, - [1307] = {.lex_state = 23}, - [1308] = {.lex_state = 23}, - [1309] = {.lex_state = 44}, - [1310] = {.lex_state = 23}, - [1311] = {.lex_state = 44}, - [1312] = {.lex_state = 23}, - [1313] = {.lex_state = 23}, - [1314] = {.lex_state = 23}, - [1315] = {.lex_state = 23}, - [1316] = {.lex_state = 23}, - [1317] = {.lex_state = 23}, - [1318] = {.lex_state = 23}, - [1319] = {.lex_state = 23}, - [1320] = {.lex_state = 23}, - [1321] = {.lex_state = 23}, - [1322] = {.lex_state = 23}, - [1323] = {.lex_state = 23}, - [1324] = {.lex_state = 23}, - [1325] = {.lex_state = 23}, - [1326] = {.lex_state = 23}, - [1327] = {.lex_state = 44}, - [1328] = {.lex_state = 44}, - [1329] = {.lex_state = 44}, - [1330] = {.lex_state = 44}, - [1331] = {.lex_state = 44}, - [1332] = {.lex_state = 44}, + [1292] = {.lex_state = 41}, + [1293] = {.lex_state = 44}, + [1294] = {.lex_state = 41}, + [1295] = {.lex_state = 41}, + [1296] = {.lex_state = 44}, + [1297] = {.lex_state = 44}, + [1298] = {.lex_state = 41}, + [1299] = {.lex_state = 41}, + [1300] = {.lex_state = 41}, + [1301] = {.lex_state = 44}, + [1302] = {.lex_state = 21}, + [1303] = {.lex_state = 21}, + [1304] = {.lex_state = 21}, + [1305] = {.lex_state = 21}, + [1306] = {.lex_state = 21}, + [1307] = {.lex_state = 21}, + [1308] = {.lex_state = 21}, + [1309] = {.lex_state = 21}, + [1310] = {.lex_state = 21}, + [1311] = {.lex_state = 21}, + [1312] = {.lex_state = 21}, + [1313] = {.lex_state = 21}, + [1314] = {.lex_state = 21}, + [1315] = {.lex_state = 21}, + [1316] = {.lex_state = 21}, + [1317] = {.lex_state = 21}, + [1318] = {.lex_state = 21}, + [1319] = {.lex_state = 21}, + [1320] = {.lex_state = 21}, + [1321] = {.lex_state = 21}, + [1322] = {.lex_state = 21}, + [1323] = {.lex_state = 44}, + [1324] = {.lex_state = 21}, + [1325] = {.lex_state = 21}, + [1326] = {.lex_state = 21}, + [1327] = {.lex_state = 21}, + [1328] = {.lex_state = 21}, + [1329] = {.lex_state = 21}, + [1330] = {.lex_state = 21}, + [1331] = {.lex_state = 21}, + [1332] = {.lex_state = 21}, [1333] = {.lex_state = 44}, [1334] = {.lex_state = 44}, [1335] = {.lex_state = 44}, @@ -13967,66 +13895,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1338] = {.lex_state = 44}, [1339] = {.lex_state = 44}, [1340] = {.lex_state = 44}, - [1341] = {.lex_state = 102}, + [1341] = {.lex_state = 44}, [1342] = {.lex_state = 44}, [1343] = {.lex_state = 44}, [1344] = {.lex_state = 44}, [1345] = {.lex_state = 44}, - [1346] = {.lex_state = 44}, + [1346] = {.lex_state = 102}, [1347] = {.lex_state = 102}, [1348] = {.lex_state = 44}, - [1349] = {.lex_state = 102}, + [1349] = {.lex_state = 44}, [1350] = {.lex_state = 44}, [1351] = {.lex_state = 44}, [1352] = {.lex_state = 44}, - [1353] = {.lex_state = 102}, - [1354] = {.lex_state = 44}, - [1355] = {.lex_state = 102}, - [1356] = {.lex_state = 44}, + [1353] = {.lex_state = 44}, + [1354] = {.lex_state = 102}, + [1355] = {.lex_state = 44}, + [1356] = {.lex_state = 102}, [1357] = {.lex_state = 44}, - [1358] = {.lex_state = 44}, + [1358] = {.lex_state = 102}, [1359] = {.lex_state = 44}, [1360] = {.lex_state = 44}, [1361] = {.lex_state = 44}, [1362] = {.lex_state = 44}, - [1363] = {.lex_state = 102}, + [1363] = {.lex_state = 44}, [1364] = {.lex_state = 44}, [1365] = {.lex_state = 44}, [1366] = {.lex_state = 44}, - [1367] = {.lex_state = 102}, + [1367] = {.lex_state = 44}, [1368] = {.lex_state = 44}, - [1369] = {.lex_state = 42}, + [1369] = {.lex_state = 44}, [1370] = {.lex_state = 44}, [1371] = {.lex_state = 44}, - [1372] = {.lex_state = 44}, + [1372] = {.lex_state = 102}, [1373] = {.lex_state = 102}, - [1374] = {.lex_state = 42}, + [1374] = {.lex_state = 102}, [1375] = {.lex_state = 44}, - [1376] = {.lex_state = 102}, + [1376] = {.lex_state = 42}, [1377] = {.lex_state = 44}, [1378] = {.lex_state = 44}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 102}, - [1381] = {.lex_state = 102}, - [1382] = {.lex_state = 102}, + [1379] = {.lex_state = 44}, + [1380] = {.lex_state = 42}, + [1381] = {.lex_state = 44}, + [1382] = {.lex_state = 44}, [1383] = {.lex_state = 102}, [1384] = {.lex_state = 44}, - [1385] = {.lex_state = 44}, + [1385] = {.lex_state = 102}, [1386] = {.lex_state = 102}, [1387] = {.lex_state = 102}, - [1388] = {.lex_state = 44}, - [1389] = {.lex_state = 44}, - [1390] = {.lex_state = 102}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 102}, + [1388] = {.lex_state = 102}, + [1389] = {.lex_state = 0}, + [1390] = {.lex_state = 44}, + [1391] = {.lex_state = 44}, + [1392] = {.lex_state = 0}, [1393] = {.lex_state = 102}, - [1394] = {.lex_state = 46}, - [1395] = {.lex_state = 102}, - [1396] = {.lex_state = 102}, + [1394] = {.lex_state = 102}, + [1395] = {.lex_state = 44}, + [1396] = {.lex_state = 44}, [1397] = {.lex_state = 102}, - [1398] = {.lex_state = 46}, - [1399] = {.lex_state = 102}, - [1400] = {.lex_state = 102}, + [1398] = {.lex_state = 102}, + [1399] = {.lex_state = 46}, + [1400] = {.lex_state = 46}, [1401] = {.lex_state = 102}, [1402] = {.lex_state = 102}, [1403] = {.lex_state = 102}, @@ -14039,198 +13967,198 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1410] = {.lex_state = 102}, [1411] = {.lex_state = 102}, [1412] = {.lex_state = 46}, - [1413] = {.lex_state = 102}, + [1413] = {.lex_state = 46}, [1414] = {.lex_state = 102}, - [1415] = {.lex_state = 46}, + [1415] = {.lex_state = 102}, [1416] = {.lex_state = 102}, - [1417] = {.lex_state = 46}, + [1417] = {.lex_state = 102}, [1418] = {.lex_state = 102}, - [1419] = {.lex_state = 102}, + [1419] = {.lex_state = 46}, [1420] = {.lex_state = 102}, [1421] = {.lex_state = 102}, [1422] = {.lex_state = 102}, - [1423] = {.lex_state = 0}, + [1423] = {.lex_state = 102}, [1424] = {.lex_state = 102}, - [1425] = {.lex_state = 44}, - [1426] = {.lex_state = 44}, + [1425] = {.lex_state = 102}, + [1426] = {.lex_state = 102}, [1427] = {.lex_state = 102}, [1428] = {.lex_state = 44}, - [1429] = {.lex_state = 44}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 102}, - [1432] = {.lex_state = 102}, - [1433] = {.lex_state = 102}, - [1434] = {.lex_state = 44}, + [1429] = {.lex_state = 102}, + [1430] = {.lex_state = 44}, + [1431] = {.lex_state = 44}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 102}, [1435] = {.lex_state = 44}, [1436] = {.lex_state = 102}, - [1437] = {.lex_state = 44}, + [1437] = {.lex_state = 102}, [1438] = {.lex_state = 102}, - [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 102}, + [1439] = {.lex_state = 102}, + [1440] = {.lex_state = 44}, [1441] = {.lex_state = 102}, - [1442] = {.lex_state = 102}, + [1442] = {.lex_state = 44}, [1443] = {.lex_state = 102}, - [1444] = {.lex_state = 44}, - [1445] = {.lex_state = 102}, + [1444] = {.lex_state = 102}, + [1445] = {.lex_state = 44}, [1446] = {.lex_state = 102}, - [1447] = {.lex_state = 102}, + [1447] = {.lex_state = 0}, [1448] = {.lex_state = 102}, - [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 102}, + [1449] = {.lex_state = 102}, + [1450] = {.lex_state = 102}, + [1451] = {.lex_state = 44}, [1452] = {.lex_state = 102}, - [1453] = {.lex_state = 0}, + [1453] = {.lex_state = 44}, [1454] = {.lex_state = 102}, - [1455] = {.lex_state = 44}, + [1455] = {.lex_state = 0}, [1456] = {.lex_state = 102}, - [1457] = {.lex_state = 102}, + [1457] = {.lex_state = 0}, [1458] = {.lex_state = 102}, [1459] = {.lex_state = 102}, [1460] = {.lex_state = 102}, [1461] = {.lex_state = 102}, [1462] = {.lex_state = 102}, [1463] = {.lex_state = 102}, - [1464] = {.lex_state = 102}, - [1465] = {.lex_state = 102}, - [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 102}, - [1468] = {.lex_state = 44}, - [1469] = {.lex_state = 102}, + [1464] = {.lex_state = 44}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 102}, + [1467] = {.lex_state = 44}, + [1468] = {.lex_state = 0}, + [1469] = {.lex_state = 44}, [1470] = {.lex_state = 102}, - [1471] = {.lex_state = 44}, - [1472] = {.lex_state = 0}, + [1471] = {.lex_state = 102}, + [1472] = {.lex_state = 102}, [1473] = {.lex_state = 102}, [1474] = {.lex_state = 102}, [1475] = {.lex_state = 102}, [1476] = {.lex_state = 102}, - [1477] = {.lex_state = 102}, + [1477] = {.lex_state = 0}, [1478] = {.lex_state = 102}, - [1479] = {.lex_state = 44}, + [1479] = {.lex_state = 102}, [1480] = {.lex_state = 102}, [1481] = {.lex_state = 102}, [1482] = {.lex_state = 102}, - [1483] = {.lex_state = 102}, + [1483] = {.lex_state = 44}, [1484] = {.lex_state = 44}, - [1485] = {.lex_state = 37}, + [1485] = {.lex_state = 102}, [1486] = {.lex_state = 44}, [1487] = {.lex_state = 44}, [1488] = {.lex_state = 44}, - [1489] = {.lex_state = 44}, - [1490] = {.lex_state = 102}, + [1489] = {.lex_state = 102}, + [1490] = {.lex_state = 44}, [1491] = {.lex_state = 44}, - [1492] = {.lex_state = 44}, - [1493] = {.lex_state = 44}, + [1492] = {.lex_state = 37}, + [1493] = {.lex_state = 102}, [1494] = {.lex_state = 44}, [1495] = {.lex_state = 44}, - [1496] = {.lex_state = 44}, - [1497] = {.lex_state = 102}, + [1496] = {.lex_state = 102}, + [1497] = {.lex_state = 44}, [1498] = {.lex_state = 102}, - [1499] = {.lex_state = 102}, + [1499] = {.lex_state = 44}, [1500] = {.lex_state = 44}, [1501] = {.lex_state = 102}, - [1502] = {.lex_state = 44}, - [1503] = {.lex_state = 26}, - [1504] = {.lex_state = 26}, - [1505] = {.lex_state = 26}, - [1506] = {.lex_state = 28}, - [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 26}, - [1509] = {.lex_state = 28}, - [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 28}, - [1512] = {.lex_state = 44}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 102}, - [1515] = {.lex_state = 37}, - [1516] = {.lex_state = 0}, - [1517] = {.lex_state = 0}, + [1502] = {.lex_state = 102}, + [1503] = {.lex_state = 102}, + [1504] = {.lex_state = 44}, + [1505] = {.lex_state = 44}, + [1506] = {.lex_state = 102}, + [1507] = {.lex_state = 102}, + [1508] = {.lex_state = 102}, + [1509] = {.lex_state = 102}, + [1510] = {.lex_state = 26}, + [1511] = {.lex_state = 0}, + [1512] = {.lex_state = 0}, + [1513] = {.lex_state = 28}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 37}, + [1517] = {.lex_state = 28}, [1518] = {.lex_state = 44}, [1519] = {.lex_state = 26}, - [1520] = {.lex_state = 44}, + [1520] = {.lex_state = 26}, [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 26}, - [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 28}, - [1525] = {.lex_state = 26}, + [1522] = {.lex_state = 28}, + [1523] = {.lex_state = 26}, + [1524] = {.lex_state = 26}, + [1525] = {.lex_state = 0}, [1526] = {.lex_state = 26}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 28}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 28}, - [1531] = {.lex_state = 26}, + [1527] = {.lex_state = 26}, + [1528] = {.lex_state = 26}, + [1529] = {.lex_state = 44}, + [1530] = {.lex_state = 0}, + [1531] = {.lex_state = 28}, [1532] = {.lex_state = 28}, - [1533] = {.lex_state = 37}, - [1534] = {.lex_state = 0}, + [1533] = {.lex_state = 102}, + [1534] = {.lex_state = 28}, [1535] = {.lex_state = 0}, [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 0}, + [1537] = {.lex_state = 26}, + [1538] = {.lex_state = 44}, + [1539] = {.lex_state = 28}, [1540] = {.lex_state = 0}, [1541] = {.lex_state = 0}, [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 102}, + [1543] = {.lex_state = 0}, [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 44}, - [1547] = {.lex_state = 0}, + [1545] = {.lex_state = 37}, + [1546] = {.lex_state = 0}, + [1547] = {.lex_state = 37}, [1548] = {.lex_state = 0}, [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 0}, + [1550] = {.lex_state = 44}, [1551] = {.lex_state = 0}, [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, + [1553] = {.lex_state = 44}, [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 23}, - [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 37}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 44}, + [1557] = {.lex_state = 21}, + [1558] = {.lex_state = 102}, [1559] = {.lex_state = 0}, [1560] = {.lex_state = 0}, [1561] = {.lex_state = 0}, [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 0}, + [1563] = {.lex_state = 21}, [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 37}, - [1566] = {.lex_state = 37}, + [1565] = {.lex_state = 44}, + [1566] = {.lex_state = 0}, [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 0}, + [1568] = {.lex_state = 44}, [1569] = {.lex_state = 0}, [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, + [1572] = {.lex_state = 44}, [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 23}, + [1574] = {.lex_state = 0}, [1575] = {.lex_state = 0}, [1576] = {.lex_state = 0}, [1577] = {.lex_state = 0}, [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 0}, + [1579] = {.lex_state = 44}, [1580] = {.lex_state = 0}, [1581] = {.lex_state = 0}, [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 44}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, + [1583] = {.lex_state = 0}, + [1584] = {.lex_state = 44}, + [1585] = {.lex_state = 37}, [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 44}, + [1587] = {.lex_state = 0}, [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 0}, + [1589] = {.lex_state = 21}, [1590] = {.lex_state = 0}, [1591] = {.lex_state = 0}, [1592] = {.lex_state = 0}, [1593] = {.lex_state = 0}, - [1594] = {.lex_state = 0}, + [1594] = {.lex_state = 37}, [1595] = {.lex_state = 0}, [1596] = {.lex_state = 0}, [1597] = {.lex_state = 0}, [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 102}, - [1600] = {.lex_state = 44}, - [1601] = {.lex_state = 44}, - [1602] = {.lex_state = 37}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 0}, + [1601] = {.lex_state = 0}, + [1602] = {.lex_state = 0}, [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 0}, + [1604] = {.lex_state = 21}, [1605] = {.lex_state = 0}, [1606] = {.lex_state = 0}, [1607] = {.lex_state = 0}, @@ -14238,391 +14166,399 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1609] = {.lex_state = 0}, [1610] = {.lex_state = 0}, [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 23}, - [1613] = {.lex_state = 37}, + [1612] = {.lex_state = 37}, + [1613] = {.lex_state = 0}, [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 0}, + [1615] = {.lex_state = 44}, + [1616] = {.lex_state = 44}, [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 44}, + [1618] = {.lex_state = 0}, [1619] = {.lex_state = 0}, - [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 37}, + [1620] = {.lex_state = 37}, + [1621] = {.lex_state = 0}, [1622] = {.lex_state = 0}, [1623] = {.lex_state = 0}, [1624] = {.lex_state = 0}, - [1625] = {.lex_state = 44}, - [1626] = {.lex_state = 0}, + [1625] = {.lex_state = 0}, + [1626] = {.lex_state = 102}, [1627] = {.lex_state = 0}, [1628] = {.lex_state = 0}, - [1629] = {.lex_state = 23}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 44}, - [1632] = {.lex_state = 23}, - [1633] = {.lex_state = 44}, + [1629] = {.lex_state = 0}, + [1630] = {.lex_state = 21}, + [1631] = {.lex_state = 0}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 0}, [1634] = {.lex_state = 0}, [1635] = {.lex_state = 0}, [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 102}, + [1637] = {.lex_state = 0}, [1638] = {.lex_state = 0}, - [1639] = {.lex_state = 102}, - [1640] = {.lex_state = 102}, - [1641] = {.lex_state = 27}, - [1642] = {.lex_state = 44}, - [1643] = {.lex_state = 27}, - [1644] = {.lex_state = 102}, - [1645] = {.lex_state = 102}, - [1646] = {.lex_state = 30}, + [1639] = {.lex_state = 37}, + [1640] = {.lex_state = 0}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 0}, + [1644] = {.lex_state = 0}, + [1645] = {.lex_state = 27}, + [1646] = {.lex_state = 37}, [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 44}, + [1648] = {.lex_state = 27}, + [1649] = {.lex_state = 0}, [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 44}, + [1651] = {.lex_state = 27}, [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 27}, + [1653] = {.lex_state = 27}, + [1654] = {.lex_state = 27}, + [1655] = {.lex_state = 44}, [1656] = {.lex_state = 27}, - [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 102}, - [1659] = {.lex_state = 27}, - [1660] = {.lex_state = 44}, - [1661] = {.lex_state = 0}, + [1657] = {.lex_state = 30}, + [1658] = {.lex_state = 0}, + [1659] = {.lex_state = 44}, + [1660] = {.lex_state = 0}, + [1661] = {.lex_state = 102}, [1662] = {.lex_state = 102}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 37}, - [1665] = {.lex_state = 0}, + [1663] = {.lex_state = 102}, + [1664] = {.lex_state = 102}, + [1665] = {.lex_state = 102}, [1666] = {.lex_state = 0}, [1667] = {.lex_state = 27}, - [1668] = {.lex_state = 27}, - [1669] = {.lex_state = 27}, + [1668] = {.lex_state = 0}, + [1669] = {.lex_state = 37}, [1670] = {.lex_state = 102}, - [1671] = {.lex_state = 102}, + [1671] = {.lex_state = 44}, [1672] = {.lex_state = 102}, - [1673] = {.lex_state = 0}, + [1673] = {.lex_state = 44}, [1674] = {.lex_state = 27}, - [1675] = {.lex_state = 0}, + [1675] = {.lex_state = 102}, [1676] = {.lex_state = 102}, [1677] = {.lex_state = 102}, [1678] = {.lex_state = 102}, - [1679] = {.lex_state = 44}, - [1680] = {.lex_state = 37}, - [1681] = {.lex_state = 0}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 44}, + [1681] = {.lex_state = 27}, [1682] = {.lex_state = 102}, - [1683] = {.lex_state = 27}, - [1684] = {.lex_state = 27}, + [1683] = {.lex_state = 102}, + [1684] = {.lex_state = 102}, [1685] = {.lex_state = 102}, [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 102}, - [1688] = {.lex_state = 44}, + [1687] = {.lex_state = 27}, + [1688] = {.lex_state = 0}, [1689] = {.lex_state = 30}, - [1690] = {.lex_state = 44}, + [1690] = {.lex_state = 102}, [1691] = {.lex_state = 27}, - [1692] = {.lex_state = 37}, - [1693] = {.lex_state = 27}, + [1692] = {.lex_state = 102}, + [1693] = {.lex_state = 102}, [1694] = {.lex_state = 102}, - [1695] = {.lex_state = 102}, - [1696] = {.lex_state = 27}, - [1697] = {.lex_state = 27}, - [1698] = {.lex_state = 102}, - [1699] = {.lex_state = 30}, - [1700] = {.lex_state = 27}, - [1701] = {.lex_state = 102}, + [1695] = {.lex_state = 44}, + [1696] = {.lex_state = 0}, + [1697] = {.lex_state = 0}, + [1698] = {.lex_state = 27}, + [1699] = {.lex_state = 27}, + [1700] = {.lex_state = 0}, + [1701] = {.lex_state = 44}, [1702] = {.lex_state = 27}, - [1703] = {.lex_state = 102}, - [1704] = {.lex_state = 44}, - [1705] = {.lex_state = 102}, - [1706] = {.lex_state = 27}, + [1703] = {.lex_state = 44}, + [1704] = {.lex_state = 27}, + [1705] = {.lex_state = 44}, + [1706] = {.lex_state = 102}, [1707] = {.lex_state = 102}, [1708] = {.lex_state = 27}, [1709] = {.lex_state = 27}, - [1710] = {.lex_state = 44}, + [1710] = {.lex_state = 27}, [1711] = {.lex_state = 102}, - [1712] = {.lex_state = 27}, - [1713] = {.lex_state = 36}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 44}, - [1716] = {.lex_state = 44}, - [1717] = {.lex_state = 23}, - [1718] = {.lex_state = 102}, - [1719] = {.lex_state = 23}, - [1720] = {.lex_state = 23}, - [1721] = {.lex_state = 23}, - [1722] = {.lex_state = 23}, - [1723] = {.lex_state = 23}, - [1724] = {.lex_state = 44}, - [1725] = {.lex_state = 23}, - [1726] = {.lex_state = 44}, - [1727] = {.lex_state = 44}, - [1728] = {.lex_state = 23}, - [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 23}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 36}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 36}, - [1738] = {.lex_state = 23}, - [1739] = {.lex_state = 36}, - [1740] = {.lex_state = 23}, - [1741] = {.lex_state = 23}, + [1712] = {.lex_state = 102}, + [1713] = {.lex_state = 30}, + [1714] = {.lex_state = 27}, + [1715] = {.lex_state = 0}, + [1716] = {.lex_state = 27}, + [1717] = {.lex_state = 0}, + [1718] = {.lex_state = 37}, + [1719] = {.lex_state = 102}, + [1720] = {.lex_state = 27}, + [1721] = {.lex_state = 0}, + [1722] = {.lex_state = 0}, + [1723] = {.lex_state = 36}, + [1724] = {.lex_state = 21}, + [1725] = {.lex_state = 36}, + [1726] = {.lex_state = 21}, + [1727] = {.lex_state = 21}, + [1728] = {.lex_state = 21}, + [1729] = {.lex_state = 21}, + [1730] = {.lex_state = 21}, + [1731] = {.lex_state = 36}, + [1732] = {.lex_state = 21}, + [1733] = {.lex_state = 21}, + [1734] = {.lex_state = 21}, + [1735] = {.lex_state = 0}, + [1736] = {.lex_state = 21}, + [1737] = {.lex_state = 21}, + [1738] = {.lex_state = 21}, + [1739] = {.lex_state = 44}, + [1740] = {.lex_state = 44}, + [1741] = {.lex_state = 21}, [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 36}, + [1743] = {.lex_state = 44}, [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 36}, - [1746] = {.lex_state = 36}, - [1747] = {.lex_state = 36}, - [1748] = {.lex_state = 23}, + [1745] = {.lex_state = 21}, + [1746] = {.lex_state = 0}, + [1747] = {.lex_state = 21}, + [1748] = {.lex_state = 0}, [1749] = {.lex_state = 0}, - [1750] = {.lex_state = 44}, - [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 36}, - [1753] = {.lex_state = 36}, - [1754] = {.lex_state = 44}, - [1755] = {.lex_state = 36}, - [1756] = {.lex_state = 23}, - [1757] = {.lex_state = 0}, + [1750] = {.lex_state = 0}, + [1751] = {.lex_state = 36}, + [1752] = {.lex_state = 0}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 0}, + [1755] = {.lex_state = 0}, + [1756] = {.lex_state = 0}, + [1757] = {.lex_state = 36}, [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0}, + [1761] = {.lex_state = 44}, [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 23}, - [1766] = {.lex_state = 102}, + [1763] = {.lex_state = 44}, + [1764] = {.lex_state = 44}, + [1765] = {.lex_state = 0}, + [1766] = {.lex_state = 0}, [1767] = {.lex_state = 0}, [1768] = {.lex_state = 36}, - [1769] = {.lex_state = 44}, + [1769] = {.lex_state = 36}, [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 0}, + [1771] = {.lex_state = 21}, [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 0}, + [1773] = {.lex_state = 36}, + [1774] = {.lex_state = 44}, [1775] = {.lex_state = 0}, [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 23}, + [1777] = {.lex_state = 0}, [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 102}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 0}, + [1779] = {.lex_state = 0}, + [1780] = {.lex_state = 36}, + [1781] = {.lex_state = 21}, [1782] = {.lex_state = 0}, [1783] = {.lex_state = 36}, [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 0}, + [1785] = {.lex_state = 36}, [1786] = {.lex_state = 0}, [1787] = {.lex_state = 0}, [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 36}, - [1791] = {.lex_state = 0}, - [1792] = {.lex_state = 36}, + [1789] = {.lex_state = 21}, + [1790] = {.lex_state = 0}, + [1791] = {.lex_state = 36}, + [1792] = {.lex_state = 0}, [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 44}, - [1795] = {.lex_state = 102}, - [1796] = {.lex_state = 0}, - [1797] = {.lex_state = 44}, + [1794] = {.lex_state = 0}, + [1795] = {.lex_state = 0}, + [1796] = {.lex_state = 36}, + [1797] = {.lex_state = 21}, [1798] = {.lex_state = 0}, - [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 36}, - [1801] = {.lex_state = 36}, + [1799] = {.lex_state = 36}, + [1800] = {.lex_state = 21}, + [1801] = {.lex_state = 0}, [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 44}, - [1804] = {.lex_state = 36}, - [1805] = {.lex_state = 44}, - [1806] = {.lex_state = 44}, + [1803] = {.lex_state = 21}, + [1804] = {.lex_state = 44}, + [1805] = {.lex_state = 36}, + [1806] = {.lex_state = 0}, [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 36}, - [1809] = {.lex_state = 36}, + [1808] = {.lex_state = 102}, + [1809] = {.lex_state = 44}, [1810] = {.lex_state = 0}, [1811] = {.lex_state = 0}, - [1812] = {.lex_state = 36}, - [1813] = {.lex_state = 23}, + [1812] = {.lex_state = 0}, + [1813] = {.lex_state = 44}, [1814] = {.lex_state = 44}, - [1815] = {.lex_state = 23}, - [1816] = {.lex_state = 36}, + [1815] = {.lex_state = 102}, + [1816] = {.lex_state = 21}, [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 0}, + [1818] = {.lex_state = 21}, [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 0}, + [1820] = {.lex_state = 36}, [1821] = {.lex_state = 0}, - [1822] = {.lex_state = 36}, - [1823] = {.lex_state = 23}, - [1824] = {.lex_state = 44}, - [1825] = {.lex_state = 23}, + [1822] = {.lex_state = 44}, + [1823] = {.lex_state = 36}, + [1824] = {.lex_state = 0}, + [1825] = {.lex_state = 36}, [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 44}, + [1828] = {.lex_state = 0}, [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 0}, + [1830] = {.lex_state = 21}, + [1831] = {.lex_state = 44}, + [1832] = {.lex_state = 44}, + [1833] = {.lex_state = 36}, + [1834] = {.lex_state = 21}, [1835] = {.lex_state = 0}, - [1836] = {.lex_state = 23}, - [1837] = {.lex_state = 36}, - [1838] = {.lex_state = 0}, + [1836] = {.lex_state = 0}, + [1837] = {.lex_state = 0}, + [1838] = {.lex_state = 102}, [1839] = {.lex_state = 0}, [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 0}, + [1841] = {.lex_state = 21}, [1842] = {.lex_state = 0}, [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 0}, + [1845] = {.lex_state = 36}, [1846] = {.lex_state = 0}, [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 23}, + [1848] = {.lex_state = 0}, [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 23}, + [1850] = {.lex_state = 36}, + [1851] = {.lex_state = 44}, + [1852] = {.lex_state = 0}, [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 23}, + [1854] = {.lex_state = 0}, [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 44}, - [1857] = {.lex_state = 44}, - [1858] = {.lex_state = 23}, + [1856] = {.lex_state = 0}, + [1857] = {.lex_state = 0}, + [1858] = {.lex_state = 0}, [1859] = {.lex_state = 0}, [1860] = {.lex_state = 36}, - [1861] = {.lex_state = 44}, - [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 44}, - [1864] = {.lex_state = 23}, - [1865] = {.lex_state = 36}, + [1861] = {.lex_state = 0}, + [1862] = {.lex_state = 21}, + [1863] = {.lex_state = 0}, + [1864] = {.lex_state = 44}, + [1865] = {.lex_state = 44}, [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 0}, - [1868] = {.lex_state = 23}, - [1869] = {.lex_state = 23}, + [1867] = {.lex_state = 36}, + [1868] = {.lex_state = 0}, + [1869] = {.lex_state = 0}, [1870] = {.lex_state = 0}, [1871] = {.lex_state = 44}, - [1872] = {.lex_state = 36}, - [1873] = {.lex_state = 0}, + [1872] = {.lex_state = 0}, + [1873] = {.lex_state = 44}, [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 36}, - [1876] = {.lex_state = 0}, + [1875] = {.lex_state = 0}, + [1876] = {.lex_state = 44}, [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 36}, + [1879] = {.lex_state = 44}, [1880] = {.lex_state = 0}, [1881] = {.lex_state = 0}, [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, - [1885] = {.lex_state = 0}, + [1885] = {.lex_state = 44}, [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 0}, + [1887] = {.lex_state = 44}, [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 44}, + [1890] = {.lex_state = 36}, [1891] = {.lex_state = 44}, [1892] = {.lex_state = 0}, [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 44}, - [1895] = {.lex_state = 44}, + [1894] = {.lex_state = 0}, + [1895] = {.lex_state = 0}, [1896] = {.lex_state = 36}, [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 44}, + [1899] = {.lex_state = 36}, [1900] = {.lex_state = 0}, [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 36}, - [1903] = {.lex_state = 36}, - [1904] = {.lex_state = 44}, - [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 36}, - [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 44}, - [1909] = {.lex_state = 0}, + [1902] = {.lex_state = 44}, + [1903] = {.lex_state = 44}, + [1904] = {.lex_state = 102}, + [1905] = {.lex_state = 21}, + [1906] = {.lex_state = 0}, + [1907] = {.lex_state = 44}, + [1908] = {.lex_state = 0}, + [1909] = {.lex_state = 36}, [1910] = {.lex_state = 44}, - [1911] = {.lex_state = 44}, - [1912] = {.lex_state = 44}, + [1911] = {.lex_state = 0}, + [1912] = {.lex_state = 36}, [1913] = {.lex_state = 0}, [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 36}, + [1915] = {.lex_state = 36}, + [1916] = {.lex_state = 44}, + [1917] = {.lex_state = 102}, + [1918] = {.lex_state = 44}, [1919] = {.lex_state = 44}, [1920] = {.lex_state = 44}, - [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 36}, - [1923] = {.lex_state = 44}, - [1924] = {.lex_state = 23}, - [1925] = {.lex_state = 36}, + [1921] = {.lex_state = 36}, + [1922] = {.lex_state = 44}, + [1923] = {.lex_state = 102}, + [1924] = {.lex_state = 0}, + [1925] = {.lex_state = 44}, [1926] = {.lex_state = 44}, - [1927] = {.lex_state = 36}, - [1928] = {.lex_state = 44}, - [1929] = {.lex_state = 36}, + [1927] = {.lex_state = 0}, + [1928] = {.lex_state = 0}, + [1929] = {.lex_state = 0}, [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 0}, + [1931] = {.lex_state = 44}, [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 0}, + [1933] = {.lex_state = 102}, [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 0}, + [1935] = {.lex_state = 102}, [1936] = {.lex_state = 0}, [1937] = {.lex_state = 0}, [1938] = {.lex_state = 0}, [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 44}, + [1940] = {.lex_state = 0}, [1941] = {.lex_state = 0}, [1942] = {.lex_state = 0}, - [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 44}, + [1943] = {.lex_state = 36}, + [1944] = {.lex_state = 0}, [1945] = {.lex_state = 0}, [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 44}, + [1947] = {.lex_state = 0}, [1948] = {.lex_state = 36}, [1949] = {.lex_state = 0}, [1950] = {.lex_state = 0}, [1951] = {.lex_state = 36}, - [1952] = {.lex_state = 0}, - [1953] = {.lex_state = 0}, + [1952] = {.lex_state = 44}, + [1953] = {.lex_state = 102}, [1954] = {.lex_state = 0}, [1955] = {.lex_state = 0}, - [1956] = {.lex_state = 23}, - [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 36}, - [1959] = {.lex_state = 23}, + [1956] = {.lex_state = 36}, + [1957] = {.lex_state = 36}, + [1958] = {.lex_state = 0}, + [1959] = {.lex_state = 36}, [1960] = {.lex_state = 0}, - [1961] = {.lex_state = 23}, - [1962] = {.lex_state = 44}, + [1961] = {.lex_state = 36}, + [1962] = {.lex_state = 0}, [1963] = {.lex_state = 0}, [1964] = {.lex_state = 0}, [1965] = {.lex_state = 0}, - [1966] = {.lex_state = 0}, + [1966] = {.lex_state = 21}, [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 102}, - [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 102}, - [1971] = {.lex_state = 44}, + [1968] = {.lex_state = 44}, + [1969] = {.lex_state = 21}, + [1970] = {.lex_state = 44}, + [1971] = {.lex_state = 36}, [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 0}, - [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 102}, - [1976] = {.lex_state = 36}, - [1977] = {.lex_state = 44}, + [1973] = {.lex_state = 36}, + [1974] = {.lex_state = 21}, + [1975] = {.lex_state = 0}, + [1976] = {.lex_state = 44}, + [1977] = {.lex_state = 0}, [1978] = {.lex_state = 0}, [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 102}, - [1981] = {.lex_state = 23}, - [1982] = {.lex_state = 23}, - [1983] = {.lex_state = 0}, + [1980] = {.lex_state = 0}, + [1981] = {.lex_state = 21}, + [1982] = {.lex_state = 36}, + [1983] = {.lex_state = 36}, [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 102}, + [1985] = {.lex_state = 44}, [1986] = {.lex_state = 0}, - [1987] = {.lex_state = 102}, - [1988] = {.lex_state = 0}, - [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 102}, + [1987] = {.lex_state = 0}, + [1988] = {.lex_state = 102}, + [1989] = {.lex_state = 36}, + [1990] = {.lex_state = 0}, [1991] = {.lex_state = 0}, [1992] = {.lex_state = 0}, - [1993] = {.lex_state = 44}, - [1994] = {.lex_state = 102}, - [1995] = {.lex_state = 102}, - [1996] = {.lex_state = 102}, + [1993] = {.lex_state = 102}, + [1994] = {.lex_state = 21}, + [1995] = {.lex_state = 0}, + [1996] = {.lex_state = 0}, + [1997] = {.lex_state = 44}, + [1998] = {.lex_state = 0}, + [1999] = {.lex_state = 21}, + [2000] = {.lex_state = 0}, + [2001] = {.lex_state = 44}, + [2002] = {.lex_state = 102}, + [2003] = {.lex_state = 102}, + [2004] = {.lex_state = 102}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14761,72 +14697,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(1963), - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(818), + [sym_translation_unit] = STATE(1868), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(819), [sym__declaration_specifiers] = STATE(1345), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(818), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(813), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1030), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym__top_level_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_case_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(1177), - [sym__expression_not_binary] = STATE(1207), - [sym_conditional_expression] = STATE(1207), - [sym_assignment_expression] = STATE(1207), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1049), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym__top_level_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_case_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(1191), + [sym__expression_not_binary] = STATE(1196), + [sym_conditional_expression] = STATE(1196), + [sym_assignment_expression] = STATE(1196), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(1207), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(1207), - [sym_cast_expression] = STATE(1207), - [sym_sizeof_expression] = STATE(1207), - [sym_offsetof_expression] = STATE(1207), - [sym_generic_expression] = STATE(1207), + [sym_unary_expression] = STATE(1196), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(1196), + [sym_cast_expression] = STATE(1196), + [sym_sizeof_expression] = STATE(1196), + [sym_offsetof_expression] = STATE(1196), + [sym_generic_expression] = STATE(1196), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(1207), + [sym_gnu_asm_expression] = STATE(1196), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(1207), + [sym_compound_literal_expression] = STATE(1196), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(1207), - [sym_concatenated_string] = STATE(1207), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(1207), - [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(1196), + [sym_concatenated_string] = STATE(1196), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(1196), + [sym__empty_declaration] = STATE(53), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -14911,75 +14847,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1816), - [sym_preproc_elif] = STATE(1816), - [sym_preproc_elifdef] = STATE(1816), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1351), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(818), + [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(1799), + [sym_preproc_elif] = STATE(1799), + [sym_preproc_elifdef] = STATE(1799), + [sym_function_definition] = STATE(7), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1038), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1044), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15069,75 +15005,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1865), - [sym_preproc_elif] = STATE(1865), - [sym_preproc_elifdef] = STATE(1865), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1351), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(818), + [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_preproc_else] = STATE(1860), + [sym_preproc_elif] = STATE(1860), + [sym_preproc_elifdef] = STATE(1860), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1038), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1044), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15227,75 +15163,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1951), - [sym_preproc_elif] = STATE(1951), - [sym_preproc_elifdef] = STATE(1951), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1351), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(818), + [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_preproc_else] = STATE(1773), + [sym_preproc_elif] = STATE(1773), + [sym_preproc_elifdef] = STATE(1773), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1038), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1044), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15385,75 +15321,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { - [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(1976), - [sym_preproc_elif] = STATE(1976), - [sym_preproc_elifdef] = STATE(1976), - [sym_function_definition] = STATE(4), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1351), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(818), + [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(1971), + [sym_preproc_elif] = STATE(1971), + [sym_preproc_elifdef] = STATE(1971), + [sym_function_definition] = STATE(9), + [sym_declaration] = STATE(9), + [sym_type_definition] = STATE(9), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_linkage_specification] = STATE(9), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1038), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(9), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1044), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(9), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(9), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15543,75 +15479,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [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(1918), - [sym_preproc_elif] = STATE(1918), - [sym_preproc_elifdef] = STATE(1918), - [sym_function_definition] = STATE(3), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1351), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(818), + [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(1909), + [sym_preproc_elif] = STATE(1909), + [sym_preproc_elifdef] = STATE(1909), + [sym_function_definition] = STATE(4), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(3), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1038), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(4), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1044), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15701,75 +15637,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [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(1860), - [sym_preproc_elif] = STATE(1860), - [sym_preproc_elifdef] = STATE(1860), - [sym_function_definition] = STATE(8), - [sym_declaration] = STATE(8), - [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1351), - [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(818), + [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_preproc_else] = STATE(1791), + [sym_preproc_elif] = STATE(1791), + [sym_preproc_elifdef] = STATE(1791), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(8), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1038), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1044), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -15859,75 +15795,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1879), - [sym_preproc_elif] = STATE(1879), - [sym_preproc_elifdef] = STATE(1879), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1351), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(818), + [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_preproc_else] = STATE(1723), + [sym_preproc_elif] = STATE(1723), + [sym_preproc_elifdef] = STATE(1723), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1038), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1044), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -16017,75 +15953,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1745), - [sym_preproc_elif] = STATE(1745), - [sym_preproc_elifdef] = STATE(1745), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1351), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(818), + [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_preproc_else] = STATE(1956), + [sym_preproc_elif] = STATE(1956), + [sym_preproc_elifdef] = STATE(1956), + [sym_function_definition] = STATE(24), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1038), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1044), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -16175,75 +16111,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [10] = { - [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(1755), - [sym_preproc_elif] = STATE(1755), - [sym_preproc_elifdef] = STATE(1755), - [sym_function_definition] = STATE(9), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1351), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(818), + [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(1731), + [sym_preproc_elif] = STATE(1731), + [sym_preproc_elifdef] = STATE(1731), + [sym_function_definition] = STATE(8), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1038), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(8), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1044), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -16333,75 +16269,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [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(1822), - [sym_preproc_elif] = STATE(1822), - [sym_preproc_elifdef] = STATE(1822), - [sym_function_definition] = STATE(2), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1351), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(818), + [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(1896), + [sym_preproc_elif] = STATE(1896), + [sym_preproc_elifdef] = STATE(1896), + [sym_function_definition] = STATE(3), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1038), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(3), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1044), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(97), [aux_sym_preproc_include_token1] = ACTIONS(99), [aux_sym_preproc_def_token1] = ACTIONS(101), @@ -16491,74 +16427,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [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(1747), - [sym_preproc_elif] = STATE(1747), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(818), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(1959), + [sym_preproc_elif] = STATE(1959), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), @@ -16646,32 +16582,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [13] = { + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(1725), + [sym_preproc_elif] = STATE(1725), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(175), + [aux_sym_preproc_if_token2] = ACTIONS(213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [aux_sym_preproc_else_token1] = ACTIONS(109), + [aux_sym_preproc_elif_token1] = ACTIONS(111), + [sym_preproc_directive] = ACTIONS(181), + [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(183), + [anon_sym_typedef] = ACTIONS(185), + [anon_sym_extern] = ACTIONS(187), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym___cdecl] = ACTIONS(37), + [anon_sym___clrcall] = ACTIONS(37), + [anon_sym___stdcall] = ACTIONS(37), + [anon_sym___fastcall] = ACTIONS(37), + [anon_sym___thiscall] = ACTIONS(37), + [anon_sym___vectorcall] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(45), + [sym_primitive_type] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(51), + [anon_sym_union] = ACTIONS(53), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [14] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1812), - [sym_preproc_elif] = STATE(1812), + [sym_preproc_else] = STATE(1912), + [sym_preproc_elif] = STATE(1912), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(818), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -16685,40 +16776,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1020), + [sym_macro_type_specifier] = STATE(1009), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(213), + [aux_sym_preproc_if_token2] = ACTIONS(215), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -16800,80 +16891,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [14] = { - [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_preproc_else] = STATE(1875), - [sym_preproc_elif] = STATE(1875), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(818), + [15] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1783), + [sym_preproc_elif] = STATE(1783), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(215), + [aux_sym_preproc_if_token2] = ACTIONS(217), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -16955,80 +17046,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [15] = { - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(1837), - [sym_preproc_elif] = STATE(1837), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(818), + [16] = { + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_call] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_else] = STATE(1751), + [sym_preproc_elif] = STATE(1751), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(217), + [aux_sym_preproc_if_token2] = ACTIONS(219), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -17110,33 +17201,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [16] = { + [17] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1739), - [sym_preproc_elif] = STATE(1739), + [sym_preproc_else] = STATE(1982), + [sym_preproc_elif] = STATE(1982), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(818), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17150,40 +17241,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1020), + [sym_macro_type_specifier] = STATE(1009), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(219), + [aux_sym_preproc_if_token2] = ACTIONS(221), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -17265,80 +17356,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [17] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1743), - [sym_preproc_elif] = STATE(1743), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(818), + [18] = { + [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(1983), + [sym_preproc_elif] = STATE(1983), + [sym_function_definition] = STATE(14), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(14), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(14), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(14), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(221), + [aux_sym_preproc_if_token2] = ACTIONS(223), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -17420,80 +17511,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [18] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(1713), - [sym_preproc_elif] = STATE(1713), - [sym_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(818), + [19] = { + [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(1796), + [sym_preproc_elif] = STATE(1796), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(223), + [aux_sym_preproc_if_token2] = ACTIONS(225), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -17575,33 +17666,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [19] = { + [20] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1929), - [sym_preproc_elif] = STATE(1929), + [sym_preproc_else] = STATE(1850), + [sym_preproc_elif] = STATE(1850), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(818), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17615,40 +17706,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1020), + [sym_macro_type_specifier] = STATE(1009), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(225), + [aux_sym_preproc_if_token2] = ACTIONS(227), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -17730,80 +17821,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [20] = { - [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_preproc_else] = STATE(1808), - [sym_preproc_elif] = STATE(1808), - [sym_function_definition] = STATE(25), - [sym_declaration] = STATE(25), - [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), - [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(818), + [21] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1951), + [sym_preproc_elif] = STATE(1951), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), - [sym_compound_statement] = STATE(25), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(227), + [aux_sym_preproc_if_token2] = ACTIONS(229), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -17885,33 +17976,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [21] = { + [22] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1809), - [sym_preproc_elif] = STATE(1809), + [sym_preproc_else] = STATE(1823), + [sym_preproc_elif] = STATE(1823), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(818), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17925,40 +18016,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1020), + [sym_macro_type_specifier] = STATE(1009), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(229), + [aux_sym_preproc_if_token2] = ACTIONS(231), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -18040,235 +18131,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [22] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1351), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(818), + [23] = { + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(1833), + [sym_preproc_elif] = STATE(1833), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_declspec_modifier] = STATE(819), [sym_ms_call_modifier] = STATE(817), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1038), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(234), - [aux_sym_preproc_def_token1] = ACTIONS(237), - [aux_sym_preproc_if_token1] = ACTIONS(240), - [aux_sym_preproc_if_token2] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(243), - [aux_sym_preproc_elifdef_token1] = ACTIONS(243), - [aux_sym_preproc_elifdef_token2] = ACTIONS(243), - [sym_preproc_directive] = ACTIONS(248), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_typedef] = ACTIONS(266), - [anon_sym_extern] = ACTIONS(269), - [anon_sym___attribute__] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(275), - [anon_sym___declspec] = ACTIONS(278), - [anon_sym___cdecl] = ACTIONS(281), - [anon_sym___clrcall] = ACTIONS(281), - [anon_sym___stdcall] = ACTIONS(281), - [anon_sym___fastcall] = ACTIONS(281), - [anon_sym___thiscall] = ACTIONS(281), - [anon_sym___vectorcall] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_signed] = ACTIONS(287), - [anon_sym_unsigned] = ACTIONS(287), - [anon_sym_long] = ACTIONS(287), - [anon_sym_short] = ACTIONS(287), - [anon_sym_static] = ACTIONS(290), - [anon_sym_auto] = ACTIONS(290), - [anon_sym_register] = ACTIONS(290), - [anon_sym_inline] = ACTIONS(290), - [anon_sym_thread_local] = ACTIONS(290), - [anon_sym_const] = ACTIONS(293), - [anon_sym_constexpr] = ACTIONS(293), - [anon_sym_volatile] = ACTIONS(293), - [anon_sym_restrict] = ACTIONS(293), - [anon_sym___restrict__] = ACTIONS(293), - [anon_sym__Atomic] = ACTIONS(293), - [anon_sym__Noreturn] = ACTIONS(293), - [anon_sym_noreturn] = ACTIONS(293), - [sym_primitive_type] = ACTIONS(296), - [anon_sym_enum] = ACTIONS(299), - [anon_sym_struct] = ACTIONS(302), - [anon_sym_union] = ACTIONS(305), - [anon_sym_if] = ACTIONS(308), - [anon_sym_switch] = ACTIONS(311), - [anon_sym_case] = ACTIONS(314), - [anon_sym_default] = ACTIONS(317), - [anon_sym_while] = ACTIONS(320), - [anon_sym_do] = ACTIONS(323), - [anon_sym_for] = ACTIONS(326), - [anon_sym_return] = ACTIONS(329), - [anon_sym_break] = ACTIONS(332), - [anon_sym_continue] = ACTIONS(335), - [anon_sym_goto] = ACTIONS(338), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_sizeof] = ACTIONS(344), - [anon_sym_offsetof] = ACTIONS(347), - [anon_sym__Generic] = ACTIONS(350), - [anon_sym_asm] = ACTIONS(353), - [anon_sym___asm__] = ACTIONS(353), - [sym_number_literal] = ACTIONS(356), - [anon_sym_L_SQUOTE] = ACTIONS(359), - [anon_sym_u_SQUOTE] = ACTIONS(359), - [anon_sym_U_SQUOTE] = ACTIONS(359), - [anon_sym_u8_SQUOTE] = ACTIONS(359), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_L_DQUOTE] = ACTIONS(362), - [anon_sym_u_DQUOTE] = ACTIONS(362), - [anon_sym_U_DQUOTE] = ACTIONS(362), - [anon_sym_u8_DQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [anon_sym_NULL] = ACTIONS(368), - [anon_sym_nullptr] = ACTIONS(368), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(169), + [aux_sym_preproc_include_token1] = ACTIONS(171), + [aux_sym_preproc_def_token1] = ACTIONS(173), + [aux_sym_preproc_if_token1] = ACTIONS(175), + [aux_sym_preproc_if_token2] = ACTIONS(233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(179), + [aux_sym_preproc_ifdef_token2] = ACTIONS(179), + [aux_sym_preproc_else_token1] = ACTIONS(109), + [aux_sym_preproc_elif_token1] = ACTIONS(111), + [sym_preproc_directive] = ACTIONS(181), + [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(183), + [anon_sym_typedef] = ACTIONS(185), + [anon_sym_extern] = ACTIONS(187), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym___cdecl] = ACTIONS(37), + [anon_sym___clrcall] = ACTIONS(37), + [anon_sym___stdcall] = ACTIONS(37), + [anon_sym___fastcall] = ACTIONS(37), + [anon_sym___thiscall] = ACTIONS(37), + [anon_sym___vectorcall] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(45), + [sym_primitive_type] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(51), + [anon_sym_union] = ACTIONS(53), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [23] = { - [sym_preproc_include] = STATE(19), - [sym_preproc_def] = STATE(19), - [sym_preproc_function_def] = STATE(19), - [sym_preproc_call] = STATE(19), - [sym_preproc_if] = STATE(19), - [sym_preproc_ifdef] = STATE(19), - [sym_preproc_else] = STATE(1958), - [sym_preproc_elif] = STATE(1958), - [sym_function_definition] = STATE(19), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(818), + [24] = { + [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(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_case_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_goto_statement] = STATE(19), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1044), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(235), + [aux_sym_preproc_include_token1] = ACTIONS(238), + [aux_sym_preproc_def_token1] = ACTIONS(241), + [aux_sym_preproc_if_token1] = ACTIONS(244), + [aux_sym_preproc_if_token2] = ACTIONS(247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(249), + [aux_sym_preproc_ifdef_token2] = ACTIONS(249), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(247), + [aux_sym_preproc_elifdef_token1] = ACTIONS(247), + [aux_sym_preproc_elifdef_token2] = ACTIONS(247), + [sym_preproc_directive] = ACTIONS(252), + [anon_sym_LPAREN2] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(267), + [anon_sym_typedef] = ACTIONS(270), + [anon_sym_extern] = ACTIONS(273), + [anon_sym___attribute__] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(279), + [anon_sym___declspec] = ACTIONS(282), + [anon_sym___cdecl] = ACTIONS(285), + [anon_sym___clrcall] = ACTIONS(285), + [anon_sym___stdcall] = ACTIONS(285), + [anon_sym___fastcall] = ACTIONS(285), + [anon_sym___thiscall] = ACTIONS(285), + [anon_sym___vectorcall] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(288), + [anon_sym_signed] = ACTIONS(291), + [anon_sym_unsigned] = ACTIONS(291), + [anon_sym_long] = ACTIONS(291), + [anon_sym_short] = ACTIONS(291), + [anon_sym_static] = ACTIONS(294), + [anon_sym_auto] = ACTIONS(294), + [anon_sym_register] = ACTIONS(294), + [anon_sym_inline] = ACTIONS(294), + [anon_sym_thread_local] = ACTIONS(294), + [anon_sym_const] = ACTIONS(297), + [anon_sym_constexpr] = ACTIONS(297), + [anon_sym_volatile] = ACTIONS(297), + [anon_sym_restrict] = ACTIONS(297), + [anon_sym___restrict__] = ACTIONS(297), + [anon_sym__Atomic] = ACTIONS(297), + [anon_sym__Noreturn] = ACTIONS(297), + [anon_sym_noreturn] = ACTIONS(297), + [sym_primitive_type] = ACTIONS(300), + [anon_sym_enum] = ACTIONS(303), + [anon_sym_struct] = ACTIONS(306), + [anon_sym_union] = ACTIONS(309), + [anon_sym_if] = ACTIONS(312), + [anon_sym_switch] = ACTIONS(315), + [anon_sym_case] = ACTIONS(318), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(324), + [anon_sym_do] = ACTIONS(327), + [anon_sym_for] = ACTIONS(330), + [anon_sym_return] = ACTIONS(333), + [anon_sym_break] = ACTIONS(336), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_goto] = ACTIONS(342), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_sizeof] = ACTIONS(348), + [anon_sym_offsetof] = ACTIONS(351), + [anon_sym__Generic] = ACTIONS(354), + [anon_sym_asm] = ACTIONS(357), + [anon_sym___asm__] = ACTIONS(357), + [sym_number_literal] = ACTIONS(360), + [anon_sym_L_SQUOTE] = ACTIONS(363), + [anon_sym_u_SQUOTE] = ACTIONS(363), + [anon_sym_U_SQUOTE] = ACTIONS(363), + [anon_sym_u8_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_L_DQUOTE] = ACTIONS(366), + [anon_sym_u_DQUOTE] = ACTIONS(366), + [anon_sym_U_DQUOTE] = ACTIONS(366), + [anon_sym_u8_DQUOTE] = ACTIONS(366), + [anon_sym_DQUOTE] = ACTIONS(366), + [sym_true] = ACTIONS(369), + [sym_false] = ACTIONS(369), + [anon_sym_NULL] = ACTIONS(372), + [anon_sym_nullptr] = ACTIONS(372), + [sym_comment] = ACTIONS(3), + }, + [25] = { + [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(1805), + [sym_preproc_elif] = STATE(1805), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(371), + [aux_sym_preproc_if_token2] = ACTIONS(375), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -18350,80 +18596,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [24] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1896), - [sym_preproc_elif] = STATE(1896), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(818), + [26] = { + [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_preproc_else] = STATE(1867), + [sym_preproc_elif] = STATE(1867), + [sym_function_definition] = STATE(23), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(169), [aux_sym_preproc_include_token1] = ACTIONS(171), [aux_sym_preproc_def_token1] = ACTIONS(173), [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(373), + [aux_sym_preproc_if_token2] = ACTIONS(377), [aux_sym_preproc_ifdef_token1] = ACTIONS(179), [aux_sym_preproc_ifdef_token2] = ACTIONS(179), [aux_sym_preproc_else_token1] = ACTIONS(109), @@ -18505,33 +18751,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [25] = { + [27] = { [sym_preproc_include] = STATE(27), [sym_preproc_def] = STATE(27), [sym_preproc_function_def] = STATE(27), [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1752), - [sym_preproc_elif] = STATE(1752), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1352), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(818), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1043), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18545,45 +18789,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(27), [sym_continue_statement] = STATE(27), [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1020), + [sym_macro_type_specifier] = STATE(1009), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(379), + [aux_sym_preproc_include_token1] = ACTIONS(382), + [aux_sym_preproc_def_token1] = ACTIONS(385), + [aux_sym_preproc_if_token1] = ACTIONS(388), + [aux_sym_preproc_if_token2] = ACTIONS(247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(391), + [aux_sym_preproc_else_token1] = ACTIONS(247), + [aux_sym_preproc_elif_token1] = ACTIONS(247), + [sym_preproc_directive] = ACTIONS(394), + [anon_sym_LPAREN2] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_typedef] = ACTIONS(400), + [anon_sym_extern] = ACTIONS(403), + [anon_sym___attribute__] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(279), + [anon_sym___declspec] = ACTIONS(282), + [anon_sym___cdecl] = ACTIONS(285), + [anon_sym___clrcall] = ACTIONS(285), + [anon_sym___stdcall] = ACTIONS(285), + [anon_sym___fastcall] = ACTIONS(285), + [anon_sym___thiscall] = ACTIONS(285), + [anon_sym___vectorcall] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_signed] = ACTIONS(291), + [anon_sym_unsigned] = ACTIONS(291), + [anon_sym_long] = ACTIONS(291), + [anon_sym_short] = ACTIONS(291), + [anon_sym_static] = ACTIONS(294), + [anon_sym_auto] = ACTIONS(294), + [anon_sym_register] = ACTIONS(294), + [anon_sym_inline] = ACTIONS(294), + [anon_sym_thread_local] = ACTIONS(294), + [anon_sym_const] = ACTIONS(297), + [anon_sym_constexpr] = ACTIONS(297), + [anon_sym_volatile] = ACTIONS(297), + [anon_sym_restrict] = ACTIONS(297), + [anon_sym___restrict__] = ACTIONS(297), + [anon_sym__Atomic] = ACTIONS(297), + [anon_sym__Noreturn] = ACTIONS(297), + [anon_sym_noreturn] = ACTIONS(297), + [sym_primitive_type] = ACTIONS(300), + [anon_sym_enum] = ACTIONS(303), + [anon_sym_struct] = ACTIONS(306), + [anon_sym_union] = ACTIONS(309), + [anon_sym_if] = ACTIONS(409), + [anon_sym_switch] = ACTIONS(412), + [anon_sym_case] = ACTIONS(415), + [anon_sym_default] = ACTIONS(418), + [anon_sym_while] = ACTIONS(421), + [anon_sym_do] = ACTIONS(424), + [anon_sym_for] = ACTIONS(427), + [anon_sym_return] = ACTIONS(430), + [anon_sym_break] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(436), + [anon_sym_goto] = ACTIONS(439), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_sizeof] = ACTIONS(348), + [anon_sym_offsetof] = ACTIONS(351), + [anon_sym__Generic] = ACTIONS(354), + [anon_sym_asm] = ACTIONS(357), + [anon_sym___asm__] = ACTIONS(357), + [sym_number_literal] = ACTIONS(360), + [anon_sym_L_SQUOTE] = ACTIONS(363), + [anon_sym_u_SQUOTE] = ACTIONS(363), + [anon_sym_U_SQUOTE] = ACTIONS(363), + [anon_sym_u8_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_L_DQUOTE] = ACTIONS(366), + [anon_sym_u_DQUOTE] = ACTIONS(366), + [anon_sym_U_DQUOTE] = ACTIONS(366), + [anon_sym_u8_DQUOTE] = ACTIONS(366), + [anon_sym_DQUOTE] = ACTIONS(366), + [sym_true] = ACTIONS(369), + [sym_false] = ACTIONS(369), + [anon_sym_NULL] = ACTIONS(372), + [anon_sym_nullptr] = ACTIONS(372), + [sym_comment] = ACTIONS(3), + }, + [28] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [aux_sym_preproc_def_token1] = ACTIONS(446), + [aux_sym_preproc_if_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18591,9 +18985,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(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -18603,7 +18997,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(462), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -18625,17 +19020,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -18660,85 +19055,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [26] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(1753), - [sym_preproc_elif] = STATE(1753), - [sym_function_definition] = STATE(16), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(818), + [29] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_case_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_goto_statement] = STATE(16), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(169), - [aux_sym_preproc_include_token1] = ACTIONS(171), - [aux_sym_preproc_def_token1] = ACTIONS(173), - [aux_sym_preproc_if_token1] = ACTIONS(175), - [aux_sym_preproc_if_token2] = ACTIONS(377), - [aux_sym_preproc_ifdef_token1] = ACTIONS(179), - [aux_sym_preproc_ifdef_token2] = ACTIONS(179), - [aux_sym_preproc_else_token1] = ACTIONS(109), - [aux_sym_preproc_elif_token1] = ACTIONS(111), - [sym_preproc_directive] = ACTIONS(181), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(486), + [aux_sym_preproc_include_token1] = ACTIONS(489), + [aux_sym_preproc_def_token1] = ACTIONS(492), + [aux_sym_preproc_if_token1] = ACTIONS(495), + [aux_sym_preproc_ifdef_token1] = ACTIONS(498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(498), + [sym_preproc_directive] = ACTIONS(501), + [anon_sym_LPAREN2] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(504), + [anon_sym_typedef] = ACTIONS(507), + [anon_sym_extern] = ACTIONS(510), + [anon_sym___attribute__] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(279), + [anon_sym___declspec] = ACTIONS(282), + [anon_sym___cdecl] = ACTIONS(285), + [anon_sym___clrcall] = ACTIONS(285), + [anon_sym___stdcall] = ACTIONS(285), + [anon_sym___fastcall] = ACTIONS(285), + [anon_sym___thiscall] = ACTIONS(285), + [anon_sym___vectorcall] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(513), + [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_signed] = ACTIONS(291), + [anon_sym_unsigned] = ACTIONS(291), + [anon_sym_long] = ACTIONS(291), + [anon_sym_short] = ACTIONS(291), + [anon_sym_static] = ACTIONS(294), + [anon_sym_auto] = ACTIONS(294), + [anon_sym_register] = ACTIONS(294), + [anon_sym_inline] = ACTIONS(294), + [anon_sym_thread_local] = ACTIONS(294), + [anon_sym_const] = ACTIONS(297), + [anon_sym_constexpr] = ACTIONS(297), + [anon_sym_volatile] = ACTIONS(297), + [anon_sym_restrict] = ACTIONS(297), + [anon_sym___restrict__] = ACTIONS(297), + [anon_sym__Atomic] = ACTIONS(297), + [anon_sym__Noreturn] = ACTIONS(297), + [anon_sym_noreturn] = ACTIONS(297), + [sym_primitive_type] = ACTIONS(300), + [anon_sym_enum] = ACTIONS(303), + [anon_sym_struct] = ACTIONS(306), + [anon_sym_union] = ACTIONS(309), + [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(345), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_sizeof] = ACTIONS(348), + [anon_sym_offsetof] = ACTIONS(351), + [anon_sym__Generic] = ACTIONS(354), + [anon_sym_asm] = ACTIONS(357), + [anon_sym___asm__] = ACTIONS(357), + [sym_number_literal] = ACTIONS(360), + [anon_sym_L_SQUOTE] = ACTIONS(363), + [anon_sym_u_SQUOTE] = ACTIONS(363), + [anon_sym_U_SQUOTE] = ACTIONS(363), + [anon_sym_u8_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_L_DQUOTE] = ACTIONS(366), + [anon_sym_u_DQUOTE] = ACTIONS(366), + [anon_sym_U_DQUOTE] = ACTIONS(366), + [anon_sym_u8_DQUOTE] = ACTIONS(366), + [anon_sym_DQUOTE] = ACTIONS(366), + [sym_true] = ACTIONS(369), + [sym_false] = ACTIONS(369), + [anon_sym_NULL] = ACTIONS(372), + [anon_sym_nullptr] = ACTIONS(372), + [sym_comment] = ACTIONS(3), + }, + [30] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [aux_sym_preproc_def_token1] = ACTIONS(446), + [aux_sym_preproc_if_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -18746,9 +19287,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(183), - [anon_sym_typedef] = ACTIONS(185), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -18758,7 +19299,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(551), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -18780,17 +19322,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -18815,226 +19357,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [27] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1342), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(815), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1027), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(379), - [aux_sym_preproc_include_token1] = ACTIONS(382), - [aux_sym_preproc_def_token1] = ACTIONS(385), - [aux_sym_preproc_if_token1] = ACTIONS(388), - [aux_sym_preproc_if_token2] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(391), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(243), - [sym_preproc_directive] = ACTIONS(394), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_typedef] = ACTIONS(400), - [anon_sym_extern] = ACTIONS(403), - [anon_sym___attribute__] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(275), - [anon_sym___declspec] = ACTIONS(278), - [anon_sym___cdecl] = ACTIONS(281), - [anon_sym___clrcall] = ACTIONS(281), - [anon_sym___stdcall] = ACTIONS(281), - [anon_sym___fastcall] = ACTIONS(281), - [anon_sym___thiscall] = ACTIONS(281), - [anon_sym___vectorcall] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_signed] = ACTIONS(287), - [anon_sym_unsigned] = ACTIONS(287), - [anon_sym_long] = ACTIONS(287), - [anon_sym_short] = ACTIONS(287), - [anon_sym_static] = ACTIONS(290), - [anon_sym_auto] = ACTIONS(290), - [anon_sym_register] = ACTIONS(290), - [anon_sym_inline] = ACTIONS(290), - [anon_sym_thread_local] = ACTIONS(290), - [anon_sym_const] = ACTIONS(293), - [anon_sym_constexpr] = ACTIONS(293), - [anon_sym_volatile] = ACTIONS(293), - [anon_sym_restrict] = ACTIONS(293), - [anon_sym___restrict__] = ACTIONS(293), - [anon_sym__Atomic] = ACTIONS(293), - [anon_sym__Noreturn] = ACTIONS(293), - [anon_sym_noreturn] = ACTIONS(293), - [sym_primitive_type] = ACTIONS(296), - [anon_sym_enum] = ACTIONS(299), - [anon_sym_struct] = ACTIONS(302), - [anon_sym_union] = ACTIONS(305), - [anon_sym_if] = ACTIONS(409), - [anon_sym_switch] = ACTIONS(412), - [anon_sym_case] = ACTIONS(415), - [anon_sym_default] = ACTIONS(418), - [anon_sym_while] = ACTIONS(421), - [anon_sym_do] = ACTIONS(424), - [anon_sym_for] = ACTIONS(427), - [anon_sym_return] = ACTIONS(430), - [anon_sym_break] = ACTIONS(433), - [anon_sym_continue] = ACTIONS(436), - [anon_sym_goto] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_sizeof] = ACTIONS(344), - [anon_sym_offsetof] = ACTIONS(347), - [anon_sym__Generic] = ACTIONS(350), - [anon_sym_asm] = ACTIONS(353), - [anon_sym___asm__] = ACTIONS(353), - [sym_number_literal] = ACTIONS(356), - [anon_sym_L_SQUOTE] = ACTIONS(359), - [anon_sym_u_SQUOTE] = ACTIONS(359), - [anon_sym_U_SQUOTE] = ACTIONS(359), - [anon_sym_u8_SQUOTE] = ACTIONS(359), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_L_DQUOTE] = ACTIONS(362), - [anon_sym_u_DQUOTE] = ACTIONS(362), - [anon_sym_U_DQUOTE] = ACTIONS(362), - [anon_sym_u8_DQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [anon_sym_NULL] = ACTIONS(368), - [anon_sym_nullptr] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - }, - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(818), + [31] = { + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19062,7 +19451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(553), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -19119,73 +19508,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [29] = { - [sym_preproc_include] = STATE(44), - [sym_preproc_def] = STATE(44), - [sym_preproc_function_def] = STATE(44), - [sym_preproc_call] = STATE(44), - [sym_preproc_if] = STATE(44), - [sym_preproc_ifdef] = STATE(44), - [sym_function_definition] = STATE(44), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(818), + [32] = { + [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(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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_case_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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19213,7 +19602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(555), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -19270,73 +19659,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [30] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(818), + [33] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19364,7 +19753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(557), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -19421,73 +19810,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [31] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(818), + [34] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19515,7 +19904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(559), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -19572,73 +19961,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [32] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(818), + [35] = { + [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(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19666,7 +20055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(561), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -19723,73 +20112,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [33] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(818), + [36] = { + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -19817,7 +20206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(563), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -19874,224 +20263,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [34] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1340), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(818), + [37] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), [sym__type_specifier] = STATE(1045), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(496), - [aux_sym_preproc_include_token1] = ACTIONS(499), - [aux_sym_preproc_def_token1] = ACTIONS(502), - [aux_sym_preproc_if_token1] = ACTIONS(505), - [aux_sym_preproc_if_token2] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(508), - [aux_sym_preproc_ifdef_token2] = ACTIONS(508), - [sym_preproc_directive] = ACTIONS(511), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(514), - [anon_sym_typedef] = ACTIONS(517), - [anon_sym_extern] = ACTIONS(520), - [anon_sym___attribute__] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(275), - [anon_sym___declspec] = ACTIONS(278), - [anon_sym___cdecl] = ACTIONS(281), - [anon_sym___clrcall] = ACTIONS(281), - [anon_sym___stdcall] = ACTIONS(281), - [anon_sym___fastcall] = ACTIONS(281), - [anon_sym___thiscall] = ACTIONS(281), - [anon_sym___vectorcall] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_signed] = ACTIONS(287), - [anon_sym_unsigned] = ACTIONS(287), - [anon_sym_long] = ACTIONS(287), - [anon_sym_short] = ACTIONS(287), - [anon_sym_static] = ACTIONS(290), - [anon_sym_auto] = ACTIONS(290), - [anon_sym_register] = ACTIONS(290), - [anon_sym_inline] = ACTIONS(290), - [anon_sym_thread_local] = ACTIONS(290), - [anon_sym_const] = ACTIONS(293), - [anon_sym_constexpr] = ACTIONS(293), - [anon_sym_volatile] = ACTIONS(293), - [anon_sym_restrict] = ACTIONS(293), - [anon_sym___restrict__] = ACTIONS(293), - [anon_sym__Atomic] = ACTIONS(293), - [anon_sym__Noreturn] = ACTIONS(293), - [anon_sym_noreturn] = ACTIONS(293), - [sym_primitive_type] = ACTIONS(296), - [anon_sym_enum] = ACTIONS(299), - [anon_sym_struct] = ACTIONS(302), - [anon_sym_union] = ACTIONS(305), - [anon_sym_if] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(529), - [anon_sym_case] = ACTIONS(532), - [anon_sym_default] = ACTIONS(535), - [anon_sym_while] = ACTIONS(538), - [anon_sym_do] = ACTIONS(541), - [anon_sym_for] = ACTIONS(544), - [anon_sym_return] = ACTIONS(547), - [anon_sym_break] = ACTIONS(550), - [anon_sym_continue] = ACTIONS(553), - [anon_sym_goto] = ACTIONS(556), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_sizeof] = ACTIONS(344), - [anon_sym_offsetof] = ACTIONS(347), - [anon_sym__Generic] = ACTIONS(350), - [anon_sym_asm] = ACTIONS(353), - [anon_sym___asm__] = ACTIONS(353), - [sym_number_literal] = ACTIONS(356), - [anon_sym_L_SQUOTE] = ACTIONS(359), - [anon_sym_u_SQUOTE] = ACTIONS(359), - [anon_sym_U_SQUOTE] = ACTIONS(359), - [anon_sym_u8_SQUOTE] = ACTIONS(359), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_L_DQUOTE] = ACTIONS(362), - [anon_sym_u_DQUOTE] = ACTIONS(362), - [anon_sym_U_DQUOTE] = ACTIONS(362), - [anon_sym_u8_DQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [anon_sym_NULL] = ACTIONS(368), - [anon_sym_nullptr] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - }, - [35] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -20119,7 +20357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_RBRACE] = ACTIONS(565), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -20176,73 +20414,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [36] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_function_definition] = STATE(30), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(818), + [38] = { + [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(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -20270,7 +20508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(567), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -20327,224 +20565,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [37] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(563), - [aux_sym_preproc_include_token1] = ACTIONS(566), - [aux_sym_preproc_def_token1] = ACTIONS(569), - [aux_sym_preproc_if_token1] = ACTIONS(572), - [aux_sym_preproc_ifdef_token1] = ACTIONS(575), - [aux_sym_preproc_ifdef_token2] = ACTIONS(575), - [sym_preproc_directive] = ACTIONS(578), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_typedef] = ACTIONS(584), - [anon_sym_extern] = ACTIONS(587), - [anon_sym___attribute__] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(275), - [anon_sym___declspec] = ACTIONS(278), - [anon_sym___cdecl] = ACTIONS(281), - [anon_sym___clrcall] = ACTIONS(281), - [anon_sym___stdcall] = ACTIONS(281), - [anon_sym___fastcall] = ACTIONS(281), - [anon_sym___thiscall] = ACTIONS(281), - [anon_sym___vectorcall] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_signed] = ACTIONS(287), - [anon_sym_unsigned] = ACTIONS(287), - [anon_sym_long] = ACTIONS(287), - [anon_sym_short] = ACTIONS(287), - [anon_sym_static] = ACTIONS(290), - [anon_sym_auto] = ACTIONS(290), - [anon_sym_register] = ACTIONS(290), - [anon_sym_inline] = ACTIONS(290), - [anon_sym_thread_local] = ACTIONS(290), - [anon_sym_const] = ACTIONS(293), - [anon_sym_constexpr] = ACTIONS(293), - [anon_sym_volatile] = ACTIONS(293), - [anon_sym_restrict] = ACTIONS(293), - [anon_sym___restrict__] = ACTIONS(293), - [anon_sym__Atomic] = ACTIONS(293), - [anon_sym__Noreturn] = ACTIONS(293), - [anon_sym_noreturn] = ACTIONS(293), - [sym_primitive_type] = ACTIONS(296), - [anon_sym_enum] = ACTIONS(299), - [anon_sym_struct] = ACTIONS(302), - [anon_sym_union] = ACTIONS(305), - [anon_sym_if] = ACTIONS(595), - [anon_sym_switch] = ACTIONS(598), - [anon_sym_case] = ACTIONS(601), - [anon_sym_default] = ACTIONS(604), - [anon_sym_while] = ACTIONS(607), - [anon_sym_do] = ACTIONS(610), - [anon_sym_for] = ACTIONS(613), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(622), - [anon_sym_goto] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(341), - [anon_sym_sizeof] = ACTIONS(344), - [anon_sym_offsetof] = ACTIONS(347), - [anon_sym__Generic] = ACTIONS(350), - [anon_sym_asm] = ACTIONS(353), - [anon_sym___asm__] = ACTIONS(353), - [sym_number_literal] = ACTIONS(356), - [anon_sym_L_SQUOTE] = ACTIONS(359), - [anon_sym_u_SQUOTE] = ACTIONS(359), - [anon_sym_U_SQUOTE] = ACTIONS(359), - [anon_sym_u8_SQUOTE] = ACTIONS(359), - [anon_sym_SQUOTE] = ACTIONS(359), - [anon_sym_L_DQUOTE] = ACTIONS(362), - [anon_sym_u_DQUOTE] = ACTIONS(362), - [anon_sym_U_DQUOTE] = ACTIONS(362), - [anon_sym_u8_DQUOTE] = ACTIONS(362), - [anon_sym_DQUOTE] = ACTIONS(362), - [sym_true] = ACTIONS(365), - [sym_false] = ACTIONS(365), - [anon_sym_NULL] = ACTIONS(368), - [anon_sym_nullptr] = ACTIONS(368), - [sym_comment] = ACTIONS(3), - }, - [38] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(818), + [39] = { + [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(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -20572,7 +20659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(569), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -20629,73 +20716,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [39] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(818), + [40] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -20723,7 +20810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(571), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -20780,81 +20867,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [40] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1340), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(818), + [41] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), [sym__type_specifier] = STATE(1045), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(632), - [aux_sym_preproc_include_token1] = ACTIONS(634), - [aux_sym_preproc_def_token1] = ACTIONS(636), - [aux_sym_preproc_if_token1] = ACTIONS(638), - [aux_sym_preproc_if_token2] = ACTIONS(640), - [aux_sym_preproc_ifdef_token1] = ACTIONS(642), - [aux_sym_preproc_ifdef_token2] = ACTIONS(642), - [sym_preproc_directive] = ACTIONS(644), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [aux_sym_preproc_def_token1] = ACTIONS(446), + [aux_sym_preproc_if_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20862,9 +20948,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(646), - [anon_sym_typedef] = ACTIONS(648), - [anon_sym_extern] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -20874,7 +20960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(573), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -20896,17 +20983,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -20931,73 +21018,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [41] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(818), + [42] = { + [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), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21025,7 +21112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(575), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -21082,73 +21169,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [42] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(818), + [43] = { + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_case_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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21176,7 +21263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(577), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -21233,81 +21320,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [43] = { - [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), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1340), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(818), + [44] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(814), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), [sym__type_specifier] = STATE(1045), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(632), - [aux_sym_preproc_include_token1] = ACTIONS(634), - [aux_sym_preproc_def_token1] = ACTIONS(636), - [aux_sym_preproc_if_token1] = ACTIONS(638), - [aux_sym_preproc_if_token2] = ACTIONS(680), - [aux_sym_preproc_ifdef_token1] = ACTIONS(642), - [aux_sym_preproc_ifdef_token2] = ACTIONS(642), - [sym_preproc_directive] = ACTIONS(644), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(442), + [aux_sym_preproc_include_token1] = ACTIONS(444), + [aux_sym_preproc_def_token1] = ACTIONS(446), + [aux_sym_preproc_if_token1] = ACTIONS(448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21315,9 +21401,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(646), - [anon_sym_typedef] = ACTIONS(648), - [anon_sym_extern] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -21327,7 +21413,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(579), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -21349,17 +21436,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -21384,73 +21471,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [44] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(818), + [45] = { + [sym_preproc_include] = STATE(46), + [sym_preproc_def] = STATE(46), + [sym_preproc_function_def] = STATE(46), + [sym_preproc_call] = STATE(46), + [sym_preproc_if] = STATE(46), + [sym_preproc_ifdef] = STATE(46), + [sym_function_definition] = STATE(46), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(46), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21478,7 +21565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(581), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -21535,73 +21622,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [45] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(818), + [46] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21629,7 +21716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(583), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -21686,73 +21773,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [46] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(818), + [47] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21780,7 +21867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(585), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -21837,80 +21924,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [47] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(818), + [48] = { + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1048), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(442), - [aux_sym_preproc_include_token1] = ACTIONS(444), - [aux_sym_preproc_def_token1] = ACTIONS(446), - [aux_sym_preproc_if_token1] = ACTIONS(448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(48), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(587), + [aux_sym_preproc_include_token1] = ACTIONS(590), + [aux_sym_preproc_def_token1] = ACTIONS(593), + [aux_sym_preproc_if_token1] = ACTIONS(596), + [aux_sym_preproc_if_token2] = ACTIONS(247), + [aux_sym_preproc_ifdef_token1] = ACTIONS(599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(599), + [sym_preproc_directive] = ACTIONS(602), + [anon_sym_LPAREN2] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_DASH] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(261), + [anon_sym_STAR] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(264), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_typedef] = ACTIONS(608), + [anon_sym_extern] = ACTIONS(611), + [anon_sym___attribute__] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(279), + [anon_sym___declspec] = ACTIONS(282), + [anon_sym___cdecl] = ACTIONS(285), + [anon_sym___clrcall] = ACTIONS(285), + [anon_sym___stdcall] = ACTIONS(285), + [anon_sym___fastcall] = ACTIONS(285), + [anon_sym___thiscall] = ACTIONS(285), + [anon_sym___vectorcall] = ACTIONS(285), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_signed] = ACTIONS(291), + [anon_sym_unsigned] = ACTIONS(291), + [anon_sym_long] = ACTIONS(291), + [anon_sym_short] = ACTIONS(291), + [anon_sym_static] = ACTIONS(294), + [anon_sym_auto] = ACTIONS(294), + [anon_sym_register] = ACTIONS(294), + [anon_sym_inline] = ACTIONS(294), + [anon_sym_thread_local] = ACTIONS(294), + [anon_sym_const] = ACTIONS(297), + [anon_sym_constexpr] = ACTIONS(297), + [anon_sym_volatile] = ACTIONS(297), + [anon_sym_restrict] = ACTIONS(297), + [anon_sym___restrict__] = ACTIONS(297), + [anon_sym__Atomic] = ACTIONS(297), + [anon_sym__Noreturn] = ACTIONS(297), + [anon_sym_noreturn] = ACTIONS(297), + [sym_primitive_type] = ACTIONS(300), + [anon_sym_enum] = ACTIONS(303), + [anon_sym_struct] = ACTIONS(306), + [anon_sym_union] = ACTIONS(309), + [anon_sym_if] = ACTIONS(617), + [anon_sym_switch] = ACTIONS(620), + [anon_sym_case] = ACTIONS(623), + [anon_sym_default] = ACTIONS(626), + [anon_sym_while] = ACTIONS(629), + [anon_sym_do] = ACTIONS(632), + [anon_sym_for] = ACTIONS(635), + [anon_sym_return] = ACTIONS(638), + [anon_sym_break] = ACTIONS(641), + [anon_sym_continue] = ACTIONS(644), + [anon_sym_goto] = ACTIONS(647), + [anon_sym_DASH_DASH] = ACTIONS(345), + [anon_sym_PLUS_PLUS] = ACTIONS(345), + [anon_sym_sizeof] = ACTIONS(348), + [anon_sym_offsetof] = ACTIONS(351), + [anon_sym__Generic] = ACTIONS(354), + [anon_sym_asm] = ACTIONS(357), + [anon_sym___asm__] = ACTIONS(357), + [sym_number_literal] = ACTIONS(360), + [anon_sym_L_SQUOTE] = ACTIONS(363), + [anon_sym_u_SQUOTE] = ACTIONS(363), + [anon_sym_U_SQUOTE] = ACTIONS(363), + [anon_sym_u8_SQUOTE] = ACTIONS(363), + [anon_sym_SQUOTE] = ACTIONS(363), + [anon_sym_L_DQUOTE] = ACTIONS(366), + [anon_sym_u_DQUOTE] = ACTIONS(366), + [anon_sym_U_DQUOTE] = ACTIONS(366), + [anon_sym_u8_DQUOTE] = ACTIONS(366), + [anon_sym_DQUOTE] = ACTIONS(366), + [sym_true] = ACTIONS(369), + [sym_false] = ACTIONS(369), + [anon_sym_NULL] = ACTIONS(372), + [anon_sym_nullptr] = ACTIONS(372), + [sym_comment] = ACTIONS(3), + }, + [49] = { + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1048), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_case_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(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(50), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(650), + [aux_sym_preproc_include_token1] = ACTIONS(652), + [aux_sym_preproc_def_token1] = ACTIONS(654), + [aux_sym_preproc_if_token1] = ACTIONS(656), + [aux_sym_preproc_if_token2] = ACTIONS(658), + [aux_sym_preproc_ifdef_token1] = ACTIONS(660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(660), + [sym_preproc_directive] = ACTIONS(662), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -21918,9 +22157,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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_typedef] = ACTIONS(666), + [anon_sym_extern] = ACTIONS(668), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -21930,8 +22169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -21953,17 +22191,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -21988,231 +22226,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [48] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(442), - [aux_sym_preproc_include_token1] = ACTIONS(444), - [aux_sym_preproc_def_token1] = ACTIONS(446), - [aux_sym_preproc_if_token1] = ACTIONS(448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), - [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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(690), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = 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_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [49] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(818), + [50] = { + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1048), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(442), - [aux_sym_preproc_include_token1] = ACTIONS(444), - [aux_sym_preproc_def_token1] = ACTIONS(446), - [aux_sym_preproc_if_token1] = ACTIONS(448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(48), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [sym_identifier] = ACTIONS(650), + [aux_sym_preproc_include_token1] = ACTIONS(652), + [aux_sym_preproc_def_token1] = ACTIONS(654), + [aux_sym_preproc_if_token1] = ACTIONS(656), + [aux_sym_preproc_if_token2] = ACTIONS(694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(660), + [sym_preproc_directive] = ACTIONS(662), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -22220,9 +22308,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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_typedef] = ACTIONS(666), + [anon_sym_extern] = ACTIONS(668), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -22232,8 +22320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -22255,17 +22342,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -22290,73 +22377,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [50] = { - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(818), + [51] = { + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1357), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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_case_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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(813), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1045), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_case_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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -22384,7 +22471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(696), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -22441,224 +22528,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [51] = { - [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(818), - [sym__declaration_specifiers] = STATE(1356), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(818), + [52] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1345), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_declspec_modifier] = STATE(819), [sym_ms_call_modifier] = STATE(816), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1040), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1049), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym__top_level_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_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(1191), + [sym__expression_not_binary] = STATE(1196), + [sym_conditional_expression] = STATE(1196), + [sym_assignment_expression] = STATE(1196), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(1196), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(1196), + [sym_cast_expression] = STATE(1196), + [sym_sizeof_expression] = STATE(1196), + [sym_offsetof_expression] = STATE(1196), + [sym_generic_expression] = STATE(1196), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(1196), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(1196), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [sym_identifier] = ACTIONS(442), - [aux_sym_preproc_include_token1] = ACTIONS(444), - [aux_sym_preproc_def_token1] = ACTIONS(446), - [aux_sym_preproc_if_token1] = ACTIONS(448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), - [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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(37), - [anon_sym___clrcall] = ACTIONS(37), - [anon_sym___stdcall] = ACTIONS(37), - [anon_sym___fastcall] = ACTIONS(37), - [anon_sym___thiscall] = ACTIONS(37), - [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = 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_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [sym_char_literal] = STATE(1196), + [sym_concatenated_string] = STATE(1196), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(1196), + [sym__empty_declaration] = STATE(52), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [ts_builtin_sym_end] = ACTIONS(698), + [sym_identifier] = ACTIONS(700), + [aux_sym_preproc_include_token1] = ACTIONS(703), + [aux_sym_preproc_def_token1] = ACTIONS(706), + [aux_sym_preproc_if_token1] = ACTIONS(709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(712), + [sym_preproc_directive] = ACTIONS(715), + [anon_sym_LPAREN2] = ACTIONS(718), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_typedef] = ACTIONS(730), + [anon_sym_extern] = ACTIONS(733), + [anon_sym___attribute__] = ACTIONS(736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(739), + [anon_sym___declspec] = ACTIONS(742), + [anon_sym___cdecl] = ACTIONS(745), + [anon_sym___clrcall] = ACTIONS(745), + [anon_sym___stdcall] = ACTIONS(745), + [anon_sym___fastcall] = ACTIONS(745), + [anon_sym___thiscall] = ACTIONS(745), + [anon_sym___vectorcall] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_signed] = ACTIONS(751), + [anon_sym_unsigned] = ACTIONS(751), + [anon_sym_long] = ACTIONS(751), + [anon_sym_short] = ACTIONS(751), + [anon_sym_static] = ACTIONS(754), + [anon_sym_auto] = ACTIONS(754), + [anon_sym_register] = ACTIONS(754), + [anon_sym_inline] = ACTIONS(754), + [anon_sym_thread_local] = ACTIONS(754), + [anon_sym_const] = ACTIONS(757), + [anon_sym_constexpr] = ACTIONS(757), + [anon_sym_volatile] = ACTIONS(757), + [anon_sym_restrict] = ACTIONS(757), + [anon_sym___restrict__] = ACTIONS(757), + [anon_sym__Atomic] = ACTIONS(757), + [anon_sym__Noreturn] = ACTIONS(757), + [anon_sym_noreturn] = ACTIONS(757), + [sym_primitive_type] = ACTIONS(760), + [anon_sym_enum] = ACTIONS(763), + [anon_sym_struct] = ACTIONS(766), + [anon_sym_union] = ACTIONS(769), + [anon_sym_if] = ACTIONS(772), + [anon_sym_switch] = ACTIONS(775), + [anon_sym_case] = ACTIONS(778), + [anon_sym_default] = ACTIONS(781), + [anon_sym_while] = ACTIONS(784), + [anon_sym_do] = ACTIONS(787), + [anon_sym_for] = ACTIONS(790), + [anon_sym_return] = ACTIONS(793), + [anon_sym_break] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(799), + [anon_sym_goto] = ACTIONS(802), + [anon_sym_DASH_DASH] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(805), + [anon_sym_sizeof] = ACTIONS(808), + [anon_sym_offsetof] = ACTIONS(811), + [anon_sym__Generic] = ACTIONS(814), + [anon_sym_asm] = ACTIONS(817), + [anon_sym___asm__] = ACTIONS(817), + [sym_number_literal] = ACTIONS(820), + [anon_sym_L_SQUOTE] = ACTIONS(823), + [anon_sym_u_SQUOTE] = ACTIONS(823), + [anon_sym_U_SQUOTE] = ACTIONS(823), + [anon_sym_u8_SQUOTE] = ACTIONS(823), + [anon_sym_SQUOTE] = ACTIONS(823), + [anon_sym_L_DQUOTE] = ACTIONS(826), + [anon_sym_u_DQUOTE] = ACTIONS(826), + [anon_sym_U_DQUOTE] = ACTIONS(826), + [anon_sym_u8_DQUOTE] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym_true] = ACTIONS(829), + [sym_false] = ACTIONS(829), + [anon_sym_NULL] = ACTIONS(832), + [anon_sym_nullptr] = ACTIONS(832), [sym_comment] = ACTIONS(3), }, - [52] = { - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(818), + [53] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(819), [sym__declaration_specifiers] = STATE(1345), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(818), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(813), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1030), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym__top_level_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_case_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(1177), - [sym__expression_not_binary] = STATE(1207), - [sym_conditional_expression] = STATE(1207), - [sym_assignment_expression] = STATE(1207), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(1049), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym__top_level_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_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(1191), + [sym__expression_not_binary] = STATE(1196), + [sym_conditional_expression] = STATE(1196), + [sym_assignment_expression] = STATE(1196), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(1207), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(1207), - [sym_cast_expression] = STATE(1207), - [sym_sizeof_expression] = STATE(1207), - [sym_offsetof_expression] = STATE(1207), - [sym_generic_expression] = STATE(1207), + [sym_unary_expression] = STATE(1196), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(1196), + [sym_cast_expression] = STATE(1196), + [sym_sizeof_expression] = STATE(1196), + [sym_offsetof_expression] = STATE(1196), + [sym_generic_expression] = STATE(1196), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(1207), + [sym_gnu_asm_expression] = STATE(1196), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(1207), + [sym_compound_literal_expression] = STATE(1196), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(1207), - [sym_concatenated_string] = STATE(1207), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(1207), - [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [ts_builtin_sym_end] = ACTIONS(698), + [sym_char_literal] = STATE(1196), + [sym_concatenated_string] = STATE(1196), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(1196), + [sym__empty_declaration] = STATE(52), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [ts_builtin_sym_end] = ACTIONS(835), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), [aux_sym_preproc_def_token1] = ACTIONS(11), @@ -22741,211 +22826,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [53] = { - [sym_preproc_include] = STATE(53), - [sym_preproc_def] = STATE(53), - [sym_preproc_function_def] = STATE(53), - [sym_preproc_call] = STATE(53), - [sym_preproc_if] = STATE(53), - [sym_preproc_ifdef] = STATE(53), - [sym_function_definition] = STATE(53), - [sym_declaration] = STATE(53), - [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1345), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_ms_call_modifier] = STATE(813), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(1030), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(53), - [sym_labeled_statement] = STATE(53), - [sym__top_level_expression_statement] = STATE(53), - [sym_if_statement] = STATE(53), - [sym_switch_statement] = STATE(53), - [sym_case_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(1177), - [sym__expression_not_binary] = STATE(1207), - [sym_conditional_expression] = STATE(1207), - [sym_assignment_expression] = STATE(1207), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(1207), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(1207), - [sym_cast_expression] = STATE(1207), - [sym_sizeof_expression] = STATE(1207), - [sym_offsetof_expression] = STATE(1207), - [sym_generic_expression] = STATE(1207), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(1207), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(1207), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(1207), - [sym_concatenated_string] = STATE(1207), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(1207), - [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [ts_builtin_sym_end] = ACTIONS(700), - [sym_identifier] = ACTIONS(702), - [aux_sym_preproc_include_token1] = ACTIONS(705), - [aux_sym_preproc_def_token1] = ACTIONS(708), - [aux_sym_preproc_if_token1] = ACTIONS(711), - [aux_sym_preproc_ifdef_token1] = ACTIONS(714), - [aux_sym_preproc_ifdef_token2] = ACTIONS(714), - [sym_preproc_directive] = ACTIONS(717), - [anon_sym_LPAREN2] = ACTIONS(720), - [anon_sym_BANG] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_DASH] = ACTIONS(726), - [anon_sym_PLUS] = ACTIONS(726), - [anon_sym_STAR] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_typedef] = ACTIONS(732), - [anon_sym_extern] = ACTIONS(735), - [anon_sym___attribute__] = ACTIONS(738), - [anon_sym_LBRACK_LBRACK] = ACTIONS(741), - [anon_sym___declspec] = ACTIONS(744), - [anon_sym___cdecl] = ACTIONS(747), - [anon_sym___clrcall] = ACTIONS(747), - [anon_sym___stdcall] = ACTIONS(747), - [anon_sym___fastcall] = ACTIONS(747), - [anon_sym___thiscall] = ACTIONS(747), - [anon_sym___vectorcall] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_signed] = ACTIONS(753), - [anon_sym_unsigned] = ACTIONS(753), - [anon_sym_long] = ACTIONS(753), - [anon_sym_short] = ACTIONS(753), - [anon_sym_static] = ACTIONS(756), - [anon_sym_auto] = ACTIONS(756), - [anon_sym_register] = ACTIONS(756), - [anon_sym_inline] = ACTIONS(756), - [anon_sym_thread_local] = ACTIONS(756), - [anon_sym_const] = ACTIONS(759), - [anon_sym_constexpr] = ACTIONS(759), - [anon_sym_volatile] = ACTIONS(759), - [anon_sym_restrict] = ACTIONS(759), - [anon_sym___restrict__] = ACTIONS(759), - [anon_sym__Atomic] = ACTIONS(759), - [anon_sym__Noreturn] = ACTIONS(759), - [anon_sym_noreturn] = ACTIONS(759), - [sym_primitive_type] = ACTIONS(762), - [anon_sym_enum] = ACTIONS(765), - [anon_sym_struct] = ACTIONS(768), - [anon_sym_union] = ACTIONS(771), - [anon_sym_if] = ACTIONS(774), - [anon_sym_switch] = ACTIONS(777), - [anon_sym_case] = ACTIONS(780), - [anon_sym_default] = ACTIONS(783), - [anon_sym_while] = ACTIONS(786), - [anon_sym_do] = ACTIONS(789), - [anon_sym_for] = ACTIONS(792), - [anon_sym_return] = ACTIONS(795), - [anon_sym_break] = ACTIONS(798), - [anon_sym_continue] = ACTIONS(801), - [anon_sym_goto] = ACTIONS(804), - [anon_sym_DASH_DASH] = ACTIONS(807), - [anon_sym_PLUS_PLUS] = ACTIONS(807), - [anon_sym_sizeof] = ACTIONS(810), - [anon_sym_offsetof] = ACTIONS(813), - [anon_sym__Generic] = ACTIONS(816), - [anon_sym_asm] = ACTIONS(819), - [anon_sym___asm__] = ACTIONS(819), - [sym_number_literal] = ACTIONS(822), - [anon_sym_L_SQUOTE] = ACTIONS(825), - [anon_sym_u_SQUOTE] = ACTIONS(825), - [anon_sym_U_SQUOTE] = ACTIONS(825), - [anon_sym_u8_SQUOTE] = ACTIONS(825), - [anon_sym_SQUOTE] = ACTIONS(825), - [anon_sym_L_DQUOTE] = ACTIONS(828), - [anon_sym_u_DQUOTE] = ACTIONS(828), - [anon_sym_U_DQUOTE] = ACTIONS(828), - [anon_sym_u8_DQUOTE] = ACTIONS(828), - [anon_sym_DQUOTE] = ACTIONS(828), - [sym_true] = ACTIONS(831), - [sym_false] = ACTIONS(831), - [anon_sym_NULL] = ACTIONS(834), - [anon_sym_nullptr] = ACTIONS(834), - [sym_comment] = ACTIONS(3), - }, [54] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(818), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1351), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(56), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(57), [sym_identifier] = ACTIONS(837), [aux_sym_preproc_include_token1] = ACTIONS(839), [aux_sym_preproc_def_token1] = ACTIONS(839), @@ -23036,218 +22972,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [55] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(841), - [aux_sym_preproc_include_token1] = ACTIONS(844), - [aux_sym_preproc_def_token1] = ACTIONS(844), - [aux_sym_preproc_if_token1] = ACTIONS(844), - [aux_sym_preproc_if_token2] = ACTIONS(844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(844), - [aux_sym_preproc_else_token1] = ACTIONS(844), - [aux_sym_preproc_elif_token1] = ACTIONS(844), - [aux_sym_preproc_elifdef_token1] = ACTIONS(844), - [aux_sym_preproc_elifdef_token2] = ACTIONS(844), - [sym_preproc_directive] = ACTIONS(844), - [anon_sym_LPAREN2] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(858), - [anon_sym_typedef] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(864), - [anon_sym___attribute__] = ACTIONS(867), - [anon_sym_LBRACK_LBRACK] = ACTIONS(870), - [anon_sym___declspec] = ACTIONS(873), - [anon_sym___cdecl] = ACTIONS(844), - [anon_sym___clrcall] = ACTIONS(844), - [anon_sym___stdcall] = ACTIONS(844), - [anon_sym___fastcall] = ACTIONS(844), - [anon_sym___thiscall] = ACTIONS(844), - [anon_sym___vectorcall] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_signed] = ACTIONS(879), - [anon_sym_unsigned] = ACTIONS(879), - [anon_sym_long] = ACTIONS(879), - [anon_sym_short] = ACTIONS(879), - [anon_sym_static] = ACTIONS(864), - [anon_sym_auto] = ACTIONS(864), - [anon_sym_register] = ACTIONS(864), - [anon_sym_inline] = ACTIONS(864), - [anon_sym_thread_local] = ACTIONS(864), - [anon_sym_const] = ACTIONS(882), - [anon_sym_constexpr] = ACTIONS(882), - [anon_sym_volatile] = ACTIONS(882), - [anon_sym_restrict] = ACTIONS(882), - [anon_sym___restrict__] = ACTIONS(882), - [anon_sym__Atomic] = ACTIONS(882), - [anon_sym__Noreturn] = ACTIONS(882), - [anon_sym_noreturn] = ACTIONS(882), - [sym_primitive_type] = ACTIONS(885), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(897), - [anon_sym_else] = ACTIONS(844), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(844), - [anon_sym_default] = ACTIONS(844), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(906), - [anon_sym_for] = ACTIONS(909), - [anon_sym_return] = ACTIONS(912), - [anon_sym_break] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_goto] = ACTIONS(921), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(927), - [anon_sym_offsetof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(933), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(939), - [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(945), - [anon_sym_u_DQUOTE] = ACTIONS(945), - [anon_sym_U_DQUOTE] = ACTIONS(945), - [anon_sym_u8_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [anon_sym_NULL] = ACTIONS(951), - [anon_sym_nullptr] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - }, - [56] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(818), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1351), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(55), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(54), [sym_identifier] = ACTIONS(837), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [aux_sym_preproc_else_token1] = ACTIONS(954), - [aux_sym_preproc_elif_token1] = ACTIONS(954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(954), - [aux_sym_preproc_elifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), + [aux_sym_preproc_include_token1] = ACTIONS(841), + [aux_sym_preproc_def_token1] = ACTIONS(841), + [aux_sym_preproc_if_token1] = ACTIONS(841), + [aux_sym_preproc_if_token2] = ACTIONS(841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(841), + [aux_sym_preproc_else_token1] = ACTIONS(841), + [aux_sym_preproc_elif_token1] = ACTIONS(841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(841), + [aux_sym_preproc_elifdef_token2] = ACTIONS(841), + [sym_preproc_directive] = ACTIONS(841), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23261,12 +23052,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), + [anon_sym___cdecl] = ACTIONS(841), + [anon_sym___clrcall] = ACTIONS(841), + [anon_sym___stdcall] = ACTIONS(841), + [anon_sym___fastcall] = ACTIONS(841), + [anon_sym___thiscall] = ACTIONS(841), + [anon_sym___vectorcall] = ACTIONS(841), [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), @@ -23290,10 +23081,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(954), + [anon_sym_else] = ACTIONS(841), [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), + [anon_sym_case] = ACTIONS(841), + [anon_sym_default] = ACTIONS(841), [anon_sym_while] = ACTIONS(133), [anon_sym_do] = ACTIONS(135), [anon_sym_for] = ACTIONS(137), @@ -23325,22 +23116,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [57] = { + [56] = { [sym_declaration] = STATE(58), [sym_type_definition] = STATE(58), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(818), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1351), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_declspec_modifier] = STATE(819), [sym_compound_statement] = STATE(58), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), [sym_attributed_statement] = STATE(58), [sym_labeled_statement] = STATE(58), [sym_expression_statement] = STATE(58), @@ -23353,46 +23144,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(58), [sym_continue_statement] = STATE(58), [sym_goto_statement] = STATE(58), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [aux_sym_case_statement_repeat1] = STATE(58), [sym_identifier] = ACTIONS(837), - [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), - [aux_sym_preproc_else_token1] = ACTIONS(956), - [aux_sym_preproc_elif_token1] = ACTIONS(956), - [aux_sym_preproc_elifdef_token1] = ACTIONS(956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(843), + [aux_sym_preproc_def_token1] = ACTIONS(843), + [aux_sym_preproc_if_token1] = ACTIONS(843), + [aux_sym_preproc_if_token2] = ACTIONS(843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(843), + [aux_sym_preproc_else_token1] = ACTIONS(843), + [aux_sym_preproc_elif_token1] = ACTIONS(843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(843), + [sym_preproc_directive] = ACTIONS(843), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23406,12 +23197,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [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___cdecl] = ACTIONS(843), + [anon_sym___clrcall] = ACTIONS(843), + [anon_sym___stdcall] = ACTIONS(843), + [anon_sym___fastcall] = ACTIONS(843), + [anon_sym___thiscall] = ACTIONS(843), + [anon_sym___vectorcall] = ACTIONS(843), [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), @@ -23435,10 +23226,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(956), + [anon_sym_else] = ACTIONS(843), [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(843), [anon_sym_while] = ACTIONS(133), [anon_sym_do] = ACTIONS(135), [anon_sym_for] = ACTIONS(137), @@ -23470,62 +23261,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, + [57] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1351), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(57), + [sym_identifier] = ACTIONS(845), + [aux_sym_preproc_include_token1] = ACTIONS(848), + [aux_sym_preproc_def_token1] = ACTIONS(848), + [aux_sym_preproc_if_token1] = ACTIONS(848), + [aux_sym_preproc_if_token2] = ACTIONS(848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(848), + [aux_sym_preproc_else_token1] = ACTIONS(848), + [aux_sym_preproc_elif_token1] = ACTIONS(848), + [aux_sym_preproc_elifdef_token1] = ACTIONS(848), + [aux_sym_preproc_elifdef_token2] = ACTIONS(848), + [sym_preproc_directive] = ACTIONS(848), + [anon_sym_LPAREN2] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(862), + [anon_sym_typedef] = ACTIONS(865), + [anon_sym_extern] = ACTIONS(868), + [anon_sym___attribute__] = ACTIONS(871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(874), + [anon_sym___declspec] = ACTIONS(877), + [anon_sym___cdecl] = ACTIONS(848), + [anon_sym___clrcall] = ACTIONS(848), + [anon_sym___stdcall] = ACTIONS(848), + [anon_sym___fastcall] = ACTIONS(848), + [anon_sym___thiscall] = ACTIONS(848), + [anon_sym___vectorcall] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_signed] = ACTIONS(883), + [anon_sym_unsigned] = ACTIONS(883), + [anon_sym_long] = ACTIONS(883), + [anon_sym_short] = ACTIONS(883), + [anon_sym_static] = ACTIONS(868), + [anon_sym_auto] = ACTIONS(868), + [anon_sym_register] = ACTIONS(868), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_thread_local] = ACTIONS(868), + [anon_sym_const] = ACTIONS(886), + [anon_sym_constexpr] = ACTIONS(886), + [anon_sym_volatile] = ACTIONS(886), + [anon_sym_restrict] = ACTIONS(886), + [anon_sym___restrict__] = ACTIONS(886), + [anon_sym__Atomic] = ACTIONS(886), + [anon_sym__Noreturn] = ACTIONS(886), + [anon_sym_noreturn] = ACTIONS(886), + [sym_primitive_type] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(892), + [anon_sym_struct] = ACTIONS(895), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(901), + [anon_sym_else] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(904), + [anon_sym_case] = ACTIONS(848), + [anon_sym_default] = ACTIONS(848), + [anon_sym_while] = ACTIONS(907), + [anon_sym_do] = ACTIONS(910), + [anon_sym_for] = ACTIONS(913), + [anon_sym_return] = ACTIONS(916), + [anon_sym_break] = ACTIONS(919), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_goto] = ACTIONS(925), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_sizeof] = ACTIONS(931), + [anon_sym_offsetof] = ACTIONS(934), + [anon_sym__Generic] = ACTIONS(937), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = ACTIONS(940), + [sym_number_literal] = ACTIONS(943), + [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(949), + [anon_sym_u_DQUOTE] = ACTIONS(949), + [anon_sym_U_DQUOTE] = ACTIONS(949), + [anon_sym_u8_DQUOTE] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [anon_sym_NULL] = ACTIONS(955), + [anon_sym_nullptr] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + }, [58] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1344), - [sym_attribute_specifier] = STATE(818), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1351), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(55), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(57), [sym_identifier] = ACTIONS(837), [aux_sym_preproc_include_token1] = ACTIONS(958), [aux_sym_preproc_def_token1] = ACTIONS(958), @@ -23618,19 +23554,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [59] = { [sym_declaration] = STATE(61), [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1339), - [sym_attribute_specifier] = STATE(818), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1361), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_declspec_modifier] = STATE(819), [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), [sym_attributed_statement] = STATE(61), [sym_labeled_statement] = STATE(61), [sym_expression_statement] = STATE(61), @@ -23643,44 +23579,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(61), [sym_continue_statement] = STATE(61), [sym_goto_statement] = STATE(61), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [aux_sym_case_statement_repeat1] = STATE(61), [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [aux_sym_preproc_else_token1] = ACTIONS(954), - [aux_sym_preproc_elif_token1] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), + [aux_sym_preproc_include_token1] = ACTIONS(839), + [aux_sym_preproc_def_token1] = ACTIONS(839), + [aux_sym_preproc_if_token1] = ACTIONS(839), + [aux_sym_preproc_if_token2] = ACTIONS(839), + [aux_sym_preproc_ifdef_token1] = ACTIONS(839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(839), + [aux_sym_preproc_else_token1] = ACTIONS(839), + [aux_sym_preproc_elif_token1] = ACTIONS(839), + [sym_preproc_directive] = ACTIONS(839), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23694,12 +23630,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), + [anon_sym___cdecl] = ACTIONS(839), + [anon_sym___clrcall] = ACTIONS(839), + [anon_sym___stdcall] = ACTIONS(839), + [anon_sym___fastcall] = ACTIONS(839), + [anon_sym___thiscall] = ACTIONS(839), + [anon_sym___vectorcall] = ACTIONS(839), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), @@ -23723,10 +23659,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(954), + [anon_sym_else] = ACTIONS(839), [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), + [anon_sym_case] = ACTIONS(839), + [anon_sym_default] = ACTIONS(839), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), [anon_sym_for] = ACTIONS(203), @@ -23759,71 +23695,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [60] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1339), - [sym_attribute_specifier] = STATE(818), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1361), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(59), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(61), [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(839), - [aux_sym_preproc_if_token2] = ACTIONS(839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(839), - [aux_sym_preproc_else_token1] = ACTIONS(839), - [aux_sym_preproc_elif_token1] = ACTIONS(839), - [sym_preproc_directive] = ACTIONS(839), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [aux_sym_preproc_if_token2] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [aux_sym_preproc_else_token1] = ACTIONS(958), + [aux_sym_preproc_elif_token1] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23837,12 +23773,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(839), - [anon_sym___clrcall] = ACTIONS(839), - [anon_sym___stdcall] = ACTIONS(839), - [anon_sym___fastcall] = ACTIONS(839), - [anon_sym___thiscall] = ACTIONS(839), - [anon_sym___vectorcall] = ACTIONS(839), + [anon_sym___cdecl] = ACTIONS(958), + [anon_sym___clrcall] = ACTIONS(958), + [anon_sym___stdcall] = ACTIONS(958), + [anon_sym___fastcall] = ACTIONS(958), + [anon_sym___thiscall] = ACTIONS(958), + [anon_sym___vectorcall] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), @@ -23866,10 +23802,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(839), + [anon_sym_else] = ACTIONS(958), [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(839), - [anon_sym_default] = ACTIONS(839), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), [anon_sym_for] = ACTIONS(203), @@ -23904,19 +23840,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [61] = { [sym_declaration] = STATE(61), [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1339), - [sym_attribute_specifier] = STATE(818), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1361), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_declspec_modifier] = STATE(819), [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), [sym_attributed_statement] = STATE(61), [sym_labeled_statement] = STATE(61), [sym_expression_statement] = STATE(61), @@ -23929,90 +23865,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(61), [sym_continue_statement] = STATE(61), [sym_goto_statement] = STATE(61), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [aux_sym_case_statement_repeat1] = STATE(61), [sym_identifier] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(844), - [aux_sym_preproc_def_token1] = ACTIONS(844), - [aux_sym_preproc_if_token1] = ACTIONS(844), - [aux_sym_preproc_if_token2] = ACTIONS(844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(844), - [aux_sym_preproc_else_token1] = ACTIONS(844), - [aux_sym_preproc_elif_token1] = ACTIONS(844), - [sym_preproc_directive] = ACTIONS(844), - [anon_sym_LPAREN2] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(855), + [aux_sym_preproc_include_token1] = ACTIONS(848), + [aux_sym_preproc_def_token1] = ACTIONS(848), + [aux_sym_preproc_if_token1] = ACTIONS(848), + [aux_sym_preproc_if_token2] = ACTIONS(848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(848), + [aux_sym_preproc_else_token1] = ACTIONS(848), + [aux_sym_preproc_elif_token1] = ACTIONS(848), + [sym_preproc_directive] = ACTIONS(848), + [anon_sym_LPAREN2] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), [anon_sym_SEMI] = ACTIONS(965), [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(864), - [anon_sym___attribute__] = ACTIONS(867), - [anon_sym_LBRACK_LBRACK] = ACTIONS(870), - [anon_sym___declspec] = ACTIONS(873), - [anon_sym___cdecl] = ACTIONS(844), - [anon_sym___clrcall] = ACTIONS(844), - [anon_sym___stdcall] = ACTIONS(844), - [anon_sym___fastcall] = ACTIONS(844), - [anon_sym___thiscall] = ACTIONS(844), - [anon_sym___vectorcall] = ACTIONS(844), + [anon_sym_extern] = ACTIONS(868), + [anon_sym___attribute__] = ACTIONS(871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(874), + [anon_sym___declspec] = ACTIONS(877), + [anon_sym___cdecl] = ACTIONS(848), + [anon_sym___clrcall] = ACTIONS(848), + [anon_sym___stdcall] = ACTIONS(848), + [anon_sym___fastcall] = ACTIONS(848), + [anon_sym___thiscall] = ACTIONS(848), + [anon_sym___vectorcall] = ACTIONS(848), [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_signed] = ACTIONS(879), - [anon_sym_unsigned] = ACTIONS(879), - [anon_sym_long] = ACTIONS(879), - [anon_sym_short] = ACTIONS(879), - [anon_sym_static] = ACTIONS(864), - [anon_sym_auto] = ACTIONS(864), - [anon_sym_register] = ACTIONS(864), - [anon_sym_inline] = ACTIONS(864), - [anon_sym_thread_local] = ACTIONS(864), - [anon_sym_const] = ACTIONS(882), - [anon_sym_constexpr] = ACTIONS(882), - [anon_sym_volatile] = ACTIONS(882), - [anon_sym_restrict] = ACTIONS(882), - [anon_sym___restrict__] = ACTIONS(882), - [anon_sym__Atomic] = ACTIONS(882), - [anon_sym__Noreturn] = ACTIONS(882), - [anon_sym_noreturn] = ACTIONS(882), - [sym_primitive_type] = ACTIONS(885), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_union] = ACTIONS(894), + [anon_sym_signed] = ACTIONS(883), + [anon_sym_unsigned] = ACTIONS(883), + [anon_sym_long] = ACTIONS(883), + [anon_sym_short] = ACTIONS(883), + [anon_sym_static] = ACTIONS(868), + [anon_sym_auto] = ACTIONS(868), + [anon_sym_register] = ACTIONS(868), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_thread_local] = ACTIONS(868), + [anon_sym_const] = ACTIONS(886), + [anon_sym_constexpr] = ACTIONS(886), + [anon_sym_volatile] = ACTIONS(886), + [anon_sym_restrict] = ACTIONS(886), + [anon_sym___restrict__] = ACTIONS(886), + [anon_sym__Atomic] = ACTIONS(886), + [anon_sym__Noreturn] = ACTIONS(886), + [anon_sym_noreturn] = ACTIONS(886), + [sym_primitive_type] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(892), + [anon_sym_struct] = ACTIONS(895), + [anon_sym_union] = ACTIONS(898), [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(844), + [anon_sym_else] = ACTIONS(848), [anon_sym_switch] = ACTIONS(977), - [anon_sym_case] = ACTIONS(844), - [anon_sym_default] = ACTIONS(844), + [anon_sym_case] = ACTIONS(848), + [anon_sym_default] = ACTIONS(848), [anon_sym_while] = ACTIONS(980), [anon_sym_do] = ACTIONS(983), [anon_sym_for] = ACTIONS(986), @@ -24020,96 +23956,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(992), [anon_sym_continue] = ACTIONS(995), [anon_sym_goto] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(927), - [anon_sym_offsetof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(933), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(939), - [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(945), - [anon_sym_u_DQUOTE] = ACTIONS(945), - [anon_sym_U_DQUOTE] = ACTIONS(945), - [anon_sym_u8_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [anon_sym_NULL] = ACTIONS(951), - [anon_sym_nullptr] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_sizeof] = ACTIONS(931), + [anon_sym_offsetof] = ACTIONS(934), + [anon_sym__Generic] = ACTIONS(937), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = ACTIONS(940), + [sym_number_literal] = ACTIONS(943), + [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(949), + [anon_sym_u_DQUOTE] = ACTIONS(949), + [anon_sym_U_DQUOTE] = ACTIONS(949), + [anon_sym_u8_DQUOTE] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [anon_sym_NULL] = ACTIONS(955), + [anon_sym_nullptr] = ACTIONS(955), [sym_comment] = ACTIONS(3), }, [62] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1339), - [sym_attribute_specifier] = STATE(818), + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1361), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(63), - [sym_labeled_statement] = STATE(63), - [sym_expression_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_switch_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_do_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_return_statement] = STATE(63), - [sym_break_statement] = STATE(63), - [sym_continue_statement] = STATE(63), - [sym_goto_statement] = STATE(63), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(63), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(59), [sym_identifier] = ACTIONS(960), - [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), - [aux_sym_preproc_else_token1] = ACTIONS(956), - [aux_sym_preproc_elif_token1] = ACTIONS(956), - [sym_preproc_directive] = ACTIONS(956), + [aux_sym_preproc_include_token1] = ACTIONS(841), + [aux_sym_preproc_def_token1] = ACTIONS(841), + [aux_sym_preproc_if_token1] = ACTIONS(841), + [aux_sym_preproc_if_token2] = ACTIONS(841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(841), + [aux_sym_preproc_else_token1] = ACTIONS(841), + [aux_sym_preproc_elif_token1] = ACTIONS(841), + [sym_preproc_directive] = ACTIONS(841), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24123,12 +24059,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [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___cdecl] = ACTIONS(841), + [anon_sym___clrcall] = ACTIONS(841), + [anon_sym___stdcall] = ACTIONS(841), + [anon_sym___fastcall] = ACTIONS(841), + [anon_sym___thiscall] = ACTIONS(841), + [anon_sym___vectorcall] = ACTIONS(841), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), @@ -24152,10 +24088,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(956), + [anon_sym_else] = ACTIONS(841), [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), + [anon_sym_case] = ACTIONS(841), + [anon_sym_default] = ACTIONS(841), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), [anon_sym_for] = ACTIONS(203), @@ -24188,71 +24124,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [63] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1339), - [sym_attribute_specifier] = STATE(818), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1361), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(61), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(60), [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [aux_sym_preproc_else_token1] = ACTIONS(958), - [aux_sym_preproc_elif_token1] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), + [aux_sym_preproc_include_token1] = ACTIONS(843), + [aux_sym_preproc_def_token1] = ACTIONS(843), + [aux_sym_preproc_if_token1] = ACTIONS(843), + [aux_sym_preproc_if_token2] = ACTIONS(843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(843), + [aux_sym_preproc_else_token1] = ACTIONS(843), + [aux_sym_preproc_elif_token1] = ACTIONS(843), + [sym_preproc_directive] = ACTIONS(843), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24266,12 +24202,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), + [anon_sym___cdecl] = ACTIONS(843), + [anon_sym___clrcall] = ACTIONS(843), + [anon_sym___stdcall] = ACTIONS(843), + [anon_sym___fastcall] = ACTIONS(843), + [anon_sym___thiscall] = ACTIONS(843), + [anon_sym___vectorcall] = ACTIONS(843), [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), @@ -24295,10 +24231,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(958), + [anon_sym_else] = ACTIONS(843), [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(843), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), [anon_sym_for] = ACTIONS(203), @@ -24331,69 +24267,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [64] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1354), - [sym_attribute_specifier] = STATE(818), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1349), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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_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(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(74), - [ts_builtin_sym_end] = ACTIONS(1001), - [sym_identifier] = ACTIONS(1003), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1001), + [aux_sym_preproc_include_token1] = ACTIONS(848), + [aux_sym_preproc_def_token1] = ACTIONS(848), + [aux_sym_preproc_if_token1] = ACTIONS(848), + [aux_sym_preproc_if_token2] = ACTIONS(848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(848), + [sym_preproc_directive] = ACTIONS(848), + [anon_sym_LPAREN2] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_typedef] = ACTIONS(1007), + [anon_sym_extern] = ACTIONS(868), + [anon_sym___attribute__] = ACTIONS(871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(874), + [anon_sym___declspec] = ACTIONS(877), + [anon_sym___cdecl] = ACTIONS(848), + [anon_sym___clrcall] = ACTIONS(848), + [anon_sym___stdcall] = ACTIONS(848), + [anon_sym___fastcall] = ACTIONS(848), + [anon_sym___thiscall] = ACTIONS(848), + [anon_sym___vectorcall] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_signed] = ACTIONS(883), + [anon_sym_unsigned] = ACTIONS(883), + [anon_sym_long] = ACTIONS(883), + [anon_sym_short] = ACTIONS(883), + [anon_sym_static] = ACTIONS(868), + [anon_sym_auto] = ACTIONS(868), + [anon_sym_register] = ACTIONS(868), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_thread_local] = ACTIONS(868), + [anon_sym_const] = ACTIONS(886), + [anon_sym_constexpr] = ACTIONS(886), + [anon_sym_volatile] = ACTIONS(886), + [anon_sym_restrict] = ACTIONS(886), + [anon_sym___restrict__] = ACTIONS(886), + [anon_sym__Atomic] = ACTIONS(886), + [anon_sym__Noreturn] = ACTIONS(886), + [anon_sym_noreturn] = ACTIONS(886), + [sym_primitive_type] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(892), + [anon_sym_struct] = ACTIONS(895), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_else] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(1016), + [anon_sym_case] = ACTIONS(848), + [anon_sym_default] = ACTIONS(848), + [anon_sym_while] = ACTIONS(1019), + [anon_sym_do] = ACTIONS(1022), + [anon_sym_for] = ACTIONS(1025), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1034), + [anon_sym_goto] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_sizeof] = ACTIONS(931), + [anon_sym_offsetof] = ACTIONS(934), + [anon_sym__Generic] = ACTIONS(937), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = ACTIONS(940), + [sym_number_literal] = ACTIONS(943), + [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(949), + [anon_sym_u_DQUOTE] = ACTIONS(949), + [anon_sym_U_DQUOTE] = ACTIONS(949), + [anon_sym_u8_DQUOTE] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [anon_sym_NULL] = ACTIONS(955), + [anon_sym_nullptr] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + }, + [65] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1349), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_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(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(841), + [aux_sym_preproc_def_token1] = ACTIONS(841), + [aux_sym_preproc_if_token1] = ACTIONS(841), + [aux_sym_preproc_if_token2] = ACTIONS(841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(841), + [sym_preproc_directive] = ACTIONS(841), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24401,19 +24478,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(1005), - [anon_sym_typedef] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_typedef] = ACTIONS(666), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(841), + [anon_sym___clrcall] = ACTIONS(841), + [anon_sym___stdcall] = ACTIONS(841), + [anon_sym___fastcall] = ACTIONS(841), + [anon_sym___thiscall] = ACTIONS(841), + [anon_sym___vectorcall] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -24435,18 +24512,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_if] = ACTIONS(672), + [anon_sym_else] = ACTIONS(841), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(841), + [anon_sym_default] = ACTIONS(841), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -24471,67 +24548,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [65] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1354), - [sym_attribute_specifier] = STATE(818), + [66] = { + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1349), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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_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(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(74), - [ts_builtin_sym_end] = ACTIONS(1007), - [sym_identifier] = ACTIONS(1003), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(843), + [aux_sym_preproc_def_token1] = ACTIONS(843), + [aux_sym_preproc_if_token1] = ACTIONS(843), + [aux_sym_preproc_if_token2] = ACTIONS(843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(843), + [sym_preproc_directive] = ACTIONS(843), + [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(664), + [anon_sym_typedef] = ACTIONS(666), + [anon_sym_extern] = ACTIONS(43), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym___cdecl] = ACTIONS(843), + [anon_sym___clrcall] = ACTIONS(843), + [anon_sym___stdcall] = ACTIONS(843), + [anon_sym___fastcall] = ACTIONS(843), + [anon_sym___thiscall] = ACTIONS(843), + [anon_sym___vectorcall] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_signed] = ACTIONS(41), + [anon_sym_unsigned] = ACTIONS(41), + [anon_sym_long] = ACTIONS(41), + [anon_sym_short] = ACTIONS(41), + [anon_sym_static] = ACTIONS(43), + [anon_sym_auto] = ACTIONS(43), + [anon_sym_register] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(43), + [anon_sym_thread_local] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_constexpr] = 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_noreturn] = ACTIONS(45), + [sym_primitive_type] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_struct] = ACTIONS(51), + [anon_sym_union] = ACTIONS(53), + [anon_sym_if] = ACTIONS(672), + [anon_sym_else] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(843), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [67] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1349), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1040), [aux_sym_preproc_include_token1] = ACTIONS(958), [aux_sym_preproc_def_token1] = ACTIONS(958), [aux_sym_preproc_if_token1] = ACTIONS(958), + [aux_sym_preproc_if_token2] = ACTIONS(958), [aux_sym_preproc_ifdef_token1] = ACTIONS(958), [aux_sym_preproc_ifdef_token2] = ACTIONS(958), [sym_preproc_directive] = ACTIONS(958), @@ -24542,8 +24760,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(1005), - [anon_sym_typedef] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_typedef] = ACTIONS(666), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), @@ -24554,7 +24772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(958), [anon_sym___thiscall] = ACTIONS(958), [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -24576,18 +24794,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(672), [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(674), [anon_sym_case] = ACTIONS(958), [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -24612,63 +24830,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1352), - [sym_attribute_specifier] = STATE(818), + [68] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1362), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1009), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(1042), [aux_sym_preproc_include_token1] = ACTIONS(839), [aux_sym_preproc_def_token1] = ACTIONS(839), [aux_sym_preproc_if_token1] = ACTIONS(839), @@ -24695,7 +24913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(839), [anon_sym___vectorcall] = ACTIONS(839), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1044), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -24753,63 +24971,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [67] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1352), - [sym_attribute_specifier] = STATE(818), + [69] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1362), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(76), - [sym_labeled_statement] = STATE(76), - [sym_expression_statement] = STATE(76), - [sym_if_statement] = STATE(76), - [sym_switch_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_do_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_return_statement] = STATE(76), - [sym_break_statement] = STATE(76), - [sym_continue_statement] = STATE(76), - [sym_goto_statement] = STATE(76), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1009), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(1042), [aux_sym_preproc_include_token1] = ACTIONS(958), [aux_sym_preproc_def_token1] = ACTIONS(958), [aux_sym_preproc_if_token1] = ACTIONS(958), @@ -24836,7 +25054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(958), [anon_sym___vectorcall] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1046), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -24894,22 +25112,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [68] = { + [70] = { [sym_declaration] = STATE(75), [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(818), + [sym__declaration_modifiers] = STATE(819), [sym__declaration_specifiers] = STATE(1350), - [sym_attribute_specifier] = STATE(818), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_declspec_modifier] = STATE(819), [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), [sym_attributed_statement] = STATE(75), [sym_labeled_statement] = STATE(75), [sym_expression_statement] = STATE(75), @@ -24922,42 +25140,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(75), [sym_continue_statement] = STATE(75), [sym_goto_statement] = STATE(75), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [aux_sym_case_statement_repeat1] = STATE(75), - [sym_identifier] = ACTIONS(1013), - [aux_sym_preproc_include_token1] = ACTIONS(839), - [aux_sym_preproc_def_token1] = ACTIONS(839), - [aux_sym_preproc_if_token1] = ACTIONS(839), - [aux_sym_preproc_if_token2] = ACTIONS(839), - [aux_sym_preproc_ifdef_token1] = ACTIONS(839), - [aux_sym_preproc_ifdef_token2] = ACTIONS(839), - [sym_preproc_directive] = ACTIONS(839), + [ts_builtin_sym_end] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1050), + [aux_sym_preproc_include_token1] = ACTIONS(841), + [aux_sym_preproc_def_token1] = ACTIONS(841), + [aux_sym_preproc_if_token1] = ACTIONS(841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(841), + [sym_preproc_directive] = ACTIONS(841), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24965,19 +25183,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(646), - [anon_sym_typedef] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_typedef] = ACTIONS(27), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(839), - [anon_sym___clrcall] = ACTIONS(839), - [anon_sym___stdcall] = ACTIONS(839), - [anon_sym___fastcall] = ACTIONS(839), - [anon_sym___thiscall] = ACTIONS(839), - [anon_sym___vectorcall] = ACTIONS(839), - [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym___cdecl] = ACTIONS(841), + [anon_sym___clrcall] = ACTIONS(841), + [anon_sym___stdcall] = ACTIONS(841), + [anon_sym___fastcall] = ACTIONS(841), + [anon_sym___thiscall] = ACTIONS(841), + [anon_sym___vectorcall] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(39), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -24999,18 +25217,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(654), - [anon_sym_else] = ACTIONS(839), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(839), - [anon_sym_default] = ACTIONS(839), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(841), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(841), + [anon_sym_default] = ACTIONS(841), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -25035,22 +25253,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [69] = { + [71] = { [sym_declaration] = STATE(76), [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1352), - [sym_attribute_specifier] = STATE(818), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_declspec_modifier] = STATE(819), [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), [sym_attributed_statement] = STATE(76), [sym_labeled_statement] = STATE(76), [sym_expression_statement] = STATE(76), @@ -25063,41 +25281,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(76), [sym_continue_statement] = STATE(76), [sym_goto_statement] = STATE(76), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1009), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), + [ts_builtin_sym_end] = ACTIONS(1046), + [sym_identifier] = ACTIONS(1050), + [aux_sym_preproc_include_token1] = ACTIONS(958), + [aux_sym_preproc_def_token1] = ACTIONS(958), + [aux_sym_preproc_if_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(958), + [sym_preproc_directive] = ACTIONS(958), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25105,20 +25324,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(454), - [anon_sym_typedef] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_typedef] = ACTIONS(27), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym___cdecl] = ACTIONS(958), + [anon_sym___clrcall] = ACTIONS(958), + [anon_sym___stdcall] = ACTIONS(958), + [anon_sym___fastcall] = ACTIONS(958), + [anon_sym___thiscall] = ACTIONS(958), + [anon_sym___vectorcall] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(39), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -25140,18 +25358,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(958), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(958), + [anon_sym_default] = ACTIONS(958), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -25176,70 +25394,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1354), - [sym_attribute_specifier] = STATE(818), + [72] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1349), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(65), - [sym_labeled_statement] = STATE(65), - [sym_expression_statement] = STATE(65), - [sym_if_statement] = STATE(65), - [sym_switch_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_do_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_return_statement] = STATE(65), - [sym_break_statement] = STATE(65), - [sym_continue_statement] = STATE(65), - [sym_goto_statement] = STATE(65), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(65), - [ts_builtin_sym_end] = ACTIONS(1015), - [sym_identifier] = ACTIONS(1003), - [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), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1040), + [aux_sym_preproc_include_token1] = ACTIONS(839), + [aux_sym_preproc_def_token1] = ACTIONS(839), + [aux_sym_preproc_if_token1] = ACTIONS(839), + [aux_sym_preproc_if_token2] = ACTIONS(839), + [aux_sym_preproc_ifdef_token1] = ACTIONS(839), + [aux_sym_preproc_ifdef_token2] = ACTIONS(839), + [sym_preproc_directive] = ACTIONS(839), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25247,19 +25465,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(1005), - [anon_sym_typedef] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(664), + [anon_sym_typedef] = ACTIONS(666), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [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(39), + [anon_sym___cdecl] = ACTIONS(839), + [anon_sym___clrcall] = ACTIONS(839), + [anon_sym___stdcall] = ACTIONS(839), + [anon_sym___fastcall] = ACTIONS(839), + [anon_sym___thiscall] = ACTIONS(839), + [anon_sym___vectorcall] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(670), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -25281,18 +25499,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_if] = ACTIONS(672), + [anon_sym_else] = ACTIONS(839), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(839), + [anon_sym_default] = ACTIONS(839), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -25317,70 +25535,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [71] = { - [sym_declaration] = STATE(73), - [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1350), - [sym_attribute_specifier] = STATE(818), + [73] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1362), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(73), - [sym_labeled_statement] = STATE(73), - [sym_expression_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym_switch_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(73), - [sym_identifier] = ACTIONS(1013), - [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), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1042), + [aux_sym_preproc_include_token1] = ACTIONS(843), + [aux_sym_preproc_def_token1] = ACTIONS(843), + [aux_sym_preproc_if_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(843), + [sym_preproc_directive] = ACTIONS(843), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25388,19 +25605,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(646), - [anon_sym_typedef] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [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(652), + [anon_sym___cdecl] = ACTIONS(843), + [anon_sym___clrcall] = ACTIONS(843), + [anon_sym___stdcall] = ACTIONS(843), + [anon_sym___fastcall] = ACTIONS(843), + [anon_sym___thiscall] = ACTIONS(843), + [anon_sym___vectorcall] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -25422,18 +25640,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(654), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_if] = ACTIONS(464), + [anon_sym_else] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(843), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -25458,64 +25676,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [72] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1354), - [sym_attribute_specifier] = STATE(818), + [74] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1362), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(64), - [ts_builtin_sym_end] = ACTIONS(1011), - [sym_identifier] = ACTIONS(1003), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(1056), + [aux_sym_preproc_include_token1] = ACTIONS(848), + [aux_sym_preproc_def_token1] = ACTIONS(848), + [aux_sym_preproc_if_token1] = ACTIONS(848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(848), + [sym_preproc_directive] = ACTIONS(848), + [anon_sym_LPAREN2] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_typedef] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(868), + [anon_sym___attribute__] = ACTIONS(871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(874), + [anon_sym___declspec] = ACTIONS(877), + [anon_sym___cdecl] = ACTIONS(848), + [anon_sym___clrcall] = ACTIONS(848), + [anon_sym___stdcall] = ACTIONS(848), + [anon_sym___fastcall] = ACTIONS(848), + [anon_sym___thiscall] = ACTIONS(848), + [anon_sym___vectorcall] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_signed] = ACTIONS(883), + [anon_sym_unsigned] = ACTIONS(883), + [anon_sym_long] = ACTIONS(883), + [anon_sym_short] = ACTIONS(883), + [anon_sym_static] = ACTIONS(868), + [anon_sym_auto] = ACTIONS(868), + [anon_sym_register] = ACTIONS(868), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_thread_local] = ACTIONS(868), + [anon_sym_const] = ACTIONS(886), + [anon_sym_constexpr] = ACTIONS(886), + [anon_sym_volatile] = ACTIONS(886), + [anon_sym_restrict] = ACTIONS(886), + [anon_sym___restrict__] = ACTIONS(886), + [anon_sym__Atomic] = ACTIONS(886), + [anon_sym__Noreturn] = ACTIONS(886), + [anon_sym_noreturn] = ACTIONS(886), + [sym_primitive_type] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(892), + [anon_sym_struct] = ACTIONS(895), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(1073), + [anon_sym_case] = ACTIONS(848), + [anon_sym_default] = ACTIONS(848), + [anon_sym_while] = ACTIONS(1076), + [anon_sym_do] = ACTIONS(1079), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_break] = ACTIONS(1088), + [anon_sym_continue] = ACTIONS(1091), + [anon_sym_goto] = ACTIONS(1094), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_sizeof] = ACTIONS(931), + [anon_sym_offsetof] = ACTIONS(934), + [anon_sym__Generic] = ACTIONS(937), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = ACTIONS(940), + [sym_number_literal] = ACTIONS(943), + [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(949), + [anon_sym_u_DQUOTE] = ACTIONS(949), + [anon_sym_U_DQUOTE] = ACTIONS(949), + [anon_sym_u8_DQUOTE] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [anon_sym_NULL] = ACTIONS(955), + [anon_sym_nullptr] = ACTIONS(955), + [sym_comment] = ACTIONS(3), + }, + [75] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1050), [aux_sym_preproc_include_token1] = ACTIONS(839), [aux_sym_preproc_def_token1] = ACTIONS(839), [aux_sym_preproc_if_token1] = ACTIONS(839), @@ -25529,7 +25888,7 @@ 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(1005), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_typedef] = ACTIONS(27), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), @@ -25599,352 +25958,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [73] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(818), + [76] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(819), [sym__declaration_specifiers] = STATE(1350), - [sym_attribute_specifier] = STATE(818), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(1013), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [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(646), - [anon_sym_typedef] = ACTIONS(648), - [anon_sym_extern] = ACTIONS(43), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_signed] = ACTIONS(41), - [anon_sym_unsigned] = ACTIONS(41), - [anon_sym_long] = ACTIONS(41), - [anon_sym_short] = ACTIONS(41), - [anon_sym_static] = ACTIONS(43), - [anon_sym_auto] = ACTIONS(43), - [anon_sym_register] = ACTIONS(43), - [anon_sym_inline] = ACTIONS(43), - [anon_sym_thread_local] = ACTIONS(43), - [anon_sym_const] = ACTIONS(45), - [anon_sym_constexpr] = 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_noreturn] = ACTIONS(45), - [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_struct] = ACTIONS(51), - [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(654), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [74] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1354), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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_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(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(74), - [ts_builtin_sym_end] = ACTIONS(1017), - [sym_identifier] = ACTIONS(1019), - [aux_sym_preproc_include_token1] = ACTIONS(844), - [aux_sym_preproc_def_token1] = ACTIONS(844), - [aux_sym_preproc_if_token1] = ACTIONS(844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(844), - [sym_preproc_directive] = ACTIONS(844), - [anon_sym_LPAREN2] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(1022), - [anon_sym_typedef] = ACTIONS(1025), - [anon_sym_extern] = ACTIONS(864), - [anon_sym___attribute__] = ACTIONS(867), - [anon_sym_LBRACK_LBRACK] = ACTIONS(870), - [anon_sym___declspec] = ACTIONS(873), - [anon_sym___cdecl] = ACTIONS(844), - [anon_sym___clrcall] = ACTIONS(844), - [anon_sym___stdcall] = ACTIONS(844), - [anon_sym___fastcall] = ACTIONS(844), - [anon_sym___thiscall] = ACTIONS(844), - [anon_sym___vectorcall] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(879), - [anon_sym_unsigned] = ACTIONS(879), - [anon_sym_long] = ACTIONS(879), - [anon_sym_short] = ACTIONS(879), - [anon_sym_static] = ACTIONS(864), - [anon_sym_auto] = ACTIONS(864), - [anon_sym_register] = ACTIONS(864), - [anon_sym_inline] = ACTIONS(864), - [anon_sym_thread_local] = ACTIONS(864), - [anon_sym_const] = ACTIONS(882), - [anon_sym_constexpr] = ACTIONS(882), - [anon_sym_volatile] = ACTIONS(882), - [anon_sym_restrict] = ACTIONS(882), - [anon_sym___restrict__] = ACTIONS(882), - [anon_sym__Atomic] = ACTIONS(882), - [anon_sym__Noreturn] = ACTIONS(882), - [anon_sym_noreturn] = ACTIONS(882), - [sym_primitive_type] = ACTIONS(885), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(1031), - [anon_sym_else] = ACTIONS(844), - [anon_sym_switch] = ACTIONS(1034), - [anon_sym_case] = ACTIONS(844), - [anon_sym_default] = ACTIONS(844), - [anon_sym_while] = ACTIONS(1037), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(927), - [anon_sym_offsetof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(933), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(939), - [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(945), - [anon_sym_u_DQUOTE] = ACTIONS(945), - [anon_sym_U_DQUOTE] = ACTIONS(945), - [anon_sym_u8_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [anon_sym_NULL] = ACTIONS(951), - [anon_sym_nullptr] = ACTIONS(951), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(1068), + [sym_identifier] = ACTIONS(1097), + [aux_sym_preproc_include_token1] = ACTIONS(848), + [aux_sym_preproc_def_token1] = ACTIONS(848), + [aux_sym_preproc_if_token1] = ACTIONS(848), + [aux_sym_preproc_ifdef_token1] = ACTIONS(848), + [aux_sym_preproc_ifdef_token2] = ACTIONS(848), + [sym_preproc_directive] = ACTIONS(848), + [anon_sym_LPAREN2] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1100), + [anon_sym_typedef] = ACTIONS(1103), + [anon_sym_extern] = ACTIONS(868), + [anon_sym___attribute__] = ACTIONS(871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(874), + [anon_sym___declspec] = ACTIONS(877), + [anon_sym___cdecl] = ACTIONS(848), + [anon_sym___clrcall] = ACTIONS(848), + [anon_sym___stdcall] = ACTIONS(848), + [anon_sym___fastcall] = ACTIONS(848), + [anon_sym___thiscall] = ACTIONS(848), + [anon_sym___vectorcall] = ACTIONS(848), + [anon_sym_LBRACE] = ACTIONS(1106), + [anon_sym_signed] = ACTIONS(883), + [anon_sym_unsigned] = ACTIONS(883), + [anon_sym_long] = ACTIONS(883), + [anon_sym_short] = ACTIONS(883), + [anon_sym_static] = ACTIONS(868), + [anon_sym_auto] = ACTIONS(868), + [anon_sym_register] = ACTIONS(868), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_thread_local] = ACTIONS(868), + [anon_sym_const] = ACTIONS(886), + [anon_sym_constexpr] = ACTIONS(886), + [anon_sym_volatile] = ACTIONS(886), + [anon_sym_restrict] = ACTIONS(886), + [anon_sym___restrict__] = ACTIONS(886), + [anon_sym__Atomic] = ACTIONS(886), + [anon_sym__Noreturn] = ACTIONS(886), + [anon_sym_noreturn] = ACTIONS(886), + [sym_primitive_type] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(892), + [anon_sym_struct] = ACTIONS(895), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(1112), + [anon_sym_case] = ACTIONS(848), + [anon_sym_default] = ACTIONS(848), + [anon_sym_while] = ACTIONS(1115), + [anon_sym_do] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1121), + [anon_sym_return] = ACTIONS(1124), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_goto] = ACTIONS(1133), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_sizeof] = ACTIONS(931), + [anon_sym_offsetof] = ACTIONS(934), + [anon_sym__Generic] = ACTIONS(937), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = ACTIONS(940), + [sym_number_literal] = ACTIONS(943), + [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(949), + [anon_sym_u_DQUOTE] = ACTIONS(949), + [anon_sym_U_DQUOTE] = ACTIONS(949), + [anon_sym_u8_DQUOTE] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [anon_sym_NULL] = ACTIONS(955), + [anon_sym_nullptr] = ACTIONS(955), [sym_comment] = ACTIONS(3), }, - [75] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(818), + [77] = { + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(819), [sym__declaration_specifiers] = STATE(1350), - [sym_attribute_specifier] = STATE(818), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_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(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(1013), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(71), + [ts_builtin_sym_end] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1050), + [aux_sym_preproc_include_token1] = ACTIONS(843), + [aux_sym_preproc_def_token1] = ACTIONS(843), + [aux_sym_preproc_if_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(843), + [sym_preproc_directive] = ACTIONS(843), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25952,19 +26170,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(646), - [anon_sym_typedef] = ACTIONS(648), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_typedef] = ACTIONS(27), [anon_sym_extern] = ACTIONS(43), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(652), + [anon_sym___cdecl] = ACTIONS(843), + [anon_sym___clrcall] = ACTIONS(843), + [anon_sym___stdcall] = ACTIONS(843), + [anon_sym___fastcall] = ACTIONS(843), + [anon_sym___thiscall] = ACTIONS(843), + [anon_sym___vectorcall] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(39), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -25986,18 +26204,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(654), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(843), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -26022,210 +26240,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [76] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1352), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(76), - [sym_labeled_statement] = STATE(76), - [sym_expression_statement] = STATE(76), - [sym_if_statement] = STATE(76), - [sym_switch_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_do_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_return_statement] = STATE(76), - [sym_break_statement] = STATE(76), - [sym_continue_statement] = STATE(76), - [sym_goto_statement] = STATE(76), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1058), - [aux_sym_preproc_include_token1] = ACTIONS(844), - [aux_sym_preproc_def_token1] = ACTIONS(844), - [aux_sym_preproc_if_token1] = ACTIONS(844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(844), - [sym_preproc_directive] = ACTIONS(844), - [anon_sym_LPAREN2] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(864), - [anon_sym___attribute__] = ACTIONS(867), - [anon_sym_LBRACK_LBRACK] = ACTIONS(870), - [anon_sym___declspec] = ACTIONS(873), - [anon_sym___cdecl] = ACTIONS(844), - [anon_sym___clrcall] = ACTIONS(844), - [anon_sym___stdcall] = ACTIONS(844), - [anon_sym___fastcall] = ACTIONS(844), - [anon_sym___thiscall] = ACTIONS(844), - [anon_sym___vectorcall] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_signed] = ACTIONS(879), - [anon_sym_unsigned] = ACTIONS(879), - [anon_sym_long] = ACTIONS(879), - [anon_sym_short] = ACTIONS(879), - [anon_sym_static] = ACTIONS(864), - [anon_sym_auto] = ACTIONS(864), - [anon_sym_register] = ACTIONS(864), - [anon_sym_inline] = ACTIONS(864), - [anon_sym_thread_local] = ACTIONS(864), - [anon_sym_const] = ACTIONS(882), - [anon_sym_constexpr] = ACTIONS(882), - [anon_sym_volatile] = ACTIONS(882), - [anon_sym_restrict] = ACTIONS(882), - [anon_sym___restrict__] = ACTIONS(882), - [anon_sym__Atomic] = ACTIONS(882), - [anon_sym__Noreturn] = ACTIONS(882), - [anon_sym_noreturn] = ACTIONS(882), - [sym_primitive_type] = ACTIONS(885), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(844), - [anon_sym_switch] = ACTIONS(1073), - [anon_sym_case] = ACTIONS(844), - [anon_sym_default] = ACTIONS(844), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1079), - [anon_sym_for] = ACTIONS(1082), - [anon_sym_return] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1091), - [anon_sym_goto] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(927), - [anon_sym_offsetof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(933), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(939), - [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(945), - [anon_sym_u_DQUOTE] = ACTIONS(945), - [anon_sym_U_DQUOTE] = ACTIONS(945), - [anon_sym_u8_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [anon_sym_NULL] = ACTIONS(951), - [anon_sym_nullptr] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - }, - [77] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1352), - [sym_attribute_specifier] = STATE(818), + [78] = { + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1362), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym_attributed_statement] = STATE(68), + [sym_labeled_statement] = STATE(68), + [sym_expression_statement] = STATE(68), + [sym_if_statement] = STATE(68), + [sym_switch_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_do_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_return_statement] = STATE(68), + [sym_break_statement] = STATE(68), + [sym_continue_statement] = STATE(68), + [sym_goto_statement] = STATE(68), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1009), - [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), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(1042), + [aux_sym_preproc_include_token1] = ACTIONS(841), + [aux_sym_preproc_def_token1] = ACTIONS(841), + [aux_sym_preproc_if_token1] = ACTIONS(841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(841), + [sym_preproc_directive] = ACTIONS(841), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26239,14 +26316,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [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___cdecl] = ACTIONS(841), + [anon_sym___clrcall] = ACTIONS(841), + [anon_sym___stdcall] = ACTIONS(841), + [anon_sym___fastcall] = ACTIONS(841), + [anon_sym___thiscall] = ACTIONS(841), + [anon_sym___vectorcall] = ACTIONS(841), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(1015), + [anon_sym_RBRACE] = ACTIONS(1048), [anon_sym_signed] = ACTIONS(41), [anon_sym_unsigned] = ACTIONS(41), [anon_sym_long] = ACTIONS(41), @@ -26269,10 +26346,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(956), + [anon_sym_else] = ACTIONS(841), [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), + [anon_sym_case] = ACTIONS(841), + [anon_sym_default] = ACTIONS(841), [anon_sym_while] = ACTIONS(472), [anon_sym_do] = ACTIONS(474), [anon_sym_for] = ACTIONS(476), @@ -26304,204 +26381,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [78] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(818), + [79] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(819), [sym__declaration_specifiers] = STATE(1350), - [sym_attribute_specifier] = STATE(818), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(844), - [aux_sym_preproc_def_token1] = ACTIONS(844), - [aux_sym_preproc_if_token1] = ACTIONS(844), - [aux_sym_preproc_if_token2] = ACTIONS(844), - [aux_sym_preproc_ifdef_token1] = ACTIONS(844), - [aux_sym_preproc_ifdef_token2] = ACTIONS(844), - [sym_preproc_directive] = ACTIONS(844), - [anon_sym_LPAREN2] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(1100), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1136), + [anon_sym_LPAREN2] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_TILDE] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1059), [anon_sym_typedef] = ACTIONS(1103), - [anon_sym_extern] = ACTIONS(864), - [anon_sym___attribute__] = ACTIONS(867), - [anon_sym_LBRACK_LBRACK] = ACTIONS(870), - [anon_sym___declspec] = ACTIONS(873), - [anon_sym___cdecl] = ACTIONS(844), - [anon_sym___clrcall] = ACTIONS(844), - [anon_sym___stdcall] = ACTIONS(844), - [anon_sym___fastcall] = ACTIONS(844), - [anon_sym___thiscall] = ACTIONS(844), - [anon_sym___vectorcall] = ACTIONS(844), + [anon_sym_extern] = ACTIONS(868), + [anon_sym___attribute__] = ACTIONS(871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(874), + [anon_sym___declspec] = ACTIONS(877), [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_signed] = ACTIONS(879), - [anon_sym_unsigned] = ACTIONS(879), - [anon_sym_long] = ACTIONS(879), - [anon_sym_short] = ACTIONS(879), - [anon_sym_static] = ACTIONS(864), - [anon_sym_auto] = ACTIONS(864), - [anon_sym_register] = ACTIONS(864), - [anon_sym_inline] = ACTIONS(864), - [anon_sym_thread_local] = ACTIONS(864), - [anon_sym_const] = ACTIONS(882), - [anon_sym_constexpr] = ACTIONS(882), - [anon_sym_volatile] = ACTIONS(882), - [anon_sym_restrict] = ACTIONS(882), - [anon_sym___restrict__] = ACTIONS(882), - [anon_sym__Atomic] = ACTIONS(882), - [anon_sym__Noreturn] = ACTIONS(882), - [anon_sym_noreturn] = ACTIONS(882), - [sym_primitive_type] = ACTIONS(885), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(844), + [anon_sym_signed] = ACTIONS(883), + [anon_sym_unsigned] = ACTIONS(883), + [anon_sym_long] = ACTIONS(883), + [anon_sym_short] = ACTIONS(883), + [anon_sym_static] = ACTIONS(868), + [anon_sym_auto] = ACTIONS(868), + [anon_sym_register] = ACTIONS(868), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_thread_local] = ACTIONS(868), + [anon_sym_const] = ACTIONS(886), + [anon_sym_constexpr] = ACTIONS(886), + [anon_sym_volatile] = ACTIONS(886), + [anon_sym_restrict] = ACTIONS(886), + [anon_sym___restrict__] = ACTIONS(886), + [anon_sym__Atomic] = ACTIONS(886), + [anon_sym__Noreturn] = ACTIONS(886), + [anon_sym_noreturn] = ACTIONS(886), + [sym_primitive_type] = ACTIONS(889), + [anon_sym_enum] = ACTIONS(892), + [anon_sym_struct] = ACTIONS(895), + [anon_sym_union] = ACTIONS(898), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(848), [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(844), - [anon_sym_default] = ACTIONS(844), - [anon_sym_while] = ACTIONS(1115), + [anon_sym_while] = ACTIONS(1142), [anon_sym_do] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1121), + [anon_sym_for] = ACTIONS(1145), [anon_sym_return] = ACTIONS(1124), [anon_sym_break] = ACTIONS(1127), [anon_sym_continue] = ACTIONS(1130), [anon_sym_goto] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(927), - [anon_sym_offsetof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(933), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(939), - [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(945), - [anon_sym_u_DQUOTE] = ACTIONS(945), - [anon_sym_U_DQUOTE] = ACTIONS(945), - [anon_sym_u8_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [anon_sym_NULL] = ACTIONS(951), - [anon_sym_nullptr] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_sizeof] = ACTIONS(931), + [anon_sym_offsetof] = ACTIONS(934), + [anon_sym__Generic] = ACTIONS(937), + [anon_sym_asm] = ACTIONS(940), + [anon_sym___asm__] = ACTIONS(940), + [sym_number_literal] = ACTIONS(943), + [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(949), + [anon_sym_u_DQUOTE] = ACTIONS(949), + [anon_sym_U_DQUOTE] = ACTIONS(949), + [anon_sym_u8_DQUOTE] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym_true] = ACTIONS(952), + [sym_false] = ACTIONS(952), + [anon_sym_NULL] = ACTIONS(955), + [anon_sym_nullptr] = ACTIONS(955), [sym_comment] = ACTIONS(3), }, - [79] = { - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1354), - [sym_attribute_specifier] = STATE(818), + [80] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(83), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym_attributed_statement] = STATE(83), - [sym_labeled_statement] = STATE(83), - [sym_expression_statement] = STATE(83), - [sym_if_statement] = STATE(83), - [sym_switch_statement] = STATE(83), - [sym_while_statement] = STATE(83), - [sym_do_statement] = STATE(83), - [sym_for_statement] = STATE(83), - [sym_return_statement] = STATE(83), - [sym_break_statement] = STATE(83), - [sym_continue_statement] = STATE(83), - [sym_goto_statement] = STATE(83), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(1136), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1148), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26537,12 +26599,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(956), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(958), [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1140), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -26571,63 +26633,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [80] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1354), - [sym_attribute_specifier] = STATE(818), + [81] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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_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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1136), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1148), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26663,12 +26725,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1150), [anon_sym_else] = ACTIONS(839), [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1140), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -26697,148 +26759,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [81] = { - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1354), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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_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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1144), - [anon_sym_LPAREN2] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(849), - [anon_sym_TILDE] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_PLUS] = ACTIONS(852), - [anon_sym_STAR] = ACTIONS(855), - [anon_sym_AMP] = ACTIONS(855), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_typedef] = ACTIONS(1025), - [anon_sym_extern] = ACTIONS(864), - [anon_sym___attribute__] = ACTIONS(867), - [anon_sym_LBRACK_LBRACK] = ACTIONS(870), - [anon_sym___declspec] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_signed] = ACTIONS(879), - [anon_sym_unsigned] = ACTIONS(879), - [anon_sym_long] = ACTIONS(879), - [anon_sym_short] = ACTIONS(879), - [anon_sym_static] = ACTIONS(864), - [anon_sym_auto] = ACTIONS(864), - [anon_sym_register] = ACTIONS(864), - [anon_sym_inline] = ACTIONS(864), - [anon_sym_thread_local] = ACTIONS(864), - [anon_sym_const] = ACTIONS(882), - [anon_sym_constexpr] = ACTIONS(882), - [anon_sym_volatile] = ACTIONS(882), - [anon_sym_restrict] = ACTIONS(882), - [anon_sym___restrict__] = ACTIONS(882), - [anon_sym__Atomic] = ACTIONS(882), - [anon_sym__Noreturn] = ACTIONS(882), - [anon_sym_noreturn] = ACTIONS(882), - [sym_primitive_type] = ACTIONS(885), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(891), - [anon_sym_union] = ACTIONS(894), - [anon_sym_if] = ACTIONS(1147), - [anon_sym_else] = ACTIONS(844), - [anon_sym_switch] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1150), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_for] = ACTIONS(1153), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_goto] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(924), - [anon_sym_PLUS_PLUS] = ACTIONS(924), - [anon_sym_sizeof] = ACTIONS(927), - [anon_sym_offsetof] = ACTIONS(930), - [anon_sym__Generic] = ACTIONS(933), - [anon_sym_asm] = ACTIONS(936), - [anon_sym___asm__] = ACTIONS(936), - [sym_number_literal] = ACTIONS(939), - [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(945), - [anon_sym_u_DQUOTE] = ACTIONS(945), - [anon_sym_U_DQUOTE] = ACTIONS(945), - [anon_sym_u8_DQUOTE] = ACTIONS(945), - [anon_sym_DQUOTE] = ACTIONS(945), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [anon_sym_NULL] = ACTIONS(951), - [anon_sym_nullptr] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - }, [82] = { [sym_declaration] = STATE(81), [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1354), - [sym_attribute_specifier] = STATE(818), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), + [sym_ms_declspec_modifier] = STATE(819), [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), [sym_attributed_statement] = STATE(81), [sym_labeled_statement] = STATE(81), [sym_expression_statement] = STATE(81), @@ -26851,35 +26787,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(81), [sym_continue_statement] = STATE(81), [sym_goto_statement] = STATE(81), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1136), + [sym_identifier] = ACTIONS(1148), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26915,12 +26851,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(954), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(841), [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1140), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -26950,62 +26886,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [83] = { - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1354), - [sym_attribute_specifier] = STATE(818), + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(818), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [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_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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [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_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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), - [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1136), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), + [aux_sym_case_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(1148), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27041,12 +26977,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_else] = ACTIONS(958), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_else] = ACTIONS(843), [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1140), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -27076,45 +27012,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [84] = { - [sym_declaration] = STATE(599), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(818), - [sym_ms_declspec_modifier] = STATE(818), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1085), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1992), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_declaration] = STATE(626), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1115), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1939), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27174,45 +27110,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [85] = { - [sym_declaration] = STATE(596), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(818), - [sym_ms_declspec_modifier] = STATE(818), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1106), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1931), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_declaration] = STATE(605), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1058), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27272,45 +27208,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [86] = { - [sym_declaration] = STATE(603), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(818), - [sym_ms_declspec_modifier] = STATE(818), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1101), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1983), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_declaration] = STATE(617), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1094), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1958), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27370,45 +27306,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [87] = { - [sym_declaration] = STATE(646), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(818), - [sym_ms_declspec_modifier] = STATE(818), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1866), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_declaration] = STATE(636), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1055), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1996), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27468,45 +27404,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [88] = { - [sym_declaration] = STATE(648), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(818), - [sym_ms_declspec_modifier] = STATE(818), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1069), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1950), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_declaration] = STATE(631), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1122), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1866), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27566,45 +27502,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [89] = { - [sym_declaration] = STATE(616), - [sym__declaration_modifiers] = STATE(818), - [sym__declaration_specifiers] = STATE(1348), - [sym_attribute_specifier] = STATE(818), - [sym_attribute_declaration] = STATE(818), - [sym_ms_declspec_modifier] = STATE(818), - [sym_storage_class_specifier] = STATE(818), - [sym_type_qualifier] = STATE(818), - [sym__type_specifier] = STATE(972), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1122), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1988), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_declaration] = STATE(611), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1353), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(918), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1120), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(2000), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym__declaration_specifiers_repeat1] = STATE(818), - [aux_sym_sized_type_specifier_repeat1] = STATE(1022), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(1003), [sym_identifier] = ACTIONS(1156), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -27664,29 +27600,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [90] = { - [sym__expression] = STATE(769), - [sym__expression_not_binary] = STATE(808), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(808), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(808), - [sym_call_expression] = STATE(808), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(808), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(808), - [sym_initializer_list] = STATE(768), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), + [sym__expression] = STATE(766), + [sym__expression_not_binary] = STATE(782), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(782), + [sym_call_expression] = STATE(782), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(782), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(782), + [sym_initializer_list] = STATE(795), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), [sym_identifier] = ACTIONS(149), [anon_sym_COMMA] = ACTIONS(1172), [anon_sym_RPAREN] = ACTIONS(1172), @@ -27756,7 +27692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [91] = { - [sym_else_clause] = STATE(129), + [sym_else_clause] = STATE(124), [sym_identifier] = ACTIONS(1190), [aux_sym_preproc_include_token1] = ACTIONS(1190), [aux_sym_preproc_def_token1] = ACTIONS(1190), @@ -30547,6 +30483,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [122] = { + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token2] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [aux_sym_preproc_else_token1] = ACTIONS(1200), + [aux_sym_preproc_elif_token1] = ACTIONS(1200), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), + [sym_comment] = ACTIONS(3), + }, + [123] = { [sym_identifier] = ACTIONS(1316), [aux_sym_preproc_include_token1] = ACTIONS(1316), [aux_sym_preproc_def_token1] = ACTIONS(1316), @@ -30636,96 +30662,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [123] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [aux_sym_preproc_else_token1] = ACTIONS(1232), - [aux_sym_preproc_elif_token1] = ACTIONS(1232), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), - [sym_comment] = ACTIONS(3), - }, [124] = { [sym_identifier] = ACTIONS(1320), [aux_sym_preproc_include_token1] = ACTIONS(1320), @@ -31892,7 +31828,541 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [137] = { - [sym_else_clause] = STATE(163), + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [aux_sym_preproc_else_token1] = ACTIONS(1368), + [aux_sym_preproc_elif_token1] = ACTIONS(1368), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + }, + [138] = { + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token2] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [aux_sym_preproc_else_token1] = ACTIONS(1372), + [aux_sym_preproc_elif_token1] = ACTIONS(1372), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [139] = { + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token2] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [aux_sym_preproc_else_token1] = ACTIONS(1376), + [aux_sym_preproc_elif_token1] = ACTIONS(1376), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + }, + [140] = { + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [aux_sym_preproc_else_token1] = ACTIONS(1380), + [aux_sym_preproc_elif_token1] = ACTIONS(1380), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + }, + [141] = { + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [aux_sym_preproc_else_token1] = ACTIONS(1384), + [aux_sym_preproc_elif_token1] = ACTIONS(1384), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + }, + [142] = { + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token2] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [aux_sym_preproc_else_token1] = ACTIONS(1388), + [aux_sym_preproc_elif_token1] = ACTIONS(1388), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + }, + [143] = { + [sym_else_clause] = STATE(157), [sym_identifier] = ACTIONS(1190), [aux_sym_preproc_include_token1] = ACTIONS(1190), [aux_sym_preproc_def_token1] = ACTIONS(1190), @@ -31945,7 +32415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1190), [anon_sym_union] = ACTIONS(1190), [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1368), + [anon_sym_else] = ACTIONS(1392), [anon_sym_switch] = ACTIONS(1190), [anon_sym_case] = ACTIONS(1190), [anon_sym_default] = ACTIONS(1190), @@ -31980,540 +32450,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, - [138] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - }, - [139] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [aux_sym_preproc_else_token1] = ACTIONS(1374), - [aux_sym_preproc_elif_token1] = ACTIONS(1374), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - }, - [140] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [aux_sym_preproc_else_token1] = ACTIONS(1378), - [aux_sym_preproc_elif_token1] = ACTIONS(1378), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - }, - [141] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [aux_sym_preproc_else_token1] = ACTIONS(1382), - [aux_sym_preproc_elif_token1] = ACTIONS(1382), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), - [sym_comment] = ACTIONS(3), - }, - [142] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [aux_sym_preproc_else_token1] = ACTIONS(1386), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - }, - [143] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [aux_sym_preproc_else_token1] = ACTIONS(1390), - [aux_sym_preproc_elif_token1] = ACTIONS(1390), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - }, [144] = { [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), @@ -33405,6 +33341,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [154] = { + [sym_identifier] = ACTIONS(1244), + [aux_sym_preproc_include_token1] = ACTIONS(1244), + [aux_sym_preproc_def_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token2] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), + [aux_sym_preproc_else_token1] = ACTIONS(1244), + [aux_sym_preproc_elif_token1] = ACTIONS(1244), + [sym_preproc_directive] = ACTIONS(1244), + [anon_sym_LPAREN2] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym___attribute__] = ACTIONS(1244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), + [anon_sym___declspec] = ACTIONS(1244), + [anon_sym___cdecl] = ACTIONS(1244), + [anon_sym___clrcall] = ACTIONS(1244), + [anon_sym___stdcall] = ACTIONS(1244), + [anon_sym___fastcall] = ACTIONS(1244), + [anon_sym___thiscall] = ACTIONS(1244), + [anon_sym___vectorcall] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_auto] = ACTIONS(1244), + [anon_sym_register] = ACTIONS(1244), + [anon_sym_inline] = ACTIONS(1244), + [anon_sym_thread_local] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_constexpr] = ACTIONS(1244), + [anon_sym_volatile] = ACTIONS(1244), + [anon_sym_restrict] = ACTIONS(1244), + [anon_sym___restrict__] = ACTIONS(1244), + [anon_sym__Atomic] = ACTIONS(1244), + [anon_sym__Noreturn] = ACTIONS(1244), + [anon_sym_noreturn] = ACTIONS(1244), + [sym_primitive_type] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_else] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1244), + [anon_sym_case] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_do] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_goto] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_sizeof] = ACTIONS(1244), + [anon_sym_offsetof] = ACTIONS(1244), + [anon_sym__Generic] = ACTIONS(1244), + [anon_sym_asm] = ACTIONS(1244), + [anon_sym___asm__] = ACTIONS(1244), + [sym_number_literal] = ACTIONS(1246), + [anon_sym_L_SQUOTE] = ACTIONS(1246), + [anon_sym_u_SQUOTE] = ACTIONS(1246), + [anon_sym_U_SQUOTE] = ACTIONS(1246), + [anon_sym_u8_SQUOTE] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_L_DQUOTE] = ACTIONS(1246), + [anon_sym_u_DQUOTE] = ACTIONS(1246), + [anon_sym_U_DQUOTE] = ACTIONS(1246), + [anon_sym_u8_DQUOTE] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [sym_true] = ACTIONS(1244), + [sym_false] = ACTIONS(1244), + [anon_sym_NULL] = ACTIONS(1244), + [anon_sym_nullptr] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + }, + [155] = { + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token2] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [aux_sym_preproc_else_token1] = ACTIONS(1264), + [aux_sym_preproc_elif_token1] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), + [sym_comment] = ACTIONS(3), + }, + [156] = { + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [sym_primitive_type] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + }, + [157] = { [sym_identifier] = ACTIONS(1320), [aux_sym_preproc_include_token1] = ACTIONS(1320), [aux_sym_preproc_def_token1] = ACTIONS(1320), @@ -33492,5796 +33692,632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, - [155] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [aux_sym_preproc_else_token1] = ACTIONS(1268), - [aux_sym_preproc_elif_token1] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), + [158] = { + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [aux_sym_preproc_else_token1] = ACTIONS(1340), + [aux_sym_preproc_elif_token1] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [156] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token2] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [aux_sym_preproc_else_token1] = ACTIONS(1216), - [aux_sym_preproc_elif_token1] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), - [sym_comment] = ACTIONS(3), - }, - [157] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [aux_sym_preproc_else_token1] = ACTIONS(1232), - [aux_sym_preproc_elif_token1] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), - [sym_comment] = ACTIONS(3), - }, - [158] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [aux_sym_preproc_else_token1] = ACTIONS(1232), - [aux_sym_preproc_elif_token1] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), - [sym_comment] = ACTIONS(3), - }, - [159] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token2] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [aux_sym_preproc_else_token1] = ACTIONS(1316), - [aux_sym_preproc_elif_token1] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [160] = { - [ts_builtin_sym_end] = ACTIONS(1318), - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), - [sym_comment] = ACTIONS(3), - }, - [161] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [aux_sym_preproc_else_token1] = ACTIONS(1324), - [aux_sym_preproc_elif_token1] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), - [sym_comment] = ACTIONS(3), - }, - [162] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [aux_sym_preproc_else_token1] = ACTIONS(1344), - [aux_sym_preproc_elif_token1] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [163] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token2] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [aux_sym_preproc_else_token1] = ACTIONS(1340), - [aux_sym_preproc_elif_token1] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), - [sym_comment] = ACTIONS(3), - }, - [164] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [aux_sym_preproc_else_token1] = ACTIONS(1344), - [aux_sym_preproc_elif_token1] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [165] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token2] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [aux_sym_preproc_else_token1] = ACTIONS(1200), - [aux_sym_preproc_elif_token1] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - }, - [166] = { - [ts_builtin_sym_end] = ACTIONS(1310), - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [anon_sym_COMMA] = ACTIONS(1310), - [anon_sym_RPAREN] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [167] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [aux_sym_preproc_else_token1] = ACTIONS(1328), - [aux_sym_preproc_elif_token1] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [aux_sym_preproc_else_token1] = ACTIONS(1220), - [aux_sym_preproc_elif_token1] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [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(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [aux_sym_preproc_else_token1] = ACTIONS(1312), - [aux_sym_preproc_elif_token1] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [aux_sym_preproc_else_token1] = ACTIONS(1208), - [aux_sym_preproc_elif_token1] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [aux_sym_preproc_else_token1] = ACTIONS(1204), - [aux_sym_preproc_elif_token1] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), - [sym_comment] = ACTIONS(3), - }, - [172] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token2] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [aux_sym_preproc_else_token1] = ACTIONS(1224), - [aux_sym_preproc_elif_token1] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), - [sym_comment] = ACTIONS(3), - }, - [173] = { - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token2] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [aux_sym_preproc_else_token1] = ACTIONS(1244), - [aux_sym_preproc_elif_token1] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [aux_sym_preproc_else_token1] = ACTIONS(1308), - [aux_sym_preproc_elif_token1] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [aux_sym_preproc_else_token1] = ACTIONS(1332), - [aux_sym_preproc_elif_token1] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - }, - [176] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [aux_sym_preproc_else_token1] = ACTIONS(1336), - [aux_sym_preproc_elif_token1] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [177] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token2] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [aux_sym_preproc_else_token1] = ACTIONS(1228), - [aux_sym_preproc_elif_token1] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), - [sym_comment] = ACTIONS(3), - }, - [178] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [aux_sym_preproc_else_token1] = ACTIONS(1304), - [aux_sym_preproc_elif_token1] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - }, - [179] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token2] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [aux_sym_preproc_else_token1] = ACTIONS(1236), - [aux_sym_preproc_elif_token1] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token2] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [aux_sym_preproc_else_token1] = ACTIONS(1240), - [aux_sym_preproc_elif_token1] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - }, - [181] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [aux_sym_preproc_else_token1] = ACTIONS(1300), - [aux_sym_preproc_elif_token1] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), - [sym_comment] = ACTIONS(3), - }, - [182] = { - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token2] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [aux_sym_preproc_else_token1] = ACTIONS(1248), - [aux_sym_preproc_elif_token1] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), - [sym_comment] = ACTIONS(3), - }, - [183] = { - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token2] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [aux_sym_preproc_else_token1] = ACTIONS(1252), - [aux_sym_preproc_elif_token1] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token2] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [aux_sym_preproc_else_token1] = ACTIONS(1256), - [aux_sym_preproc_elif_token1] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - }, - [185] = { - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token2] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [aux_sym_preproc_else_token1] = ACTIONS(1260), - [aux_sym_preproc_elif_token1] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - }, - [186] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token2] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [aux_sym_preproc_else_token1] = ACTIONS(1264), - [aux_sym_preproc_elif_token1] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), - [sym_comment] = ACTIONS(3), - }, - [187] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [aux_sym_preproc_else_token1] = ACTIONS(1212), - [aux_sym_preproc_elif_token1] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), - [sym_comment] = ACTIONS(3), - }, - [188] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [aux_sym_preproc_else_token1] = ACTIONS(1296), - [aux_sym_preproc_elif_token1] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [189] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token2] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [aux_sym_preproc_else_token1] = ACTIONS(1272), - [aux_sym_preproc_elif_token1] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token2] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [aux_sym_preproc_else_token1] = ACTIONS(1196), - [aux_sym_preproc_elif_token1] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - }, - [191] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [aux_sym_preproc_else_token1] = ACTIONS(1276), - [aux_sym_preproc_elif_token1] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), - [sym_comment] = ACTIONS(3), - }, - [192] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [aux_sym_preproc_else_token1] = ACTIONS(1292), - [aux_sym_preproc_elif_token1] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [193] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token2] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [aux_sym_preproc_else_token1] = ACTIONS(1280), - [aux_sym_preproc_elif_token1] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [194] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [aux_sym_preproc_else_token1] = ACTIONS(1284), - [aux_sym_preproc_elif_token1] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - }, - [195] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token2] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [aux_sym_preproc_else_token1] = ACTIONS(1288), - [aux_sym_preproc_elif_token1] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - }, - [196] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [aux_sym_preproc_else_token1] = ACTIONS(1422), - [aux_sym_preproc_elif_token1] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - }, - [197] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [aux_sym_preproc_else_token1] = ACTIONS(1386), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - }, - [198] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [aux_sym_preproc_else_token1] = ACTIONS(1402), - [aux_sym_preproc_elif_token1] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - }, - [199] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [aux_sym_preproc_else_token1] = ACTIONS(1414), - [aux_sym_preproc_elif_token1] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [200] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [aux_sym_preproc_else_token1] = ACTIONS(1398), - [aux_sym_preproc_elif_token1] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - }, - [201] = { - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [aux_sym_preproc_else_token1] = ACTIONS(1364), - [aux_sym_preproc_elif_token1] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - }, - [202] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token2] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [aux_sym_preproc_else_token1] = ACTIONS(1360), - [aux_sym_preproc_elif_token1] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - }, - [203] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token2] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [aux_sym_preproc_else_token1] = ACTIONS(1348), - [aux_sym_preproc_elif_token1] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), - [sym_comment] = ACTIONS(3), - }, - [204] = { - [sym_else_clause] = STATE(243), - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token2] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), - [sym_comment] = ACTIONS(3), - }, - [205] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token2] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [aux_sym_preproc_else_token1] = ACTIONS(1352), - [aux_sym_preproc_elif_token1] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), - [sym_comment] = ACTIONS(3), - }, - [206] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [aux_sym_preproc_else_token1] = ACTIONS(1374), - [aux_sym_preproc_elif_token1] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - }, - [207] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [aux_sym_preproc_else_token1] = ACTIONS(1418), - [aux_sym_preproc_elif_token1] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), - [sym_comment] = ACTIONS(3), - }, - [208] = { - [sym__expression] = STATE(837), - [sym__expression_not_binary] = STATE(808), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(808), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(808), - [sym_call_expression] = STATE(808), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(808), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(808), - [sym_initializer_list] = STATE(768), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_identifier] = ACTIONS(149), - [anon_sym_LPAREN2] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_SLASH] = ACTIONS(1182), - [anon_sym_PERCENT] = ACTIONS(1182), - [anon_sym_PIPE_PIPE] = ACTIONS(1172), - [anon_sym_AMP_AMP] = ACTIONS(1172), - [anon_sym_PIPE] = ACTIONS(1182), - [anon_sym_CARET] = ACTIONS(1182), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_EQ_EQ] = ACTIONS(1172), - [anon_sym_BANG_EQ] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1182), - [anon_sym_GT_EQ] = ACTIONS(1172), - [anon_sym_LT_EQ] = ACTIONS(1172), - [anon_sym_LT] = ACTIONS(1182), - [anon_sym_LT_LT] = ACTIONS(1182), - [anon_sym_GT_GT] = ACTIONS(1182), - [anon_sym_LBRACE] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(1172), - [anon_sym_RBRACK] = ACTIONS(1172), - [anon_sym_EQ] = ACTIONS(1182), - [anon_sym_QMARK] = ACTIONS(1172), - [anon_sym_STAR_EQ] = ACTIONS(1172), - [anon_sym_SLASH_EQ] = ACTIONS(1172), - [anon_sym_PERCENT_EQ] = ACTIONS(1172), - [anon_sym_PLUS_EQ] = ACTIONS(1172), - [anon_sym_DASH_EQ] = ACTIONS(1172), - [anon_sym_LT_LT_EQ] = ACTIONS(1172), - [anon_sym_GT_GT_EQ] = ACTIONS(1172), - [anon_sym_AMP_EQ] = ACTIONS(1172), - [anon_sym_CARET_EQ] = ACTIONS(1172), - [anon_sym_PIPE_EQ] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_sizeof] = ACTIONS(1446), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [anon_sym_DOT] = ACTIONS(1182), - [anon_sym_DASH_GT] = ACTIONS(1172), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [209] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [aux_sym_preproc_else_token1] = ACTIONS(1430), - [aux_sym_preproc_elif_token1] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - }, - [210] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token2] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [aux_sym_preproc_else_token1] = ACTIONS(1356), - [aux_sym_preproc_elif_token1] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - }, - [211] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [aux_sym_preproc_else_token1] = ACTIONS(1394), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - }, - [212] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [aux_sym_preproc_else_token1] = ACTIONS(1378), - [aux_sym_preproc_elif_token1] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - }, - [213] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - }, - [214] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [aux_sym_preproc_else_token1] = ACTIONS(1410), - [aux_sym_preproc_elif_token1] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - }, - [215] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [aux_sym_preproc_else_token1] = ACTIONS(1382), - [aux_sym_preproc_elif_token1] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [159] = { + [sym_identifier] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token2] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [aux_sym_preproc_else_token1] = ACTIONS(1240), + [aux_sym_preproc_elif_token1] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(3), }, - [216] = { - [sym_else_clause] = STATE(369), - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_RBRACE] = ACTIONS(1192), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), + [160] = { + [sym_identifier] = ACTIONS(1204), + [aux_sym_preproc_include_token1] = ACTIONS(1204), + [aux_sym_preproc_def_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token2] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), + [aux_sym_preproc_else_token1] = ACTIONS(1204), + [aux_sym_preproc_elif_token1] = ACTIONS(1204), + [sym_preproc_directive] = ACTIONS(1204), + [anon_sym_LPAREN2] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym___attribute__] = ACTIONS(1204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), + [anon_sym___declspec] = ACTIONS(1204), + [anon_sym___cdecl] = ACTIONS(1204), + [anon_sym___clrcall] = ACTIONS(1204), + [anon_sym___stdcall] = ACTIONS(1204), + [anon_sym___fastcall] = ACTIONS(1204), + [anon_sym___thiscall] = ACTIONS(1204), + [anon_sym___vectorcall] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_auto] = ACTIONS(1204), + [anon_sym_register] = ACTIONS(1204), + [anon_sym_inline] = ACTIONS(1204), + [anon_sym_thread_local] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_constexpr] = ACTIONS(1204), + [anon_sym_volatile] = ACTIONS(1204), + [anon_sym_restrict] = ACTIONS(1204), + [anon_sym___restrict__] = ACTIONS(1204), + [anon_sym__Atomic] = ACTIONS(1204), + [anon_sym__Noreturn] = ACTIONS(1204), + [anon_sym_noreturn] = ACTIONS(1204), + [sym_primitive_type] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_goto] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_sizeof] = ACTIONS(1204), + [anon_sym_offsetof] = ACTIONS(1204), + [anon_sym__Generic] = ACTIONS(1204), + [anon_sym_asm] = ACTIONS(1204), + [anon_sym___asm__] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1206), + [anon_sym_u_SQUOTE] = ACTIONS(1206), + [anon_sym_U_SQUOTE] = ACTIONS(1206), + [anon_sym_u8_SQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_L_DQUOTE] = ACTIONS(1206), + [anon_sym_u_DQUOTE] = ACTIONS(1206), + [anon_sym_U_DQUOTE] = ACTIONS(1206), + [anon_sym_u8_DQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [anon_sym_NULL] = ACTIONS(1204), + [anon_sym_nullptr] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [217] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [aux_sym_preproc_else_token1] = ACTIONS(1426), - [aux_sym_preproc_elif_token1] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [161] = { + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token2] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [aux_sym_preproc_else_token1] = ACTIONS(1212), + [aux_sym_preproc_elif_token1] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [sym_primitive_type] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), [sym_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [aux_sym_preproc_else_token1] = ACTIONS(1390), - [aux_sym_preproc_elif_token1] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [162] = { + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token2] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [aux_sym_preproc_else_token1] = ACTIONS(1200), + [aux_sym_preproc_elif_token1] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, - [219] = { - [sym_else_clause] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1192), - [sym_identifier] = ACTIONS(1190), - [aux_sym_preproc_include_token1] = ACTIONS(1190), - [aux_sym_preproc_def_token1] = ACTIONS(1190), - [aux_sym_preproc_if_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), - [sym_preproc_directive] = ACTIONS(1190), - [anon_sym_LPAREN2] = ACTIONS(1192), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_TILDE] = ACTIONS(1192), - [anon_sym_DASH] = ACTIONS(1190), - [anon_sym_PLUS] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1192), - [anon_sym_AMP] = ACTIONS(1192), - [anon_sym_SEMI] = ACTIONS(1192), - [anon_sym_typedef] = ACTIONS(1190), - [anon_sym_extern] = ACTIONS(1190), - [anon_sym___attribute__] = ACTIONS(1190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), - [anon_sym___declspec] = ACTIONS(1190), - [anon_sym___cdecl] = ACTIONS(1190), - [anon_sym___clrcall] = ACTIONS(1190), - [anon_sym___stdcall] = ACTIONS(1190), - [anon_sym___fastcall] = ACTIONS(1190), - [anon_sym___thiscall] = ACTIONS(1190), - [anon_sym___vectorcall] = ACTIONS(1190), - [anon_sym_LBRACE] = ACTIONS(1192), - [anon_sym_signed] = ACTIONS(1190), - [anon_sym_unsigned] = ACTIONS(1190), - [anon_sym_long] = ACTIONS(1190), - [anon_sym_short] = ACTIONS(1190), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_auto] = ACTIONS(1190), - [anon_sym_register] = ACTIONS(1190), - [anon_sym_inline] = ACTIONS(1190), - [anon_sym_thread_local] = ACTIONS(1190), - [anon_sym_const] = ACTIONS(1190), - [anon_sym_constexpr] = ACTIONS(1190), - [anon_sym_volatile] = ACTIONS(1190), - [anon_sym_restrict] = ACTIONS(1190), - [anon_sym___restrict__] = ACTIONS(1190), - [anon_sym__Atomic] = ACTIONS(1190), - [anon_sym__Noreturn] = ACTIONS(1190), - [anon_sym_noreturn] = ACTIONS(1190), - [sym_primitive_type] = ACTIONS(1190), - [anon_sym_enum] = ACTIONS(1190), - [anon_sym_struct] = ACTIONS(1190), - [anon_sym_union] = ACTIONS(1190), - [anon_sym_if] = ACTIONS(1190), - [anon_sym_else] = ACTIONS(1450), - [anon_sym_switch] = ACTIONS(1190), - [anon_sym_case] = ACTIONS(1190), - [anon_sym_default] = ACTIONS(1190), - [anon_sym_while] = ACTIONS(1190), - [anon_sym_do] = ACTIONS(1190), - [anon_sym_for] = ACTIONS(1190), - [anon_sym_return] = ACTIONS(1190), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_goto] = ACTIONS(1190), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_sizeof] = ACTIONS(1190), - [anon_sym_offsetof] = ACTIONS(1190), - [anon_sym__Generic] = ACTIONS(1190), - [anon_sym_asm] = ACTIONS(1190), - [anon_sym___asm__] = ACTIONS(1190), - [sym_number_literal] = ACTIONS(1192), - [anon_sym_L_SQUOTE] = ACTIONS(1192), - [anon_sym_u_SQUOTE] = ACTIONS(1192), - [anon_sym_U_SQUOTE] = ACTIONS(1192), - [anon_sym_u8_SQUOTE] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(1192), - [anon_sym_L_DQUOTE] = ACTIONS(1192), - [anon_sym_u_DQUOTE] = ACTIONS(1192), - [anon_sym_U_DQUOTE] = ACTIONS(1192), - [anon_sym_u8_DQUOTE] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(1192), - [sym_true] = ACTIONS(1190), - [sym_false] = ACTIONS(1190), - [anon_sym_NULL] = ACTIONS(1190), - [anon_sym_nullptr] = ACTIONS(1190), + [163] = { + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token2] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [aux_sym_preproc_else_token1] = ACTIONS(1200), + [aux_sym_preproc_elif_token1] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, - [220] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [aux_sym_preproc_else_token1] = ACTIONS(1406), - [aux_sym_preproc_elif_token1] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [164] = { + [sym_identifier] = ACTIONS(1224), + [aux_sym_preproc_include_token1] = ACTIONS(1224), + [aux_sym_preproc_def_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token2] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), + [aux_sym_preproc_else_token1] = ACTIONS(1224), + [aux_sym_preproc_elif_token1] = ACTIONS(1224), + [sym_preproc_directive] = ACTIONS(1224), + [anon_sym_LPAREN2] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym___attribute__] = ACTIONS(1224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), + [anon_sym___declspec] = ACTIONS(1224), + [anon_sym___cdecl] = ACTIONS(1224), + [anon_sym___clrcall] = ACTIONS(1224), + [anon_sym___stdcall] = ACTIONS(1224), + [anon_sym___fastcall] = ACTIONS(1224), + [anon_sym___thiscall] = ACTIONS(1224), + [anon_sym___vectorcall] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_auto] = ACTIONS(1224), + [anon_sym_register] = ACTIONS(1224), + [anon_sym_inline] = ACTIONS(1224), + [anon_sym_thread_local] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_constexpr] = ACTIONS(1224), + [anon_sym_volatile] = ACTIONS(1224), + [anon_sym_restrict] = ACTIONS(1224), + [anon_sym___restrict__] = ACTIONS(1224), + [anon_sym__Atomic] = ACTIONS(1224), + [anon_sym__Noreturn] = ACTIONS(1224), + [anon_sym_noreturn] = ACTIONS(1224), + [sym_primitive_type] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_goto] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1224), + [anon_sym_offsetof] = ACTIONS(1224), + [anon_sym__Generic] = ACTIONS(1224), + [anon_sym_asm] = ACTIONS(1224), + [anon_sym___asm__] = ACTIONS(1224), + [sym_number_literal] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1226), + [anon_sym_u_SQUOTE] = ACTIONS(1226), + [anon_sym_U_SQUOTE] = ACTIONS(1226), + [anon_sym_u8_SQUOTE] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_L_DQUOTE] = ACTIONS(1226), + [anon_sym_u_DQUOTE] = ACTIONS(1226), + [anon_sym_U_DQUOTE] = ACTIONS(1226), + [anon_sym_u8_DQUOTE] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [anon_sym_NULL] = ACTIONS(1224), + [anon_sym_nullptr] = ACTIONS(1224), [sym_comment] = ACTIONS(3), }, - [221] = { + [165] = { [sym_identifier] = ACTIONS(1252), [aux_sym_preproc_include_token1] = ACTIONS(1252), [aux_sym_preproc_def_token1] = ACTIONS(1252), [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token2] = ACTIONS(1252), [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [aux_sym_preproc_else_token1] = ACTIONS(1252), + [aux_sym_preproc_elif_token1] = ACTIONS(1252), [sym_preproc_directive] = ACTIONS(1252), [anon_sym_LPAREN2] = ACTIONS(1254), [anon_sym_BANG] = ACTIONS(1254), @@ -39303,7 +34339,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1252), [anon_sym___vectorcall] = ACTIONS(1252), [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), [anon_sym_signed] = ACTIONS(1252), [anon_sym_unsigned] = ACTIONS(1252), [anon_sym_long] = ACTIONS(1252), @@ -39315,225 +34350,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(1252), [anon_sym_const] = ACTIONS(1252), [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), - [sym_comment] = ACTIONS(3), - }, - [222] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [223] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token2] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), + [166] = { + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [224] = { + [167] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [aux_sym_preproc_else_token1] = ACTIONS(1344), + [aux_sym_preproc_elif_token1] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + }, + [168] = { [sym_identifier] = ACTIONS(1260), [aux_sym_preproc_include_token1] = ACTIONS(1260), [aux_sym_preproc_def_token1] = ACTIONS(1260), @@ -39541,6 +34580,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1260), [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [aux_sym_preproc_else_token1] = ACTIONS(1260), + [aux_sym_preproc_elif_token1] = ACTIONS(1260), [sym_preproc_directive] = ACTIONS(1260), [anon_sym_LPAREN2] = ACTIONS(1262), [anon_sym_BANG] = ACTIONS(1262), @@ -39619,695 +34660,1063 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1260), [sym_comment] = ACTIONS(3), }, - [225] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token2] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), + [169] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [aux_sym_preproc_else_token1] = ACTIONS(1344), + [aux_sym_preproc_elif_token1] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + }, + [170] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [aux_sym_preproc_else_token1] = ACTIONS(1336), + [aux_sym_preproc_elif_token1] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + }, + [171] = { + [sym_identifier] = ACTIONS(1196), + [aux_sym_preproc_include_token1] = ACTIONS(1196), + [aux_sym_preproc_def_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token2] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), + [aux_sym_preproc_else_token1] = ACTIONS(1196), + [aux_sym_preproc_elif_token1] = ACTIONS(1196), + [sym_preproc_directive] = ACTIONS(1196), + [anon_sym_LPAREN2] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym___attribute__] = ACTIONS(1196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), + [anon_sym___declspec] = ACTIONS(1196), + [anon_sym___cdecl] = ACTIONS(1196), + [anon_sym___clrcall] = ACTIONS(1196), + [anon_sym___stdcall] = ACTIONS(1196), + [anon_sym___fastcall] = ACTIONS(1196), + [anon_sym___thiscall] = ACTIONS(1196), + [anon_sym___vectorcall] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_auto] = ACTIONS(1196), + [anon_sym_register] = ACTIONS(1196), + [anon_sym_inline] = ACTIONS(1196), + [anon_sym_thread_local] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_constexpr] = ACTIONS(1196), + [anon_sym_volatile] = ACTIONS(1196), + [anon_sym_restrict] = ACTIONS(1196), + [anon_sym___restrict__] = ACTIONS(1196), + [anon_sym__Atomic] = ACTIONS(1196), + [anon_sym__Noreturn] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [sym_primitive_type] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_switch] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_goto] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_sizeof] = ACTIONS(1196), + [anon_sym_offsetof] = ACTIONS(1196), + [anon_sym__Generic] = ACTIONS(1196), + [anon_sym_asm] = ACTIONS(1196), + [anon_sym___asm__] = ACTIONS(1196), + [sym_number_literal] = ACTIONS(1198), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1198), + [anon_sym_u_DQUOTE] = ACTIONS(1198), + [anon_sym_U_DQUOTE] = ACTIONS(1198), + [anon_sym_u8_DQUOTE] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_true] = ACTIONS(1196), + [sym_false] = ACTIONS(1196), + [anon_sym_NULL] = ACTIONS(1196), + [anon_sym_nullptr] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + }, + [172] = { + [sym_identifier] = ACTIONS(1216), + [aux_sym_preproc_include_token1] = ACTIONS(1216), + [aux_sym_preproc_def_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token2] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), + [aux_sym_preproc_else_token1] = ACTIONS(1216), + [aux_sym_preproc_elif_token1] = ACTIONS(1216), + [sym_preproc_directive] = ACTIONS(1216), + [anon_sym_LPAREN2] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym___attribute__] = ACTIONS(1216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), + [anon_sym___declspec] = ACTIONS(1216), + [anon_sym___cdecl] = ACTIONS(1216), + [anon_sym___clrcall] = ACTIONS(1216), + [anon_sym___stdcall] = ACTIONS(1216), + [anon_sym___fastcall] = ACTIONS(1216), + [anon_sym___thiscall] = ACTIONS(1216), + [anon_sym___vectorcall] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_auto] = ACTIONS(1216), + [anon_sym_register] = ACTIONS(1216), + [anon_sym_inline] = ACTIONS(1216), + [anon_sym_thread_local] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_constexpr] = ACTIONS(1216), + [anon_sym_volatile] = ACTIONS(1216), + [anon_sym_restrict] = ACTIONS(1216), + [anon_sym___restrict__] = ACTIONS(1216), + [anon_sym__Atomic] = ACTIONS(1216), + [anon_sym__Noreturn] = ACTIONS(1216), + [anon_sym_noreturn] = ACTIONS(1216), + [sym_primitive_type] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1216), + [anon_sym_switch] = ACTIONS(1216), + [anon_sym_case] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_do] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_goto] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_sizeof] = ACTIONS(1216), + [anon_sym_offsetof] = ACTIONS(1216), + [anon_sym__Generic] = ACTIONS(1216), + [anon_sym_asm] = ACTIONS(1216), + [anon_sym___asm__] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1218), + [anon_sym_L_SQUOTE] = ACTIONS(1218), + [anon_sym_u_SQUOTE] = ACTIONS(1218), + [anon_sym_U_SQUOTE] = ACTIONS(1218), + [anon_sym_u8_SQUOTE] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_L_DQUOTE] = ACTIONS(1218), + [anon_sym_u_DQUOTE] = ACTIONS(1218), + [anon_sym_U_DQUOTE] = ACTIONS(1218), + [anon_sym_u8_DQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [sym_true] = ACTIONS(1216), + [sym_false] = ACTIONS(1216), + [anon_sym_NULL] = ACTIONS(1216), + [anon_sym_nullptr] = ACTIONS(1216), [sym_comment] = ACTIONS(3), }, - [226] = { - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token2] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), + [173] = { + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token2] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [aux_sym_preproc_else_token1] = ACTIONS(1316), + [aux_sym_preproc_elif_token1] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_else] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [227] = { - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token2] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), + [174] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [aux_sym_preproc_else_token1] = ACTIONS(1308), + [aux_sym_preproc_elif_token1] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [228] = { - [sym_attribute_declaration] = STATE(317), - [sym_compound_statement] = STATE(274), - [sym_attributed_statement] = STATE(274), - [sym_labeled_statement] = STATE(274), - [sym_expression_statement] = STATE(274), - [sym_if_statement] = STATE(274), - [sym_switch_statement] = STATE(274), - [sym_case_statement] = STATE(274), - [sym_while_statement] = STATE(274), - [sym_do_statement] = STATE(274), - [sym_for_statement] = STATE(274), - [sym_return_statement] = STATE(274), - [sym_break_statement] = STATE(274), - [sym_continue_statement] = STATE(274), - [sym_goto_statement] = STATE(274), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(317), - [sym_identifier] = ACTIONS(1452), - [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(646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [175] = { + [sym_identifier] = ACTIONS(1208), + [aux_sym_preproc_include_token1] = ACTIONS(1208), + [aux_sym_preproc_def_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token2] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), + [aux_sym_preproc_else_token1] = ACTIONS(1208), + [aux_sym_preproc_elif_token1] = ACTIONS(1208), + [sym_preproc_directive] = ACTIONS(1208), + [anon_sym_LPAREN2] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym___attribute__] = ACTIONS(1208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(1208), + [anon_sym___cdecl] = ACTIONS(1208), + [anon_sym___clrcall] = ACTIONS(1208), + [anon_sym___stdcall] = ACTIONS(1208), + [anon_sym___fastcall] = ACTIONS(1208), + [anon_sym___thiscall] = ACTIONS(1208), + [anon_sym___vectorcall] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_auto] = ACTIONS(1208), + [anon_sym_register] = ACTIONS(1208), + [anon_sym_inline] = ACTIONS(1208), + [anon_sym_thread_local] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_constexpr] = ACTIONS(1208), + [anon_sym_volatile] = ACTIONS(1208), + [anon_sym_restrict] = ACTIONS(1208), + [anon_sym___restrict__] = ACTIONS(1208), + [anon_sym__Atomic] = ACTIONS(1208), + [anon_sym__Noreturn] = ACTIONS(1208), + [anon_sym_noreturn] = ACTIONS(1208), + [sym_primitive_type] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_goto] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1208), + [anon_sym__Generic] = ACTIONS(1208), + [anon_sym_asm] = ACTIONS(1208), + [anon_sym___asm__] = ACTIONS(1208), + [sym_number_literal] = ACTIONS(1210), + [anon_sym_L_SQUOTE] = ACTIONS(1210), + [anon_sym_u_SQUOTE] = ACTIONS(1210), + [anon_sym_U_SQUOTE] = ACTIONS(1210), + [anon_sym_u8_SQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_L_DQUOTE] = ACTIONS(1210), + [anon_sym_u_DQUOTE] = ACTIONS(1210), + [anon_sym_U_DQUOTE] = ACTIONS(1210), + [anon_sym_u8_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [anon_sym_NULL] = ACTIONS(1208), + [anon_sym_nullptr] = ACTIONS(1208), [sym_comment] = ACTIONS(3), }, - [229] = { - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token2] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), + [176] = { + [sym_identifier] = ACTIONS(1220), + [aux_sym_preproc_include_token1] = ACTIONS(1220), + [aux_sym_preproc_def_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token2] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), + [aux_sym_preproc_else_token1] = ACTIONS(1220), + [aux_sym_preproc_elif_token1] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym___attribute__] = ACTIONS(1220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(1220), + [anon_sym___cdecl] = ACTIONS(1220), + [anon_sym___clrcall] = ACTIONS(1220), + [anon_sym___stdcall] = ACTIONS(1220), + [anon_sym___fastcall] = ACTIONS(1220), + [anon_sym___thiscall] = ACTIONS(1220), + [anon_sym___vectorcall] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_thread_local] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_constexpr] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym___restrict__] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym__Noreturn] = ACTIONS(1220), + [anon_sym_noreturn] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_else] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_sizeof] = ACTIONS(1220), + [anon_sym_offsetof] = ACTIONS(1220), + [anon_sym__Generic] = ACTIONS(1220), + [anon_sym_asm] = ACTIONS(1220), + [anon_sym___asm__] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1222), + [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(1222), + [anon_sym_u_DQUOTE] = ACTIONS(1222), + [anon_sym_U_DQUOTE] = ACTIONS(1222), + [anon_sym_u8_DQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [anon_sym_NULL] = ACTIONS(1220), + [anon_sym_nullptr] = ACTIONS(1220), [sym_comment] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token2] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [177] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [aux_sym_preproc_else_token1] = ACTIONS(1304), + [aux_sym_preproc_elif_token1] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [231] = { - [sym_attribute_declaration] = STATE(231), - [sym_compound_statement] = STATE(176), - [sym_attributed_statement] = STATE(176), - [sym_labeled_statement] = STATE(176), - [sym_expression_statement] = STATE(176), - [sym_if_statement] = STATE(176), - [sym_switch_statement] = STATE(176), - [sym_case_statement] = STATE(176), - [sym_while_statement] = STATE(176), - [sym_do_statement] = STATE(176), - [sym_for_statement] = STATE(176), - [sym_return_statement] = STATE(176), - [sym_break_statement] = STATE(176), - [sym_continue_statement] = STATE(176), - [sym_goto_statement] = STATE(176), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(231), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_case] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_goto] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1516), - [anon_sym_offsetof] = ACTIONS(1519), - [anon_sym__Generic] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym___asm__] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1528), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1534), - [anon_sym_u_DQUOTE] = ACTIONS(1534), - [anon_sym_U_DQUOTE] = ACTIONS(1534), - [anon_sym_u8_DQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [anon_sym_NULL] = ACTIONS(1540), - [anon_sym_nullptr] = ACTIONS(1540), + [178] = { + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token2] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [aux_sym_preproc_else_token1] = ACTIONS(1332), + [aux_sym_preproc_elif_token1] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [232] = { - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), + [179] = { + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [aux_sym_preproc_else_token1] = ACTIONS(1324), + [aux_sym_preproc_elif_token1] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [233] = { + [180] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token2] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [aux_sym_preproc_else_token1] = ACTIONS(1300), + [aux_sym_preproc_elif_token1] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + }, + [181] = { [sym_identifier] = ACTIONS(1228), [aux_sym_preproc_include_token1] = ACTIONS(1228), [aux_sym_preproc_def_token1] = ACTIONS(1228), @@ -40315,6 +35724,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(1228), [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), + [aux_sym_preproc_else_token1] = ACTIONS(1228), + [aux_sym_preproc_elif_token1] = ACTIONS(1228), [sym_preproc_directive] = ACTIONS(1228), [anon_sym_LPAREN2] = ACTIONS(1230), [anon_sym_BANG] = ACTIONS(1230), @@ -40393,272 +35804,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1228), [sym_comment] = ACTIONS(3), }, - [234] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token2] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [182] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token2] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [aux_sym_preproc_else_token1] = ACTIONS(1312), + [aux_sym_preproc_elif_token1] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + }, + [183] = { + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token2] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [aux_sym_preproc_else_token1] = ACTIONS(1232), + [aux_sym_preproc_elif_token1] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + }, + [184] = { + [sym_identifier] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token2] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), + [aux_sym_preproc_else_token1] = ACTIONS(1236), + [aux_sym_preproc_elif_token1] = ACTIONS(1236), + [sym_preproc_directive] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), + [anon_sym___declspec] = ACTIONS(1236), + [anon_sym___cdecl] = ACTIONS(1236), + [anon_sym___clrcall] = ACTIONS(1236), + [anon_sym___stdcall] = ACTIONS(1236), + [anon_sym___fastcall] = ACTIONS(1236), + [anon_sym___thiscall] = ACTIONS(1236), + [anon_sym___vectorcall] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_auto] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1236), + [anon_sym_inline] = ACTIONS(1236), + [anon_sym_thread_local] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_constexpr] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym_restrict] = ACTIONS(1236), + [anon_sym___restrict__] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1236), + [anon_sym__Noreturn] = ACTIONS(1236), + [anon_sym_noreturn] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_else] = ACTIONS(1236), + [anon_sym_switch] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_do] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_goto] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1236), + [anon_sym_offsetof] = ACTIONS(1236), + [anon_sym__Generic] = ACTIONS(1236), + [anon_sym_asm] = ACTIONS(1236), + [anon_sym___asm__] = ACTIONS(1236), + [sym_number_literal] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1238), + [anon_sym_u_SQUOTE] = ACTIONS(1238), + [anon_sym_U_SQUOTE] = ACTIONS(1238), + [anon_sym_u8_SQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_L_DQUOTE] = ACTIONS(1238), + [anon_sym_u_DQUOTE] = ACTIONS(1238), + [anon_sym_U_DQUOTE] = ACTIONS(1238), + [anon_sym_u8_DQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1238), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [anon_sym_NULL] = ACTIONS(1236), + [anon_sym_nullptr] = ACTIONS(1236), [sym_comment] = ACTIONS(3), }, - [235] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token2] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [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(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [185] = { + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1248), + [aux_sym_preproc_def_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token2] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), + [aux_sym_preproc_else_token1] = ACTIONS(1248), + [aux_sym_preproc_elif_token1] = ACTIONS(1248), + [sym_preproc_directive] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym___attribute__] = ACTIONS(1248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), + [anon_sym___declspec] = ACTIONS(1248), + [anon_sym___cdecl] = ACTIONS(1248), + [anon_sym___clrcall] = ACTIONS(1248), + [anon_sym___stdcall] = ACTIONS(1248), + [anon_sym___fastcall] = ACTIONS(1248), + [anon_sym___thiscall] = ACTIONS(1248), + [anon_sym___vectorcall] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_auto] = ACTIONS(1248), + [anon_sym_register] = ACTIONS(1248), + [anon_sym_inline] = ACTIONS(1248), + [anon_sym_thread_local] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_constexpr] = ACTIONS(1248), + [anon_sym_volatile] = ACTIONS(1248), + [anon_sym_restrict] = ACTIONS(1248), + [anon_sym___restrict__] = ACTIONS(1248), + [anon_sym__Atomic] = ACTIONS(1248), + [anon_sym__Noreturn] = ACTIONS(1248), + [anon_sym_noreturn] = ACTIONS(1248), + [sym_primitive_type] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_goto] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym__Generic] = ACTIONS(1248), + [anon_sym_asm] = ACTIONS(1248), + [anon_sym___asm__] = ACTIONS(1248), + [sym_number_literal] = ACTIONS(1250), + [anon_sym_L_SQUOTE] = ACTIONS(1250), + [anon_sym_u_SQUOTE] = ACTIONS(1250), + [anon_sym_U_SQUOTE] = ACTIONS(1250), + [anon_sym_u8_SQUOTE] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_L_DQUOTE] = ACTIONS(1250), + [anon_sym_u_DQUOTE] = ACTIONS(1250), + [anon_sym_U_DQUOTE] = ACTIONS(1250), + [anon_sym_u8_DQUOTE] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [anon_sym_NULL] = ACTIONS(1248), + [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [236] = { - [sym_attribute_declaration] = STATE(273), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), - [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(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [186] = { + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token2] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [aux_sym_preproc_else_token1] = ACTIONS(1256), + [aux_sym_preproc_elif_token1] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + }, + [187] = { + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [aux_sym_preproc_else_token1] = ACTIONS(1328), + [aux_sym_preproc_elif_token1] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1274), + [188] = { [sym_identifier] = ACTIONS(1272), [aux_sym_preproc_include_token1] = ACTIONS(1272), [aux_sym_preproc_def_token1] = ACTIONS(1272), [aux_sym_preproc_if_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token2] = ACTIONS(1272), [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), + [aux_sym_preproc_else_token1] = ACTIONS(1272), + [aux_sym_preproc_elif_token1] = ACTIONS(1272), [sym_preproc_directive] = ACTIONS(1272), [anon_sym_LPAREN2] = ACTIONS(1274), [anon_sym_BANG] = ACTIONS(1274), @@ -40737,1795 +36420,2084 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [238] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), - [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(1005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [239] = { - [ts_builtin_sym_end] = ACTIONS(1198), - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - }, - [240] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [189] = { + [sym_identifier] = ACTIONS(1268), + [aux_sym_preproc_include_token1] = ACTIONS(1268), + [aux_sym_preproc_def_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token2] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), + [aux_sym_preproc_else_token1] = ACTIONS(1268), + [aux_sym_preproc_elif_token1] = ACTIONS(1268), + [sym_preproc_directive] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym___attribute__] = ACTIONS(1268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), + [anon_sym___declspec] = ACTIONS(1268), + [anon_sym___cdecl] = ACTIONS(1268), + [anon_sym___clrcall] = ACTIONS(1268), + [anon_sym___stdcall] = ACTIONS(1268), + [anon_sym___fastcall] = ACTIONS(1268), + [anon_sym___thiscall] = ACTIONS(1268), + [anon_sym___vectorcall] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_auto] = ACTIONS(1268), + [anon_sym_register] = ACTIONS(1268), + [anon_sym_inline] = ACTIONS(1268), + [anon_sym_thread_local] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_constexpr] = ACTIONS(1268), + [anon_sym_volatile] = ACTIONS(1268), + [anon_sym_restrict] = ACTIONS(1268), + [anon_sym___restrict__] = ACTIONS(1268), + [anon_sym__Atomic] = ACTIONS(1268), + [anon_sym__Noreturn] = ACTIONS(1268), + [anon_sym_noreturn] = ACTIONS(1268), + [sym_primitive_type] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_else] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_do] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_goto] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym__Generic] = ACTIONS(1268), + [anon_sym_asm] = ACTIONS(1268), + [anon_sym___asm__] = ACTIONS(1268), + [sym_number_literal] = ACTIONS(1270), + [anon_sym_L_SQUOTE] = ACTIONS(1270), + [anon_sym_u_SQUOTE] = ACTIONS(1270), + [anon_sym_U_SQUOTE] = ACTIONS(1270), + [anon_sym_u8_SQUOTE] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_L_DQUOTE] = ACTIONS(1270), + [anon_sym_u_DQUOTE] = ACTIONS(1270), + [anon_sym_U_DQUOTE] = ACTIONS(1270), + [anon_sym_u8_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym_true] = ACTIONS(1268), + [sym_false] = ACTIONS(1268), + [anon_sym_NULL] = ACTIONS(1268), + [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, - [241] = { - [sym_attribute_declaration] = STATE(439), - [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(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), - [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(1005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [190] = { + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token2] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [aux_sym_preproc_else_token1] = ACTIONS(1276), + [aux_sym_preproc_elif_token1] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), [sym_comment] = ACTIONS(3), }, - [242] = { - [sym_attribute_declaration] = STATE(439), - [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(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), - [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(1005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [191] = { + [sym_identifier] = ACTIONS(1280), + [aux_sym_preproc_include_token1] = ACTIONS(1280), + [aux_sym_preproc_def_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token2] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), + [aux_sym_preproc_else_token1] = ACTIONS(1280), + [aux_sym_preproc_elif_token1] = ACTIONS(1280), + [sym_preproc_directive] = ACTIONS(1280), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), + [anon_sym___declspec] = ACTIONS(1280), + [anon_sym___cdecl] = ACTIONS(1280), + [anon_sym___clrcall] = ACTIONS(1280), + [anon_sym___stdcall] = ACTIONS(1280), + [anon_sym___fastcall] = ACTIONS(1280), + [anon_sym___thiscall] = ACTIONS(1280), + [anon_sym___vectorcall] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym_thread_local] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_constexpr] = ACTIONS(1280), + [anon_sym_volatile] = ACTIONS(1280), + [anon_sym_restrict] = ACTIONS(1280), + [anon_sym___restrict__] = ACTIONS(1280), + [anon_sym__Atomic] = ACTIONS(1280), + [anon_sym__Noreturn] = ACTIONS(1280), + [anon_sym_noreturn] = ACTIONS(1280), + [sym_primitive_type] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_goto] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym__Generic] = ACTIONS(1280), + [anon_sym_asm] = ACTIONS(1280), + [anon_sym___asm__] = ACTIONS(1280), + [sym_number_literal] = ACTIONS(1282), + [anon_sym_L_SQUOTE] = ACTIONS(1282), + [anon_sym_u_SQUOTE] = ACTIONS(1282), + [anon_sym_U_SQUOTE] = ACTIONS(1282), + [anon_sym_u8_SQUOTE] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_L_DQUOTE] = ACTIONS(1282), + [anon_sym_u_DQUOTE] = ACTIONS(1282), + [anon_sym_U_DQUOTE] = ACTIONS(1282), + [anon_sym_u8_DQUOTE] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_true] = ACTIONS(1280), + [sym_false] = ACTIONS(1280), + [anon_sym_NULL] = ACTIONS(1280), + [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [243] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token2] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [192] = { + [sym_identifier] = ACTIONS(1284), + [aux_sym_preproc_include_token1] = ACTIONS(1284), + [aux_sym_preproc_def_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token2] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [aux_sym_preproc_else_token1] = ACTIONS(1284), + [aux_sym_preproc_elif_token1] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1284), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym___attribute__] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), + [anon_sym___declspec] = ACTIONS(1284), + [anon_sym___cdecl] = ACTIONS(1284), + [anon_sym___clrcall] = ACTIONS(1284), + [anon_sym___stdcall] = ACTIONS(1284), + [anon_sym___fastcall] = ACTIONS(1284), + [anon_sym___thiscall] = ACTIONS(1284), + [anon_sym___vectorcall] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_inline] = ACTIONS(1284), + [anon_sym_thread_local] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_constexpr] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym___restrict__] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(1284), + [anon_sym__Noreturn] = ACTIONS(1284), + [anon_sym_noreturn] = ACTIONS(1284), + [sym_primitive_type] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym__Generic] = ACTIONS(1284), + [anon_sym_asm] = ACTIONS(1284), + [anon_sym___asm__] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1286), + [anon_sym_L_SQUOTE] = ACTIONS(1286), + [anon_sym_u_SQUOTE] = ACTIONS(1286), + [anon_sym_U_SQUOTE] = ACTIONS(1286), + [anon_sym_u8_SQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_L_DQUOTE] = ACTIONS(1286), + [anon_sym_u_DQUOTE] = ACTIONS(1286), + [anon_sym_U_DQUOTE] = ACTIONS(1286), + [anon_sym_u8_DQUOTE] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(1284), + [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [244] = { - [sym_attribute_declaration] = STATE(439), - [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(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), - [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(1005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [193] = { + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token2] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [aux_sym_preproc_else_token1] = ACTIONS(1296), + [aux_sym_preproc_elif_token1] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), + [sym_comment] = ACTIONS(3), + }, + [194] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token2] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [aux_sym_preproc_else_token1] = ACTIONS(1288), + [aux_sym_preproc_elif_token1] = ACTIONS(1288), + [sym_preproc_directive] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [anon_sym_thread_local] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_constexpr] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym___restrict__] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym__Noreturn] = ACTIONS(1288), + [anon_sym_noreturn] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym__Generic] = ACTIONS(1288), + [anon_sym_asm] = ACTIONS(1288), + [anon_sym___asm__] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1290), + [anon_sym_L_SQUOTE] = ACTIONS(1290), + [anon_sym_u_SQUOTE] = ACTIONS(1290), + [anon_sym_U_SQUOTE] = ACTIONS(1290), + [anon_sym_u8_SQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_L_DQUOTE] = ACTIONS(1290), + [anon_sym_u_DQUOTE] = ACTIONS(1290), + [anon_sym_U_DQUOTE] = ACTIONS(1290), + [anon_sym_u8_DQUOTE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [anon_sym_NULL] = ACTIONS(1288), + [anon_sym_nullptr] = ACTIONS(1288), [sym_comment] = ACTIONS(3), }, - [245] = { - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token2] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), + [195] = { + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [aux_sym_preproc_else_token1] = ACTIONS(1292), + [aux_sym_preproc_elif_token1] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [246] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), + [196] = { + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [aux_sym_preproc_else_token1] = ACTIONS(1384), + [aux_sym_preproc_elif_token1] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), [sym_comment] = ACTIONS(3), }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [197] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [aux_sym_preproc_else_token1] = ACTIONS(1422), + [aux_sym_preproc_elif_token1] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + }, + [198] = { + [sym_else_clause] = STATE(375), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, - [248] = { - [ts_builtin_sym_end] = ACTIONS(1282), - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), + [199] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [aux_sym_preproc_else_token1] = ACTIONS(1430), + [aux_sym_preproc_elif_token1] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [249] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(239), - [sym_attributed_statement] = STATE(239), - [sym_labeled_statement] = STATE(239), - [sym_expression_statement] = STATE(239), - [sym_if_statement] = STATE(239), - [sym_switch_statement] = STATE(239), - [sym_case_statement] = STATE(239), - [sym_while_statement] = STATE(239), - [sym_do_statement] = STATE(239), - [sym_for_statement] = STATE(239), - [sym_return_statement] = STATE(239), - [sym_break_statement] = STATE(239), - [sym_continue_statement] = STATE(239), - [sym_goto_statement] = STATE(239), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), - [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(1005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [200] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [aux_sym_preproc_else_token1] = ACTIONS(1426), + [aux_sym_preproc_elif_token1] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [250] = { - [sym_attribute_declaration] = STATE(439), - [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(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), - [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(1005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [201] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [aux_sym_preproc_else_token1] = ACTIONS(1394), + [aux_sym_preproc_elif_token1] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + }, + [202] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [aux_sym_preproc_else_token1] = ACTIONS(1398), + [aux_sym_preproc_elif_token1] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [251] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token2] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), + [203] = { + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token2] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [aux_sym_preproc_else_token1] = ACTIONS(1388), + [aux_sym_preproc_elif_token1] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), [sym_comment] = ACTIONS(3), }, - [252] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token2] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [204] = { + [sym_else_clause] = STATE(244), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token2] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token2] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [205] = { + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [aux_sym_preproc_else_token1] = ACTIONS(1402), + [aux_sym_preproc_elif_token1] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), + [sym_comment] = ACTIONS(3), + }, + [206] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [aux_sym_preproc_else_token1] = ACTIONS(1418), + [aux_sym_preproc_elif_token1] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [254] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token2] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [207] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [aux_sym_preproc_else_token1] = ACTIONS(1414), + [aux_sym_preproc_elif_token1] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [255] = { - [ts_builtin_sym_end] = ACTIONS(1246), - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), + [208] = { + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token2] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [aux_sym_preproc_else_token1] = ACTIONS(1352), + [aux_sym_preproc_elif_token1] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [256] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [209] = { + [sym_else_clause] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, - [257] = { - [ts_builtin_sym_end] = ACTIONS(1262), - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), + [210] = { + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token2] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [aux_sym_preproc_else_token1] = ACTIONS(1348), + [aux_sym_preproc_elif_token1] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [258] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(282), - [sym_attributed_statement] = STATE(282), - [sym_labeled_statement] = STATE(282), - [sym_expression_statement] = STATE(282), - [sym_if_statement] = STATE(282), - [sym_switch_statement] = STATE(282), - [sym_case_statement] = STATE(282), - [sym_while_statement] = STATE(282), - [sym_do_statement] = STATE(282), - [sym_for_statement] = STATE(282), - [sym_return_statement] = STATE(282), - [sym_break_statement] = STATE(282), - [sym_continue_statement] = STATE(282), - [sym_goto_statement] = STATE(282), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), - [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(1005), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), + [211] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [aux_sym_preproc_else_token1] = ACTIONS(1410), + [aux_sym_preproc_elif_token1] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [212] = { + [sym__expression] = STATE(830), + [sym__expression_not_binary] = STATE(782), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(782), + [sym_call_expression] = STATE(782), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(782), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(782), + [sym_initializer_list] = STATE(795), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_identifier] = ACTIONS(149), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1182), + [anon_sym_PERCENT] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_EQ_EQ] = ACTIONS(1172), + [anon_sym_BANG_EQ] = ACTIONS(1172), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_EQ] = ACTIONS(1172), + [anon_sym_LT_EQ] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_LT_LT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_RBRACK] = ACTIONS(1172), + [anon_sym_EQ] = ACTIONS(1182), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1450), [anon_sym_offsetof] = ACTIONS(81), [anon_sym__Generic] = ACTIONS(83), [anon_sym_asm] = ACTIONS(85), [anon_sym___asm__] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(1182), + [anon_sym_DASH_GT] = ACTIONS(1172), [sym_number_literal] = ACTIONS(147), [anon_sym_L_SQUOTE] = ACTIONS(89), [anon_sym_u_SQUOTE] = ACTIONS(89), @@ -42543,477 +38515,743 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [259] = { - [sym_identifier] = ACTIONS(1244), - [aux_sym_preproc_include_token1] = ACTIONS(1244), - [aux_sym_preproc_def_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token1] = ACTIONS(1244), - [aux_sym_preproc_if_token2] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), - [sym_preproc_directive] = ACTIONS(1244), - [anon_sym_LPAREN2] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_typedef] = ACTIONS(1244), - [anon_sym_extern] = ACTIONS(1244), - [anon_sym___attribute__] = ACTIONS(1244), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), - [anon_sym___declspec] = ACTIONS(1244), - [anon_sym___cdecl] = ACTIONS(1244), - [anon_sym___clrcall] = ACTIONS(1244), - [anon_sym___stdcall] = ACTIONS(1244), - [anon_sym___fastcall] = ACTIONS(1244), - [anon_sym___thiscall] = ACTIONS(1244), - [anon_sym___vectorcall] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = ACTIONS(1244), - [anon_sym_static] = ACTIONS(1244), - [anon_sym_auto] = ACTIONS(1244), - [anon_sym_register] = ACTIONS(1244), - [anon_sym_inline] = ACTIONS(1244), - [anon_sym_thread_local] = ACTIONS(1244), - [anon_sym_const] = ACTIONS(1244), - [anon_sym_constexpr] = ACTIONS(1244), - [anon_sym_volatile] = ACTIONS(1244), - [anon_sym_restrict] = ACTIONS(1244), - [anon_sym___restrict__] = ACTIONS(1244), - [anon_sym__Atomic] = ACTIONS(1244), - [anon_sym__Noreturn] = ACTIONS(1244), - [anon_sym_noreturn] = ACTIONS(1244), - [sym_primitive_type] = ACTIONS(1244), - [anon_sym_enum] = ACTIONS(1244), - [anon_sym_struct] = ACTIONS(1244), - [anon_sym_union] = ACTIONS(1244), - [anon_sym_if] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1244), - [anon_sym_switch] = ACTIONS(1244), - [anon_sym_case] = ACTIONS(1244), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1244), - [anon_sym_do] = ACTIONS(1244), - [anon_sym_for] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(1244), - [anon_sym_continue] = ACTIONS(1244), - [anon_sym_goto] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1246), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_sizeof] = ACTIONS(1244), - [anon_sym_offsetof] = ACTIONS(1244), - [anon_sym__Generic] = ACTIONS(1244), - [anon_sym_asm] = ACTIONS(1244), - [anon_sym___asm__] = ACTIONS(1244), - [sym_number_literal] = ACTIONS(1246), - [anon_sym_L_SQUOTE] = ACTIONS(1246), - [anon_sym_u_SQUOTE] = ACTIONS(1246), - [anon_sym_U_SQUOTE] = ACTIONS(1246), - [anon_sym_u8_SQUOTE] = ACTIONS(1246), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_L_DQUOTE] = ACTIONS(1246), - [anon_sym_u_DQUOTE] = ACTIONS(1246), - [anon_sym_U_DQUOTE] = ACTIONS(1246), - [anon_sym_u8_DQUOTE] = ACTIONS(1246), - [anon_sym_DQUOTE] = ACTIONS(1246), - [sym_true] = ACTIONS(1244), - [sym_false] = ACTIONS(1244), - [anon_sym_NULL] = ACTIONS(1244), - [anon_sym_nullptr] = ACTIONS(1244), + [213] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [aux_sym_preproc_else_token1] = ACTIONS(1406), + [aux_sym_preproc_elif_token1] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [260] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token2] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [214] = { + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [aux_sym_preproc_else_token1] = ACTIONS(1380), + [aux_sym_preproc_elif_token1] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [aux_sym_preproc_if_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), - [sym_preproc_directive] = ACTIONS(1208), - [anon_sym_LPAREN2] = ACTIONS(1210), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_SEMI] = ACTIONS(1210), - [anon_sym_typedef] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym___attribute__] = ACTIONS(1208), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), - [anon_sym___declspec] = ACTIONS(1208), - [anon_sym___cdecl] = ACTIONS(1208), - [anon_sym___clrcall] = ACTIONS(1208), - [anon_sym___stdcall] = ACTIONS(1208), - [anon_sym___fastcall] = ACTIONS(1208), - [anon_sym___thiscall] = ACTIONS(1208), - [anon_sym___vectorcall] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_auto] = ACTIONS(1208), - [anon_sym_register] = ACTIONS(1208), - [anon_sym_inline] = ACTIONS(1208), - [anon_sym_thread_local] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_constexpr] = ACTIONS(1208), - [anon_sym_volatile] = ACTIONS(1208), - [anon_sym_restrict] = ACTIONS(1208), - [anon_sym___restrict__] = ACTIONS(1208), - [anon_sym__Atomic] = ACTIONS(1208), - [anon_sym__Noreturn] = ACTIONS(1208), - [anon_sym_noreturn] = ACTIONS(1208), - [sym_primitive_type] = ACTIONS(1208), - [anon_sym_enum] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_switch] = ACTIONS(1208), - [anon_sym_case] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_do] = ACTIONS(1208), - [anon_sym_for] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_break] = ACTIONS(1208), - [anon_sym_continue] = ACTIONS(1208), - [anon_sym_goto] = ACTIONS(1208), - [anon_sym_DASH_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1210), - [anon_sym_sizeof] = ACTIONS(1208), - [anon_sym_offsetof] = ACTIONS(1208), - [anon_sym__Generic] = ACTIONS(1208), - [anon_sym_asm] = ACTIONS(1208), - [anon_sym___asm__] = ACTIONS(1208), - [sym_number_literal] = ACTIONS(1210), - [anon_sym_L_SQUOTE] = ACTIONS(1210), - [anon_sym_u_SQUOTE] = ACTIONS(1210), - [anon_sym_U_SQUOTE] = ACTIONS(1210), - [anon_sym_u8_SQUOTE] = ACTIONS(1210), - [anon_sym_SQUOTE] = ACTIONS(1210), - [anon_sym_L_DQUOTE] = ACTIONS(1210), - [anon_sym_u_DQUOTE] = ACTIONS(1210), - [anon_sym_U_DQUOTE] = ACTIONS(1210), - [anon_sym_u8_DQUOTE] = ACTIONS(1210), - [anon_sym_DQUOTE] = ACTIONS(1210), - [sym_true] = ACTIONS(1208), - [sym_false] = ACTIONS(1208), - [anon_sym_NULL] = ACTIONS(1208), - [anon_sym_nullptr] = ACTIONS(1208), + [215] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [aux_sym_preproc_else_token1] = ACTIONS(1356), + [aux_sym_preproc_elif_token1] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(1214), - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [216] = { + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token2] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [aux_sym_preproc_else_token1] = ACTIONS(1376), + [aux_sym_preproc_elif_token1] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + }, + [217] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token2] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [aux_sym_preproc_else_token1] = ACTIONS(1360), + [aux_sym_preproc_elif_token1] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + }, + [218] = { + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [aux_sym_preproc_else_token1] = ACTIONS(1364), + [aux_sym_preproc_elif_token1] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [263] = { - [ts_builtin_sym_end] = ACTIONS(1286), - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [219] = { + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token2] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [aux_sym_preproc_else_token1] = ACTIONS(1372), + [aux_sym_preproc_elif_token1] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, - [264] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(284), - [sym_attributed_statement] = STATE(284), - [sym_labeled_statement] = STATE(284), - [sym_expression_statement] = STATE(284), - [sym_if_statement] = STATE(284), - [sym_switch_statement] = STATE(284), - [sym_case_statement] = STATE(284), - [sym_while_statement] = STATE(284), - [sym_do_statement] = STATE(284), - [sym_for_statement] = STATE(284), - [sym_return_statement] = STATE(284), - [sym_break_statement] = STATE(284), - [sym_continue_statement] = STATE(284), - [sym_goto_statement] = STATE(284), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [220] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [aux_sym_preproc_else_token1] = ACTIONS(1368), + [aux_sym_preproc_elif_token1] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + }, + [221] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(116), + [sym_attributed_statement] = STATE(116), + [sym_labeled_statement] = STATE(116), + [sym_expression_statement] = STATE(116), + [sym_if_statement] = STATE(116), + [sym_switch_statement] = STATE(116), + [sym_case_statement] = STATE(116), + [sym_while_statement] = STATE(116), + [sym_do_statement] = STATE(116), + [sym_for_statement] = STATE(116), + [sym_return_statement] = STATE(116), + [sym_break_statement] = STATE(116), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(116), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -43021,20 +39259,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(1005), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -43059,219 +39297,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [265] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token2] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - }, - [266] = { - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token2] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - }, - [267] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(287), - [sym_attributed_statement] = STATE(287), - [sym_labeled_statement] = STATE(287), - [sym_expression_statement] = STATE(287), - [sym_if_statement] = STATE(287), - [sym_switch_statement] = STATE(287), - [sym_case_statement] = STATE(287), - [sym_while_statement] = STATE(287), - [sym_do_statement] = STATE(287), - [sym_for_statement] = STATE(287), - [sym_return_statement] = STATE(287), - [sym_break_statement] = STATE(287), - [sym_continue_statement] = STATE(287), - [sym_goto_statement] = STATE(287), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [222] = { + [sym_attribute_declaration] = STATE(432), + [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), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -43279,20 +39345,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(1005), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -43317,7 +39383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [268] = { + [223] = { [sym_identifier] = ACTIONS(1272), [aux_sym_preproc_include_token1] = ACTIONS(1272), [aux_sym_preproc_def_token1] = ACTIONS(1272), @@ -43403,1039 +39469,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [269] = { - [sym_attribute_declaration] = STATE(273), - [sym_compound_statement] = STATE(171), - [sym_attributed_statement] = STATE(171), - [sym_labeled_statement] = STATE(171), - [sym_expression_statement] = STATE(171), - [sym_if_statement] = STATE(171), - [sym_switch_statement] = STATE(171), - [sym_case_statement] = STATE(171), - [sym_while_statement] = STATE(171), - [sym_do_statement] = STATE(171), - [sym_for_statement] = STATE(171), - [sym_return_statement] = STATE(171), - [sym_break_statement] = STATE(171), - [sym_continue_statement] = STATE(171), - [sym_goto_statement] = STATE(171), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), - [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(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [270] = { - [sym_attribute_declaration] = STATE(273), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), - [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(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [224] = { + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token2] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [271] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(1962), - [sym_attributed_statement] = STATE(1962), - [sym_labeled_statement] = STATE(1962), - [sym_expression_statement] = STATE(1962), - [sym_if_statement] = STATE(1962), - [sym_switch_statement] = STATE(1962), - [sym_case_statement] = STATE(1962), - [sym_while_statement] = STATE(1962), - [sym_do_statement] = STATE(1962), - [sym_for_statement] = STATE(1962), - [sym_return_statement] = STATE(1962), - [sym_break_statement] = STATE(1962), - [sym_continue_statement] = STATE(1962), - [sym_goto_statement] = STATE(1962), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [225] = { + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token2] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), [sym_comment] = ACTIONS(3), }, - [272] = { - [sym_attribute_declaration] = STATE(443), - [sym_compound_statement] = STATE(323), - [sym_attributed_statement] = STATE(323), - [sym_labeled_statement] = STATE(323), - [sym_expression_statement] = STATE(323), - [sym_if_statement] = STATE(323), - [sym_switch_statement] = STATE(323), - [sym_case_statement] = STATE(323), - [sym_while_statement] = STATE(323), - [sym_do_statement] = STATE(323), - [sym_for_statement] = STATE(323), - [sym_return_statement] = STATE(323), - [sym_break_statement] = STATE(323), - [sym_continue_statement] = STATE(323), - [sym_goto_statement] = STATE(323), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(443), - [sym_identifier] = ACTIONS(1547), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [226] = { + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1248), + [aux_sym_preproc_def_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token2] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), + [sym_preproc_directive] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym___attribute__] = ACTIONS(1248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), + [anon_sym___declspec] = ACTIONS(1248), + [anon_sym___cdecl] = ACTIONS(1248), + [anon_sym___clrcall] = ACTIONS(1248), + [anon_sym___stdcall] = ACTIONS(1248), + [anon_sym___fastcall] = ACTIONS(1248), + [anon_sym___thiscall] = ACTIONS(1248), + [anon_sym___vectorcall] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_auto] = ACTIONS(1248), + [anon_sym_register] = ACTIONS(1248), + [anon_sym_inline] = ACTIONS(1248), + [anon_sym_thread_local] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_constexpr] = ACTIONS(1248), + [anon_sym_volatile] = ACTIONS(1248), + [anon_sym_restrict] = ACTIONS(1248), + [anon_sym___restrict__] = ACTIONS(1248), + [anon_sym__Atomic] = ACTIONS(1248), + [anon_sym__Noreturn] = ACTIONS(1248), + [anon_sym_noreturn] = ACTIONS(1248), + [sym_primitive_type] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_goto] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym__Generic] = ACTIONS(1248), + [anon_sym_asm] = ACTIONS(1248), + [anon_sym___asm__] = ACTIONS(1248), + [sym_number_literal] = ACTIONS(1250), + [anon_sym_L_SQUOTE] = ACTIONS(1250), + [anon_sym_u_SQUOTE] = ACTIONS(1250), + [anon_sym_U_SQUOTE] = ACTIONS(1250), + [anon_sym_u8_SQUOTE] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_L_DQUOTE] = ACTIONS(1250), + [anon_sym_u_DQUOTE] = ACTIONS(1250), + [anon_sym_U_DQUOTE] = ACTIONS(1250), + [anon_sym_u8_DQUOTE] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [anon_sym_NULL] = ACTIONS(1248), + [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_attribute_declaration] = STATE(231), - [sym_compound_statement] = STATE(176), - [sym_attributed_statement] = STATE(176), - [sym_labeled_statement] = STATE(176), - [sym_expression_statement] = STATE(176), - [sym_if_statement] = STATE(176), - [sym_switch_statement] = STATE(176), - [sym_case_statement] = STATE(176), - [sym_while_statement] = STATE(176), - [sym_do_statement] = STATE(176), - [sym_for_statement] = STATE(176), - [sym_return_statement] = STATE(176), - [sym_break_statement] = STATE(176), - [sym_continue_statement] = STATE(176), - [sym_goto_statement] = STATE(176), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(231), - [sym_identifier] = ACTIONS(1543), - [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(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [227] = { + [sym_identifier] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token2] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), + [sym_preproc_directive] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), + [anon_sym___declspec] = ACTIONS(1236), + [anon_sym___cdecl] = ACTIONS(1236), + [anon_sym___clrcall] = ACTIONS(1236), + [anon_sym___stdcall] = ACTIONS(1236), + [anon_sym___fastcall] = ACTIONS(1236), + [anon_sym___thiscall] = ACTIONS(1236), + [anon_sym___vectorcall] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_auto] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1236), + [anon_sym_inline] = ACTIONS(1236), + [anon_sym_thread_local] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_constexpr] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym_restrict] = ACTIONS(1236), + [anon_sym___restrict__] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1236), + [anon_sym__Noreturn] = ACTIONS(1236), + [anon_sym_noreturn] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_else] = ACTIONS(1236), + [anon_sym_switch] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_do] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_goto] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1236), + [anon_sym_offsetof] = ACTIONS(1236), + [anon_sym__Generic] = ACTIONS(1236), + [anon_sym_asm] = ACTIONS(1236), + [anon_sym___asm__] = ACTIONS(1236), + [sym_number_literal] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1238), + [anon_sym_u_SQUOTE] = ACTIONS(1238), + [anon_sym_U_SQUOTE] = ACTIONS(1238), + [anon_sym_u8_SQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_L_DQUOTE] = ACTIONS(1238), + [anon_sym_u_DQUOTE] = ACTIONS(1238), + [anon_sym_U_DQUOTE] = ACTIONS(1238), + [anon_sym_u8_DQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1238), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [anon_sym_NULL] = ACTIONS(1236), + [anon_sym_nullptr] = ACTIONS(1236), [sym_comment] = ACTIONS(3), }, - [274] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token2] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [228] = { + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token2] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), [sym_comment] = ACTIONS(3), }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), + [229] = { + [sym_identifier] = ACTIONS(1228), + [aux_sym_preproc_include_token1] = ACTIONS(1228), + [aux_sym_preproc_def_token1] = ACTIONS(1228), + [aux_sym_preproc_if_token1] = ACTIONS(1228), + [aux_sym_preproc_if_token2] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), + [sym_preproc_directive] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym___attribute__] = ACTIONS(1228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), + [anon_sym___declspec] = ACTIONS(1228), + [anon_sym___cdecl] = ACTIONS(1228), + [anon_sym___clrcall] = ACTIONS(1228), + [anon_sym___stdcall] = ACTIONS(1228), + [anon_sym___fastcall] = ACTIONS(1228), + [anon_sym___thiscall] = ACTIONS(1228), + [anon_sym___vectorcall] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_auto] = ACTIONS(1228), + [anon_sym_register] = ACTIONS(1228), + [anon_sym_inline] = ACTIONS(1228), + [anon_sym_thread_local] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_constexpr] = ACTIONS(1228), + [anon_sym_volatile] = ACTIONS(1228), + [anon_sym_restrict] = ACTIONS(1228), + [anon_sym___restrict__] = ACTIONS(1228), + [anon_sym__Atomic] = ACTIONS(1228), + [anon_sym__Noreturn] = ACTIONS(1228), + [anon_sym_noreturn] = ACTIONS(1228), + [sym_primitive_type] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1228), + [anon_sym_switch] = ACTIONS(1228), + [anon_sym_case] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_do] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_goto] = ACTIONS(1228), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_sizeof] = ACTIONS(1228), + [anon_sym_offsetof] = ACTIONS(1228), + [anon_sym__Generic] = ACTIONS(1228), + [anon_sym_asm] = ACTIONS(1228), + [anon_sym___asm__] = ACTIONS(1228), + [sym_number_literal] = ACTIONS(1230), + [anon_sym_L_SQUOTE] = ACTIONS(1230), + [anon_sym_u_SQUOTE] = ACTIONS(1230), + [anon_sym_U_SQUOTE] = ACTIONS(1230), + [anon_sym_u8_SQUOTE] = ACTIONS(1230), + [anon_sym_SQUOTE] = ACTIONS(1230), + [anon_sym_L_DQUOTE] = ACTIONS(1230), + [anon_sym_u_DQUOTE] = ACTIONS(1230), + [anon_sym_U_DQUOTE] = ACTIONS(1230), + [anon_sym_u8_DQUOTE] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1230), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [anon_sym_NULL] = ACTIONS(1228), + [anon_sym_nullptr] = ACTIONS(1228), [sym_comment] = ACTIONS(3), }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [230] = { + [ts_builtin_sym_end] = ACTIONS(1230), + [sym_identifier] = ACTIONS(1228), + [aux_sym_preproc_include_token1] = ACTIONS(1228), + [aux_sym_preproc_def_token1] = ACTIONS(1228), + [aux_sym_preproc_if_token1] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), + [sym_preproc_directive] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym___attribute__] = ACTIONS(1228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), + [anon_sym___declspec] = ACTIONS(1228), + [anon_sym___cdecl] = ACTIONS(1228), + [anon_sym___clrcall] = ACTIONS(1228), + [anon_sym___stdcall] = ACTIONS(1228), + [anon_sym___fastcall] = ACTIONS(1228), + [anon_sym___thiscall] = ACTIONS(1228), + [anon_sym___vectorcall] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_auto] = ACTIONS(1228), + [anon_sym_register] = ACTIONS(1228), + [anon_sym_inline] = ACTIONS(1228), + [anon_sym_thread_local] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_constexpr] = ACTIONS(1228), + [anon_sym_volatile] = ACTIONS(1228), + [anon_sym_restrict] = ACTIONS(1228), + [anon_sym___restrict__] = ACTIONS(1228), + [anon_sym__Atomic] = ACTIONS(1228), + [anon_sym__Noreturn] = ACTIONS(1228), + [anon_sym_noreturn] = ACTIONS(1228), + [sym_primitive_type] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1228), + [anon_sym_switch] = ACTIONS(1228), + [anon_sym_case] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_do] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_goto] = ACTIONS(1228), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_sizeof] = ACTIONS(1228), + [anon_sym_offsetof] = ACTIONS(1228), + [anon_sym__Generic] = ACTIONS(1228), + [anon_sym_asm] = ACTIONS(1228), + [anon_sym___asm__] = ACTIONS(1228), + [sym_number_literal] = ACTIONS(1230), + [anon_sym_L_SQUOTE] = ACTIONS(1230), + [anon_sym_u_SQUOTE] = ACTIONS(1230), + [anon_sym_U_SQUOTE] = ACTIONS(1230), + [anon_sym_u8_SQUOTE] = ACTIONS(1230), + [anon_sym_SQUOTE] = ACTIONS(1230), + [anon_sym_L_DQUOTE] = ACTIONS(1230), + [anon_sym_u_DQUOTE] = ACTIONS(1230), + [anon_sym_U_DQUOTE] = ACTIONS(1230), + [anon_sym_u8_DQUOTE] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1230), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [anon_sym_NULL] = ACTIONS(1228), + [anon_sym_nullptr] = ACTIONS(1228), [sym_comment] = ACTIONS(3), }, - [277] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token2] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [231] = { + [sym_identifier] = ACTIONS(1220), + [aux_sym_preproc_include_token1] = ACTIONS(1220), + [aux_sym_preproc_def_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token2] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym___attribute__] = ACTIONS(1220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(1220), + [anon_sym___cdecl] = ACTIONS(1220), + [anon_sym___clrcall] = ACTIONS(1220), + [anon_sym___stdcall] = ACTIONS(1220), + [anon_sym___fastcall] = ACTIONS(1220), + [anon_sym___thiscall] = ACTIONS(1220), + [anon_sym___vectorcall] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_thread_local] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_constexpr] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym___restrict__] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym__Noreturn] = ACTIONS(1220), + [anon_sym_noreturn] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_else] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_sizeof] = ACTIONS(1220), + [anon_sym_offsetof] = ACTIONS(1220), + [anon_sym__Generic] = ACTIONS(1220), + [anon_sym_asm] = ACTIONS(1220), + [anon_sym___asm__] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1222), + [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(1222), + [anon_sym_u_DQUOTE] = ACTIONS(1222), + [anon_sym_U_DQUOTE] = ACTIONS(1222), + [anon_sym_u8_DQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [anon_sym_NULL] = ACTIONS(1220), + [anon_sym_nullptr] = ACTIONS(1220), [sym_comment] = ACTIONS(3), }, - [278] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token2] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [232] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(1970), + [sym_attributed_statement] = STATE(1970), + [sym_labeled_statement] = STATE(1970), + [sym_expression_statement] = STATE(1970), + [sym_if_statement] = STATE(1970), + [sym_switch_statement] = STATE(1970), + [sym_case_statement] = STATE(1970), + [sym_while_statement] = STATE(1970), + [sym_do_statement] = STATE(1970), + [sym_for_statement] = STATE(1970), + [sym_return_statement] = STATE(1970), + [sym_break_statement] = STATE(1970), + [sym_continue_statement] = STATE(1970), + [sym_goto_statement] = STATE(1970), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [279] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token2] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [233] = { + [sym_identifier] = ACTIONS(1208), + [aux_sym_preproc_include_token1] = ACTIONS(1208), + [aux_sym_preproc_def_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token2] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), + [sym_preproc_directive] = ACTIONS(1208), + [anon_sym_LPAREN2] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym___attribute__] = ACTIONS(1208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(1208), + [anon_sym___cdecl] = ACTIONS(1208), + [anon_sym___clrcall] = ACTIONS(1208), + [anon_sym___stdcall] = ACTIONS(1208), + [anon_sym___fastcall] = ACTIONS(1208), + [anon_sym___thiscall] = ACTIONS(1208), + [anon_sym___vectorcall] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_auto] = ACTIONS(1208), + [anon_sym_register] = ACTIONS(1208), + [anon_sym_inline] = ACTIONS(1208), + [anon_sym_thread_local] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_constexpr] = ACTIONS(1208), + [anon_sym_volatile] = ACTIONS(1208), + [anon_sym_restrict] = ACTIONS(1208), + [anon_sym___restrict__] = ACTIONS(1208), + [anon_sym__Atomic] = ACTIONS(1208), + [anon_sym__Noreturn] = ACTIONS(1208), + [anon_sym_noreturn] = ACTIONS(1208), + [sym_primitive_type] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_goto] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1208), + [anon_sym__Generic] = ACTIONS(1208), + [anon_sym_asm] = ACTIONS(1208), + [anon_sym___asm__] = ACTIONS(1208), + [sym_number_literal] = ACTIONS(1210), + [anon_sym_L_SQUOTE] = ACTIONS(1210), + [anon_sym_u_SQUOTE] = ACTIONS(1210), + [anon_sym_U_SQUOTE] = ACTIONS(1210), + [anon_sym_u8_SQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_L_DQUOTE] = ACTIONS(1210), + [anon_sym_u_DQUOTE] = ACTIONS(1210), + [anon_sym_U_DQUOTE] = ACTIONS(1210), + [anon_sym_u8_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [anon_sym_NULL] = ACTIONS(1208), + [anon_sym_nullptr] = ACTIONS(1208), [sym_comment] = ACTIONS(3), }, - [280] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token2] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), + [234] = { + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), + [sym_preproc_directive] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), + [anon_sym___declspec] = ACTIONS(1236), + [anon_sym___cdecl] = ACTIONS(1236), + [anon_sym___clrcall] = ACTIONS(1236), + [anon_sym___stdcall] = ACTIONS(1236), + [anon_sym___fastcall] = ACTIONS(1236), + [anon_sym___thiscall] = ACTIONS(1236), + [anon_sym___vectorcall] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_auto] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1236), + [anon_sym_inline] = ACTIONS(1236), + [anon_sym_thread_local] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_constexpr] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym_restrict] = ACTIONS(1236), + [anon_sym___restrict__] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1236), + [anon_sym__Noreturn] = ACTIONS(1236), + [anon_sym_noreturn] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_else] = ACTIONS(1236), + [anon_sym_switch] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_do] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_goto] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1236), + [anon_sym_offsetof] = ACTIONS(1236), + [anon_sym__Generic] = ACTIONS(1236), + [anon_sym_asm] = ACTIONS(1236), + [anon_sym___asm__] = ACTIONS(1236), + [sym_number_literal] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1238), + [anon_sym_u_SQUOTE] = ACTIONS(1238), + [anon_sym_U_SQUOTE] = ACTIONS(1238), + [anon_sym_u8_SQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_L_DQUOTE] = ACTIONS(1238), + [anon_sym_u_DQUOTE] = ACTIONS(1238), + [anon_sym_U_DQUOTE] = ACTIONS(1238), + [anon_sym_u8_DQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1238), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [anon_sym_NULL] = ACTIONS(1236), + [anon_sym_nullptr] = ACTIONS(1236), [sym_comment] = ACTIONS(3), }, - [281] = { + [235] = { [sym_identifier] = ACTIONS(1316), [aux_sym_preproc_include_token1] = ACTIONS(1316), [aux_sym_preproc_def_token1] = ACTIONS(1316), @@ -44521,563 +40501,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [282] = { - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - }, - [283] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token2] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1298), - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - }, - [285] = { - [sym_attribute_declaration] = STATE(273), - [sym_compound_statement] = STATE(181), - [sym_attributed_statement] = STATE(181), - [sym_labeled_statement] = STATE(181), - [sym_expression_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_switch_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_while_statement] = STATE(181), - [sym_do_statement] = STATE(181), - [sym_for_statement] = STATE(181), - [sym_return_statement] = STATE(181), - [sym_break_statement] = STATE(181), - [sym_continue_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), - [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(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [236] = { + [sym_identifier] = ACTIONS(1216), + [aux_sym_preproc_include_token1] = ACTIONS(1216), + [aux_sym_preproc_def_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token2] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), + [sym_preproc_directive] = ACTIONS(1216), + [anon_sym_LPAREN2] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym___attribute__] = ACTIONS(1216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), + [anon_sym___declspec] = ACTIONS(1216), + [anon_sym___cdecl] = ACTIONS(1216), + [anon_sym___clrcall] = ACTIONS(1216), + [anon_sym___stdcall] = ACTIONS(1216), + [anon_sym___fastcall] = ACTIONS(1216), + [anon_sym___thiscall] = ACTIONS(1216), + [anon_sym___vectorcall] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_auto] = ACTIONS(1216), + [anon_sym_register] = ACTIONS(1216), + [anon_sym_inline] = ACTIONS(1216), + [anon_sym_thread_local] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_constexpr] = ACTIONS(1216), + [anon_sym_volatile] = ACTIONS(1216), + [anon_sym_restrict] = ACTIONS(1216), + [anon_sym___restrict__] = ACTIONS(1216), + [anon_sym__Atomic] = ACTIONS(1216), + [anon_sym__Noreturn] = ACTIONS(1216), + [anon_sym_noreturn] = ACTIONS(1216), + [sym_primitive_type] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1216), + [anon_sym_switch] = ACTIONS(1216), + [anon_sym_case] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_do] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_goto] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_sizeof] = ACTIONS(1216), + [anon_sym_offsetof] = ACTIONS(1216), + [anon_sym__Generic] = ACTIONS(1216), + [anon_sym_asm] = ACTIONS(1216), + [anon_sym___asm__] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1218), + [anon_sym_L_SQUOTE] = ACTIONS(1218), + [anon_sym_u_SQUOTE] = ACTIONS(1218), + [anon_sym_U_SQUOTE] = ACTIONS(1218), + [anon_sym_u8_SQUOTE] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_L_DQUOTE] = ACTIONS(1218), + [anon_sym_u_DQUOTE] = ACTIONS(1218), + [anon_sym_U_DQUOTE] = ACTIONS(1218), + [anon_sym_u8_DQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [sym_true] = ACTIONS(1216), + [sym_false] = ACTIONS(1216), + [anon_sym_NULL] = ACTIONS(1216), + [anon_sym_nullptr] = ACTIONS(1216), [sym_comment] = ACTIONS(3), }, - [286] = { - [ts_builtin_sym_end] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [237] = { + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1248), + [aux_sym_preproc_def_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), + [sym_preproc_directive] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym___attribute__] = ACTIONS(1248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), + [anon_sym___declspec] = ACTIONS(1248), + [anon_sym___cdecl] = ACTIONS(1248), + [anon_sym___clrcall] = ACTIONS(1248), + [anon_sym___stdcall] = ACTIONS(1248), + [anon_sym___fastcall] = ACTIONS(1248), + [anon_sym___thiscall] = ACTIONS(1248), + [anon_sym___vectorcall] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_auto] = ACTIONS(1248), + [anon_sym_register] = ACTIONS(1248), + [anon_sym_inline] = ACTIONS(1248), + [anon_sym_thread_local] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_constexpr] = ACTIONS(1248), + [anon_sym_volatile] = ACTIONS(1248), + [anon_sym_restrict] = ACTIONS(1248), + [anon_sym___restrict__] = ACTIONS(1248), + [anon_sym__Atomic] = ACTIONS(1248), + [anon_sym__Noreturn] = ACTIONS(1248), + [anon_sym_noreturn] = ACTIONS(1248), + [sym_primitive_type] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_goto] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym__Generic] = ACTIONS(1248), + [anon_sym_asm] = ACTIONS(1248), + [anon_sym___asm__] = ACTIONS(1248), + [sym_number_literal] = ACTIONS(1250), + [anon_sym_L_SQUOTE] = ACTIONS(1250), + [anon_sym_u_SQUOTE] = ACTIONS(1250), + [anon_sym_U_SQUOTE] = ACTIONS(1250), + [anon_sym_u8_SQUOTE] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_L_DQUOTE] = ACTIONS(1250), + [anon_sym_u_DQUOTE] = ACTIONS(1250), + [anon_sym_U_DQUOTE] = ACTIONS(1250), + [anon_sym_u8_DQUOTE] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [anon_sym_NULL] = ACTIONS(1248), + [anon_sym_nullptr] = ACTIONS(1248), [sym_comment] = ACTIONS(3), }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [238] = { + [sym_identifier] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token2] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(3), }, - [288] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(308), - [sym_attributed_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_goto_statement] = STATE(308), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [239] = { + [sym_attribute_declaration] = STATE(406), + [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(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -45085,7 +40807,7 @@ 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(1005), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), [anon_sym_if] = ACTIONS(55), @@ -45123,47 +40845,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [289] = { - [sym_attribute_declaration] = STATE(228), - [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(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [240] = { + [sym_identifier] = ACTIONS(1268), + [aux_sym_preproc_include_token1] = ACTIONS(1268), + [aux_sym_preproc_def_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), + [sym_preproc_directive] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym___attribute__] = ACTIONS(1268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), + [anon_sym___declspec] = ACTIONS(1268), + [anon_sym___cdecl] = ACTIONS(1268), + [anon_sym___clrcall] = ACTIONS(1268), + [anon_sym___stdcall] = ACTIONS(1268), + [anon_sym___fastcall] = ACTIONS(1268), + [anon_sym___thiscall] = ACTIONS(1268), + [anon_sym___vectorcall] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_auto] = ACTIONS(1268), + [anon_sym_register] = ACTIONS(1268), + [anon_sym_inline] = ACTIONS(1268), + [anon_sym_thread_local] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_constexpr] = ACTIONS(1268), + [anon_sym_volatile] = ACTIONS(1268), + [anon_sym_restrict] = ACTIONS(1268), + [anon_sym___restrict__] = ACTIONS(1268), + [anon_sym__Atomic] = ACTIONS(1268), + [anon_sym__Noreturn] = ACTIONS(1268), + [anon_sym_noreturn] = ACTIONS(1268), + [sym_primitive_type] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_else] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_do] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_goto] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym__Generic] = ACTIONS(1268), + [anon_sym_asm] = ACTIONS(1268), + [anon_sym___asm__] = ACTIONS(1268), + [sym_number_literal] = ACTIONS(1270), + [anon_sym_L_SQUOTE] = ACTIONS(1270), + [anon_sym_u_SQUOTE] = ACTIONS(1270), + [anon_sym_U_SQUOTE] = ACTIONS(1270), + [anon_sym_u8_SQUOTE] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_L_DQUOTE] = ACTIONS(1270), + [anon_sym_u_DQUOTE] = ACTIONS(1270), + [anon_sym_U_DQUOTE] = ACTIONS(1270), + [anon_sym_u8_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym_true] = ACTIONS(1268), + [sym_false] = ACTIONS(1268), + [anon_sym_NULL] = ACTIONS(1268), + [anon_sym_nullptr] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + }, + [241] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(250), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -45171,20 +40979,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(646), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -45205,395 +41013,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(91), [sym_true] = ACTIONS(149), [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [290] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token2] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [291] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token2] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [292] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token2] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), + [242] = { + [ts_builtin_sym_end] = ACTIONS(1258), + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), [sym_comment] = ACTIONS(3), }, - [293] = { - [ts_builtin_sym_end] = ACTIONS(1234), - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [243] = { + [sym_attribute_declaration] = STATE(406), + [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), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), + [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(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [294] = { - [sym_attribute_declaration] = STATE(228), - [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(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [244] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token2] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [245] = { + [sym_attribute_declaration] = STATE(406), + [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(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -45601,20 +41323,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(646), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -45639,133 +41361,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [295] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [246] = { + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token2] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, - [296] = { - [sym_attribute_declaration] = STATE(228), - [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(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [247] = { + [sym_attribute_declaration] = STATE(406), + [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(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -45773,20 +41495,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(646), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -45811,47 +41533,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [297] = { - [sym_attribute_declaration] = STATE(228), - [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(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [248] = { + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), + [sym_comment] = ACTIONS(3), + }, + [249] = { + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), + [sym_preproc_directive] = ACTIONS(1272), + [anon_sym_LPAREN2] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym___attribute__] = ACTIONS(1272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), + [anon_sym___declspec] = ACTIONS(1272), + [anon_sym___cdecl] = ACTIONS(1272), + [anon_sym___clrcall] = ACTIONS(1272), + [anon_sym___stdcall] = ACTIONS(1272), + [anon_sym___fastcall] = ACTIONS(1272), + [anon_sym___thiscall] = ACTIONS(1272), + [anon_sym___vectorcall] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_auto] = ACTIONS(1272), + [anon_sym_register] = ACTIONS(1272), + [anon_sym_inline] = ACTIONS(1272), + [anon_sym_thread_local] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_constexpr] = ACTIONS(1272), + [anon_sym_volatile] = ACTIONS(1272), + [anon_sym_restrict] = ACTIONS(1272), + [anon_sym___restrict__] = ACTIONS(1272), + [anon_sym__Atomic] = ACTIONS(1272), + [anon_sym__Noreturn] = ACTIONS(1272), + [anon_sym_noreturn] = ACTIONS(1272), + [sym_primitive_type] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_sizeof] = ACTIONS(1272), + [anon_sym_offsetof] = ACTIONS(1272), + [anon_sym__Generic] = ACTIONS(1272), + [anon_sym_asm] = ACTIONS(1272), + [anon_sym___asm__] = ACTIONS(1272), + [sym_number_literal] = ACTIONS(1274), + [anon_sym_L_SQUOTE] = ACTIONS(1274), + [anon_sym_u_SQUOTE] = ACTIONS(1274), + [anon_sym_U_SQUOTE] = ACTIONS(1274), + [anon_sym_u8_SQUOTE] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_L_DQUOTE] = ACTIONS(1274), + [anon_sym_u_DQUOTE] = ACTIONS(1274), + [anon_sym_U_DQUOTE] = ACTIONS(1274), + [anon_sym_u8_DQUOTE] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_true] = ACTIONS(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), + [sym_comment] = ACTIONS(3), + }, + [250] = { + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), + }, + [251] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(291), + [sym_attributed_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -45859,20 +41839,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(646), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -45897,304 +41877,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [298] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token2] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), + [252] = { + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token2] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), + [sym_comment] = ACTIONS(3), + }, + [253] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token2] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), + [sym_comment] = ACTIONS(3), + }, + [254] = { + [sym_identifier] = ACTIONS(1196), + [aux_sym_preproc_include_token1] = ACTIONS(1196), + [aux_sym_preproc_def_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token2] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), + [sym_preproc_directive] = ACTIONS(1196), + [anon_sym_LPAREN2] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym___attribute__] = ACTIONS(1196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), + [anon_sym___declspec] = ACTIONS(1196), + [anon_sym___cdecl] = ACTIONS(1196), + [anon_sym___clrcall] = ACTIONS(1196), + [anon_sym___stdcall] = ACTIONS(1196), + [anon_sym___fastcall] = ACTIONS(1196), + [anon_sym___thiscall] = ACTIONS(1196), + [anon_sym___vectorcall] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_auto] = ACTIONS(1196), + [anon_sym_register] = ACTIONS(1196), + [anon_sym_inline] = ACTIONS(1196), + [anon_sym_thread_local] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_constexpr] = ACTIONS(1196), + [anon_sym_volatile] = ACTIONS(1196), + [anon_sym_restrict] = ACTIONS(1196), + [anon_sym___restrict__] = ACTIONS(1196), + [anon_sym__Atomic] = ACTIONS(1196), + [anon_sym__Noreturn] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [sym_primitive_type] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_switch] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_goto] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_sizeof] = ACTIONS(1196), + [anon_sym_offsetof] = ACTIONS(1196), + [anon_sym__Generic] = ACTIONS(1196), + [anon_sym_asm] = ACTIONS(1196), + [anon_sym___asm__] = ACTIONS(1196), + [sym_number_literal] = ACTIONS(1198), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1198), + [anon_sym_u_DQUOTE] = ACTIONS(1198), + [anon_sym_U_DQUOTE] = ACTIONS(1198), + [anon_sym_u8_DQUOTE] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_true] = ACTIONS(1196), + [sym_false] = ACTIONS(1196), + [anon_sym_NULL] = ACTIONS(1196), + [anon_sym_nullptr] = ACTIONS(1196), [sym_comment] = ACTIONS(3), }, - [299] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token2] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [255] = { + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token2] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), [sym_comment] = ACTIONS(3), }, - [300] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token2] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [256] = { + [ts_builtin_sym_end] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [301] = { - [sym_attribute_declaration] = STATE(228), - [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(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [257] = { + [ts_builtin_sym_end] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), + [sym_comment] = ACTIONS(3), + }, + [258] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(113), + [sym_attributed_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_case_statement] = STATE(113), + [sym_while_statement] = STATE(113), + [sym_do_statement] = STATE(113), + [sym_for_statement] = STATE(113), + [sym_return_statement] = STATE(113), + [sym_break_statement] = STATE(113), + [sym_continue_statement] = STATE(113), + [sym_goto_statement] = STATE(113), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -46203,20 +42441,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(646), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -46241,477 +42479,1079 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [302] = { - [ts_builtin_sym_end] = ACTIONS(1258), - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), + [259] = { + [sym_identifier] = ACTIONS(1324), + [aux_sym_preproc_include_token1] = ACTIONS(1324), + [aux_sym_preproc_def_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token1] = ACTIONS(1324), + [aux_sym_preproc_if_token2] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), + [sym_preproc_directive] = ACTIONS(1324), + [anon_sym_LPAREN2] = ACTIONS(1326), + [anon_sym_BANG] = ACTIONS(1326), + [anon_sym_TILDE] = ACTIONS(1326), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1326), + [anon_sym_AMP] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1324), + [anon_sym___attribute__] = ACTIONS(1324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), + [anon_sym___declspec] = ACTIONS(1324), + [anon_sym___cdecl] = ACTIONS(1324), + [anon_sym___clrcall] = ACTIONS(1324), + [anon_sym___stdcall] = ACTIONS(1324), + [anon_sym___fastcall] = ACTIONS(1324), + [anon_sym___thiscall] = ACTIONS(1324), + [anon_sym___vectorcall] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1326), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1324), + [anon_sym_auto] = ACTIONS(1324), + [anon_sym_register] = ACTIONS(1324), + [anon_sym_inline] = ACTIONS(1324), + [anon_sym_thread_local] = ACTIONS(1324), + [anon_sym_const] = ACTIONS(1324), + [anon_sym_constexpr] = ACTIONS(1324), + [anon_sym_volatile] = ACTIONS(1324), + [anon_sym_restrict] = ACTIONS(1324), + [anon_sym___restrict__] = ACTIONS(1324), + [anon_sym__Atomic] = ACTIONS(1324), + [anon_sym__Noreturn] = ACTIONS(1324), + [anon_sym_noreturn] = ACTIONS(1324), + [sym_primitive_type] = ACTIONS(1324), + [anon_sym_enum] = ACTIONS(1324), + [anon_sym_struct] = ACTIONS(1324), + [anon_sym_union] = ACTIONS(1324), + [anon_sym_if] = ACTIONS(1324), + [anon_sym_else] = ACTIONS(1324), + [anon_sym_switch] = ACTIONS(1324), + [anon_sym_case] = ACTIONS(1324), + [anon_sym_default] = ACTIONS(1324), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1324), + [anon_sym_for] = ACTIONS(1324), + [anon_sym_return] = ACTIONS(1324), + [anon_sym_break] = ACTIONS(1324), + [anon_sym_continue] = ACTIONS(1324), + [anon_sym_goto] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1326), + [anon_sym_PLUS_PLUS] = ACTIONS(1326), + [anon_sym_sizeof] = ACTIONS(1324), + [anon_sym_offsetof] = ACTIONS(1324), + [anon_sym__Generic] = ACTIONS(1324), + [anon_sym_asm] = ACTIONS(1324), + [anon_sym___asm__] = ACTIONS(1324), + [sym_number_literal] = ACTIONS(1326), + [anon_sym_L_SQUOTE] = ACTIONS(1326), + [anon_sym_u_SQUOTE] = ACTIONS(1326), + [anon_sym_U_SQUOTE] = ACTIONS(1326), + [anon_sym_u8_SQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_L_DQUOTE] = ACTIONS(1326), + [anon_sym_u_DQUOTE] = ACTIONS(1326), + [anon_sym_U_DQUOTE] = ACTIONS(1326), + [anon_sym_u8_DQUOTE] = ACTIONS(1326), + [anon_sym_DQUOTE] = ACTIONS(1326), + [sym_true] = ACTIONS(1324), + [sym_false] = ACTIONS(1324), + [anon_sym_NULL] = ACTIONS(1324), + [anon_sym_nullptr] = ACTIONS(1324), + [sym_comment] = ACTIONS(3), + }, + [260] = { + [sym_identifier] = ACTIONS(1280), + [aux_sym_preproc_include_token1] = ACTIONS(1280), + [aux_sym_preproc_def_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token2] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), + [sym_preproc_directive] = ACTIONS(1280), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), + [anon_sym___declspec] = ACTIONS(1280), + [anon_sym___cdecl] = ACTIONS(1280), + [anon_sym___clrcall] = ACTIONS(1280), + [anon_sym___stdcall] = ACTIONS(1280), + [anon_sym___fastcall] = ACTIONS(1280), + [anon_sym___thiscall] = ACTIONS(1280), + [anon_sym___vectorcall] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym_thread_local] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_constexpr] = ACTIONS(1280), + [anon_sym_volatile] = ACTIONS(1280), + [anon_sym_restrict] = ACTIONS(1280), + [anon_sym___restrict__] = ACTIONS(1280), + [anon_sym__Atomic] = ACTIONS(1280), + [anon_sym__Noreturn] = ACTIONS(1280), + [anon_sym_noreturn] = ACTIONS(1280), + [sym_primitive_type] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_goto] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym__Generic] = ACTIONS(1280), + [anon_sym_asm] = ACTIONS(1280), + [anon_sym___asm__] = ACTIONS(1280), + [sym_number_literal] = ACTIONS(1282), + [anon_sym_L_SQUOTE] = ACTIONS(1282), + [anon_sym_u_SQUOTE] = ACTIONS(1282), + [anon_sym_U_SQUOTE] = ACTIONS(1282), + [anon_sym_u8_SQUOTE] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_L_DQUOTE] = ACTIONS(1282), + [anon_sym_u_DQUOTE] = ACTIONS(1282), + [anon_sym_U_DQUOTE] = ACTIONS(1282), + [anon_sym_u8_DQUOTE] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_true] = ACTIONS(1280), + [sym_false] = ACTIONS(1280), + [anon_sym_NULL] = ACTIONS(1280), + [anon_sym_nullptr] = ACTIONS(1280), + [sym_comment] = ACTIONS(3), + }, + [261] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token2] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + }, + [262] = { + [sym_identifier] = ACTIONS(1268), + [aux_sym_preproc_include_token1] = ACTIONS(1268), + [aux_sym_preproc_def_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token1] = ACTIONS(1268), + [aux_sym_preproc_if_token2] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), + [sym_preproc_directive] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [anon_sym_typedef] = ACTIONS(1268), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym___attribute__] = ACTIONS(1268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), + [anon_sym___declspec] = ACTIONS(1268), + [anon_sym___cdecl] = ACTIONS(1268), + [anon_sym___clrcall] = ACTIONS(1268), + [anon_sym___stdcall] = ACTIONS(1268), + [anon_sym___fastcall] = ACTIONS(1268), + [anon_sym___thiscall] = ACTIONS(1268), + [anon_sym___vectorcall] = ACTIONS(1268), + [anon_sym_LBRACE] = ACTIONS(1270), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_auto] = ACTIONS(1268), + [anon_sym_register] = ACTIONS(1268), + [anon_sym_inline] = ACTIONS(1268), + [anon_sym_thread_local] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_constexpr] = ACTIONS(1268), + [anon_sym_volatile] = ACTIONS(1268), + [anon_sym_restrict] = ACTIONS(1268), + [anon_sym___restrict__] = ACTIONS(1268), + [anon_sym__Atomic] = ACTIONS(1268), + [anon_sym__Noreturn] = ACTIONS(1268), + [anon_sym_noreturn] = ACTIONS(1268), + [sym_primitive_type] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_else] = ACTIONS(1268), + [anon_sym_switch] = ACTIONS(1268), + [anon_sym_case] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_do] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_goto] = ACTIONS(1268), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [anon_sym_sizeof] = ACTIONS(1268), + [anon_sym_offsetof] = ACTIONS(1268), + [anon_sym__Generic] = ACTIONS(1268), + [anon_sym_asm] = ACTIONS(1268), + [anon_sym___asm__] = ACTIONS(1268), + [sym_number_literal] = ACTIONS(1270), + [anon_sym_L_SQUOTE] = ACTIONS(1270), + [anon_sym_u_SQUOTE] = ACTIONS(1270), + [anon_sym_U_SQUOTE] = ACTIONS(1270), + [anon_sym_u8_SQUOTE] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_L_DQUOTE] = ACTIONS(1270), + [anon_sym_u_DQUOTE] = ACTIONS(1270), + [anon_sym_U_DQUOTE] = ACTIONS(1270), + [anon_sym_u8_DQUOTE] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1270), + [sym_true] = ACTIONS(1268), + [sym_false] = ACTIONS(1268), + [anon_sym_NULL] = ACTIONS(1268), + [anon_sym_nullptr] = ACTIONS(1268), + [sym_comment] = ACTIONS(3), + }, + [263] = { + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1196), + [aux_sym_preproc_include_token1] = ACTIONS(1196), + [aux_sym_preproc_def_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), + [sym_preproc_directive] = ACTIONS(1196), + [anon_sym_LPAREN2] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym___attribute__] = ACTIONS(1196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), + [anon_sym___declspec] = ACTIONS(1196), + [anon_sym___cdecl] = ACTIONS(1196), + [anon_sym___clrcall] = ACTIONS(1196), + [anon_sym___stdcall] = ACTIONS(1196), + [anon_sym___fastcall] = ACTIONS(1196), + [anon_sym___thiscall] = ACTIONS(1196), + [anon_sym___vectorcall] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_auto] = ACTIONS(1196), + [anon_sym_register] = ACTIONS(1196), + [anon_sym_inline] = ACTIONS(1196), + [anon_sym_thread_local] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_constexpr] = ACTIONS(1196), + [anon_sym_volatile] = ACTIONS(1196), + [anon_sym_restrict] = ACTIONS(1196), + [anon_sym___restrict__] = ACTIONS(1196), + [anon_sym__Atomic] = ACTIONS(1196), + [anon_sym__Noreturn] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [sym_primitive_type] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_switch] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_goto] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_sizeof] = ACTIONS(1196), + [anon_sym_offsetof] = ACTIONS(1196), + [anon_sym__Generic] = ACTIONS(1196), + [anon_sym_asm] = ACTIONS(1196), + [anon_sym___asm__] = ACTIONS(1196), + [sym_number_literal] = ACTIONS(1198), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1198), + [anon_sym_u_DQUOTE] = ACTIONS(1198), + [anon_sym_U_DQUOTE] = ACTIONS(1198), + [anon_sym_u8_DQUOTE] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_true] = ACTIONS(1196), + [sym_false] = ACTIONS(1196), + [anon_sym_NULL] = ACTIONS(1196), + [anon_sym_nullptr] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + }, + [264] = { + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, - [303] = { - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_identifier] = ACTIONS(1252), - [aux_sym_preproc_include_token1] = ACTIONS(1252), - [aux_sym_preproc_def_token1] = ACTIONS(1252), - [aux_sym_preproc_if_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), - [sym_preproc_directive] = ACTIONS(1252), - [anon_sym_LPAREN2] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1254), - [anon_sym_TILDE] = ACTIONS(1254), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1252), - [anon_sym_extern] = ACTIONS(1252), - [anon_sym___attribute__] = ACTIONS(1252), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), - [anon_sym___declspec] = ACTIONS(1252), - [anon_sym___cdecl] = ACTIONS(1252), - [anon_sym___clrcall] = ACTIONS(1252), - [anon_sym___stdcall] = ACTIONS(1252), - [anon_sym___fastcall] = ACTIONS(1252), - [anon_sym___thiscall] = ACTIONS(1252), - [anon_sym___vectorcall] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = ACTIONS(1252), - [anon_sym_static] = ACTIONS(1252), - [anon_sym_auto] = ACTIONS(1252), - [anon_sym_register] = ACTIONS(1252), - [anon_sym_inline] = ACTIONS(1252), - [anon_sym_thread_local] = ACTIONS(1252), - [anon_sym_const] = ACTIONS(1252), - [anon_sym_constexpr] = ACTIONS(1252), - [anon_sym_volatile] = ACTIONS(1252), - [anon_sym_restrict] = ACTIONS(1252), - [anon_sym___restrict__] = ACTIONS(1252), - [anon_sym__Atomic] = ACTIONS(1252), - [anon_sym__Noreturn] = ACTIONS(1252), - [anon_sym_noreturn] = ACTIONS(1252), - [sym_primitive_type] = ACTIONS(1252), - [anon_sym_enum] = ACTIONS(1252), - [anon_sym_struct] = ACTIONS(1252), - [anon_sym_union] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_switch] = ACTIONS(1252), - [anon_sym_case] = ACTIONS(1252), - [anon_sym_default] = ACTIONS(1252), - [anon_sym_while] = ACTIONS(1252), - [anon_sym_do] = ACTIONS(1252), - [anon_sym_for] = ACTIONS(1252), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_break] = ACTIONS(1252), - [anon_sym_continue] = ACTIONS(1252), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1254), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_sizeof] = ACTIONS(1252), - [anon_sym_offsetof] = ACTIONS(1252), - [anon_sym__Generic] = ACTIONS(1252), - [anon_sym_asm] = ACTIONS(1252), - [anon_sym___asm__] = ACTIONS(1252), - [sym_number_literal] = ACTIONS(1254), - [anon_sym_L_SQUOTE] = ACTIONS(1254), - [anon_sym_u_SQUOTE] = ACTIONS(1254), - [anon_sym_U_SQUOTE] = ACTIONS(1254), - [anon_sym_u8_SQUOTE] = ACTIONS(1254), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_L_DQUOTE] = ACTIONS(1254), - [anon_sym_u_DQUOTE] = ACTIONS(1254), - [anon_sym_U_DQUOTE] = ACTIONS(1254), - [anon_sym_u8_DQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1254), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [anon_sym_NULL] = ACTIONS(1252), - [anon_sym_nullptr] = ACTIONS(1252), + [265] = { + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1280), + [aux_sym_preproc_include_token1] = ACTIONS(1280), + [aux_sym_preproc_def_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), + [sym_preproc_directive] = ACTIONS(1280), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), + [anon_sym___declspec] = ACTIONS(1280), + [anon_sym___cdecl] = ACTIONS(1280), + [anon_sym___clrcall] = ACTIONS(1280), + [anon_sym___stdcall] = ACTIONS(1280), + [anon_sym___fastcall] = ACTIONS(1280), + [anon_sym___thiscall] = ACTIONS(1280), + [anon_sym___vectorcall] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym_thread_local] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_constexpr] = ACTIONS(1280), + [anon_sym_volatile] = ACTIONS(1280), + [anon_sym_restrict] = ACTIONS(1280), + [anon_sym___restrict__] = ACTIONS(1280), + [anon_sym__Atomic] = ACTIONS(1280), + [anon_sym__Noreturn] = ACTIONS(1280), + [anon_sym_noreturn] = ACTIONS(1280), + [sym_primitive_type] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_goto] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym__Generic] = ACTIONS(1280), + [anon_sym_asm] = ACTIONS(1280), + [anon_sym___asm__] = ACTIONS(1280), + [sym_number_literal] = ACTIONS(1282), + [anon_sym_L_SQUOTE] = ACTIONS(1282), + [anon_sym_u_SQUOTE] = ACTIONS(1282), + [anon_sym_U_SQUOTE] = ACTIONS(1282), + [anon_sym_u8_SQUOTE] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_L_DQUOTE] = ACTIONS(1282), + [anon_sym_u_DQUOTE] = ACTIONS(1282), + [anon_sym_U_DQUOTE] = ACTIONS(1282), + [anon_sym_u8_DQUOTE] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_true] = ACTIONS(1280), + [sym_false] = ACTIONS(1280), + [anon_sym_NULL] = ACTIONS(1280), + [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1250), - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), + [266] = { + [sym_identifier] = ACTIONS(1284), + [aux_sym_preproc_include_token1] = ACTIONS(1284), + [aux_sym_preproc_def_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token2] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1284), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym___attribute__] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), + [anon_sym___declspec] = ACTIONS(1284), + [anon_sym___cdecl] = ACTIONS(1284), + [anon_sym___clrcall] = ACTIONS(1284), + [anon_sym___stdcall] = ACTIONS(1284), + [anon_sym___fastcall] = ACTIONS(1284), + [anon_sym___thiscall] = ACTIONS(1284), + [anon_sym___vectorcall] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_inline] = ACTIONS(1284), + [anon_sym_thread_local] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_constexpr] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym___restrict__] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(1284), + [anon_sym__Noreturn] = ACTIONS(1284), + [anon_sym_noreturn] = ACTIONS(1284), + [sym_primitive_type] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym__Generic] = ACTIONS(1284), + [anon_sym_asm] = ACTIONS(1284), + [anon_sym___asm__] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1286), + [anon_sym_L_SQUOTE] = ACTIONS(1286), + [anon_sym_u_SQUOTE] = ACTIONS(1286), + [anon_sym_U_SQUOTE] = ACTIONS(1286), + [anon_sym_u8_SQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_L_DQUOTE] = ACTIONS(1286), + [anon_sym_u_DQUOTE] = ACTIONS(1286), + [anon_sym_U_DQUOTE] = ACTIONS(1286), + [anon_sym_u8_DQUOTE] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(1284), + [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [305] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [267] = { + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1284), + [aux_sym_preproc_include_token1] = ACTIONS(1284), + [aux_sym_preproc_def_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1284), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym___attribute__] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), + [anon_sym___declspec] = ACTIONS(1284), + [anon_sym___cdecl] = ACTIONS(1284), + [anon_sym___clrcall] = ACTIONS(1284), + [anon_sym___stdcall] = ACTIONS(1284), + [anon_sym___fastcall] = ACTIONS(1284), + [anon_sym___thiscall] = ACTIONS(1284), + [anon_sym___vectorcall] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_inline] = ACTIONS(1284), + [anon_sym_thread_local] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_constexpr] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym___restrict__] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(1284), + [anon_sym__Noreturn] = ACTIONS(1284), + [anon_sym_noreturn] = ACTIONS(1284), + [sym_primitive_type] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym__Generic] = ACTIONS(1284), + [anon_sym_asm] = ACTIONS(1284), + [anon_sym___asm__] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1286), + [anon_sym_L_SQUOTE] = ACTIONS(1286), + [anon_sym_u_SQUOTE] = ACTIONS(1286), + [anon_sym_U_SQUOTE] = ACTIONS(1286), + [anon_sym_u8_SQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_L_DQUOTE] = ACTIONS(1286), + [anon_sym_u_DQUOTE] = ACTIONS(1286), + [anon_sym_U_DQUOTE] = ACTIONS(1286), + [anon_sym_u8_DQUOTE] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(1284), + [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [306] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token2] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [268] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token2] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [sym_preproc_directive] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [anon_sym_thread_local] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_constexpr] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym___restrict__] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym__Noreturn] = ACTIONS(1288), + [anon_sym_noreturn] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym__Generic] = ACTIONS(1288), + [anon_sym_asm] = ACTIONS(1288), + [anon_sym___asm__] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1290), + [anon_sym_L_SQUOTE] = ACTIONS(1290), + [anon_sym_u_SQUOTE] = ACTIONS(1290), + [anon_sym_U_SQUOTE] = ACTIONS(1290), + [anon_sym_u8_SQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_L_DQUOTE] = ACTIONS(1290), + [anon_sym_u_DQUOTE] = ACTIONS(1290), + [anon_sym_U_DQUOTE] = ACTIONS(1290), + [anon_sym_u8_DQUOTE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [anon_sym_NULL] = ACTIONS(1288), + [anon_sym_nullptr] = ACTIONS(1288), [sym_comment] = ACTIONS(3), }, - [307] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(291), - [sym_attributed_statement] = STATE(291), - [sym_labeled_statement] = STATE(291), - [sym_expression_statement] = STATE(291), - [sym_if_statement] = STATE(291), - [sym_switch_statement] = STATE(291), - [sym_case_statement] = STATE(291), - [sym_while_statement] = STATE(291), - [sym_do_statement] = STATE(291), - [sym_for_statement] = STATE(291), - [sym_return_statement] = STATE(291), - [sym_break_statement] = STATE(291), - [sym_continue_statement] = STATE(291), - [sym_goto_statement] = STATE(291), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [269] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(293), + [sym_attributed_statement] = STATE(293), + [sym_labeled_statement] = STATE(293), + [sym_expression_statement] = STATE(293), + [sym_if_statement] = STATE(293), + [sym_switch_statement] = STATE(293), + [sym_case_statement] = STATE(293), + [sym_while_statement] = STATE(293), + [sym_do_statement] = STATE(293), + [sym_for_statement] = STATE(293), + [sym_return_statement] = STATE(293), + [sym_break_statement] = STATE(293), + [sym_continue_statement] = STATE(293), + [sym_goto_statement] = STATE(293), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), + [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(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [270] = { + [sym_identifier] = ACTIONS(1260), + [aux_sym_preproc_include_token1] = ACTIONS(1260), + [aux_sym_preproc_def_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token2] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1260), + [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym___attribute__] = ACTIONS(1260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), + [anon_sym___declspec] = ACTIONS(1260), + [anon_sym___cdecl] = ACTIONS(1260), + [anon_sym___clrcall] = ACTIONS(1260), + [anon_sym___stdcall] = ACTIONS(1260), + [anon_sym___fastcall] = ACTIONS(1260), + [anon_sym___thiscall] = ACTIONS(1260), + [anon_sym___vectorcall] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_inline] = ACTIONS(1260), + [anon_sym_thread_local] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_constexpr] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym___restrict__] = ACTIONS(1260), + [anon_sym__Atomic] = ACTIONS(1260), + [anon_sym__Noreturn] = ACTIONS(1260), + [anon_sym_noreturn] = ACTIONS(1260), + [sym_primitive_type] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_else] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym__Generic] = ACTIONS(1260), + [anon_sym_asm] = ACTIONS(1260), + [anon_sym___asm__] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1262), + [anon_sym_L_SQUOTE] = ACTIONS(1262), + [anon_sym_u_SQUOTE] = ACTIONS(1262), + [anon_sym_U_SQUOTE] = ACTIONS(1262), + [anon_sym_u8_SQUOTE] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_L_DQUOTE] = ACTIONS(1262), + [anon_sym_u_DQUOTE] = ACTIONS(1262), + [anon_sym_U_DQUOTE] = ACTIONS(1262), + [anon_sym_u8_DQUOTE] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [anon_sym_NULL] = ACTIONS(1260), + [anon_sym_nullptr] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + }, + [271] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46719,20 +43559,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(646), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -46757,907 +43597,1079 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [308] = { - [ts_builtin_sym_end] = ACTIONS(1306), - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [272] = { + [sym_identifier] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1252), + [aux_sym_preproc_def_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token2] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [sym_preproc_directive] = ACTIONS(1252), + [anon_sym_LPAREN2] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym___attribute__] = ACTIONS(1252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1252), + [anon_sym___cdecl] = ACTIONS(1252), + [anon_sym___clrcall] = ACTIONS(1252), + [anon_sym___stdcall] = ACTIONS(1252), + [anon_sym___fastcall] = ACTIONS(1252), + [anon_sym___thiscall] = ACTIONS(1252), + [anon_sym___vectorcall] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_auto] = ACTIONS(1252), + [anon_sym_register] = ACTIONS(1252), + [anon_sym_inline] = ACTIONS(1252), + [anon_sym_thread_local] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_constexpr] = ACTIONS(1252), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [309] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), + [273] = { + [sym_identifier] = ACTIONS(1244), + [aux_sym_preproc_include_token1] = ACTIONS(1244), + [aux_sym_preproc_def_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token2] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), + [sym_preproc_directive] = ACTIONS(1244), + [anon_sym_LPAREN2] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym___attribute__] = ACTIONS(1244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), + [anon_sym___declspec] = ACTIONS(1244), + [anon_sym___cdecl] = ACTIONS(1244), + [anon_sym___clrcall] = ACTIONS(1244), + [anon_sym___stdcall] = ACTIONS(1244), + [anon_sym___fastcall] = ACTIONS(1244), + [anon_sym___thiscall] = ACTIONS(1244), + [anon_sym___vectorcall] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_auto] = ACTIONS(1244), + [anon_sym_register] = ACTIONS(1244), + [anon_sym_inline] = ACTIONS(1244), + [anon_sym_thread_local] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_constexpr] = ACTIONS(1244), + [anon_sym_volatile] = ACTIONS(1244), + [anon_sym_restrict] = ACTIONS(1244), + [anon_sym___restrict__] = ACTIONS(1244), + [anon_sym__Atomic] = ACTIONS(1244), + [anon_sym__Noreturn] = ACTIONS(1244), + [anon_sym_noreturn] = ACTIONS(1244), + [sym_primitive_type] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_else] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1244), + [anon_sym_case] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_do] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_goto] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_sizeof] = ACTIONS(1244), + [anon_sym_offsetof] = ACTIONS(1244), + [anon_sym__Generic] = ACTIONS(1244), + [anon_sym_asm] = ACTIONS(1244), + [anon_sym___asm__] = ACTIONS(1244), + [sym_number_literal] = ACTIONS(1246), + [anon_sym_L_SQUOTE] = ACTIONS(1246), + [anon_sym_u_SQUOTE] = ACTIONS(1246), + [anon_sym_U_SQUOTE] = ACTIONS(1246), + [anon_sym_u8_SQUOTE] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_L_DQUOTE] = ACTIONS(1246), + [anon_sym_u_DQUOTE] = ACTIONS(1246), + [anon_sym_U_DQUOTE] = ACTIONS(1246), + [anon_sym_u8_DQUOTE] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [sym_true] = ACTIONS(1244), + [sym_false] = ACTIONS(1244), + [anon_sym_NULL] = ACTIONS(1244), + [anon_sym_nullptr] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + }, + [274] = { + [sym_identifier] = ACTIONS(1224), + [aux_sym_preproc_include_token1] = ACTIONS(1224), + [aux_sym_preproc_def_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token2] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), + [sym_preproc_directive] = ACTIONS(1224), + [anon_sym_LPAREN2] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym___attribute__] = ACTIONS(1224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), + [anon_sym___declspec] = ACTIONS(1224), + [anon_sym___cdecl] = ACTIONS(1224), + [anon_sym___clrcall] = ACTIONS(1224), + [anon_sym___stdcall] = ACTIONS(1224), + [anon_sym___fastcall] = ACTIONS(1224), + [anon_sym___thiscall] = ACTIONS(1224), + [anon_sym___vectorcall] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_auto] = ACTIONS(1224), + [anon_sym_register] = ACTIONS(1224), + [anon_sym_inline] = ACTIONS(1224), + [anon_sym_thread_local] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_constexpr] = ACTIONS(1224), + [anon_sym_volatile] = ACTIONS(1224), + [anon_sym_restrict] = ACTIONS(1224), + [anon_sym___restrict__] = ACTIONS(1224), + [anon_sym__Atomic] = ACTIONS(1224), + [anon_sym__Noreturn] = ACTIONS(1224), + [anon_sym_noreturn] = ACTIONS(1224), + [sym_primitive_type] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_goto] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1224), + [anon_sym_offsetof] = ACTIONS(1224), + [anon_sym__Generic] = ACTIONS(1224), + [anon_sym_asm] = ACTIONS(1224), + [anon_sym___asm__] = ACTIONS(1224), + [sym_number_literal] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1226), + [anon_sym_u_SQUOTE] = ACTIONS(1226), + [anon_sym_U_SQUOTE] = ACTIONS(1226), + [anon_sym_u8_SQUOTE] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_L_DQUOTE] = ACTIONS(1226), + [anon_sym_u_DQUOTE] = ACTIONS(1226), + [anon_sym_U_DQUOTE] = ACTIONS(1226), + [anon_sym_u8_DQUOTE] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [anon_sym_NULL] = ACTIONS(1224), + [anon_sym_nullptr] = ACTIONS(1224), + [sym_comment] = ACTIONS(3), + }, + [275] = { + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [310] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token2] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), + [276] = { + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token2] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [sym_primitive_type] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), [sym_comment] = ACTIONS(3), }, - [311] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(290), - [sym_attributed_statement] = STATE(290), - [sym_labeled_statement] = STATE(290), - [sym_expression_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_switch_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_do_statement] = STATE(290), - [sym_for_statement] = STATE(290), - [sym_return_statement] = STATE(290), - [sym_break_statement] = STATE(290), - [sym_continue_statement] = STATE(290), - [sym_goto_statement] = STATE(290), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), - [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(646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [277] = { + [ts_builtin_sym_end] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [312] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(260), - [sym_attributed_statement] = STATE(260), - [sym_labeled_statement] = STATE(260), - [sym_expression_statement] = STATE(260), - [sym_if_statement] = STATE(260), - [sym_switch_statement] = STATE(260), - [sym_case_statement] = STATE(260), - [sym_while_statement] = STATE(260), - [sym_do_statement] = STATE(260), - [sym_for_statement] = STATE(260), - [sym_return_statement] = STATE(260), - [sym_break_statement] = STATE(260), - [sym_continue_statement] = STATE(260), - [sym_goto_statement] = STATE(260), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), - [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(646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [278] = { + [sym_identifier] = ACTIONS(1204), + [aux_sym_preproc_include_token1] = ACTIONS(1204), + [aux_sym_preproc_def_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token2] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), + [sym_preproc_directive] = ACTIONS(1204), + [anon_sym_LPAREN2] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym___attribute__] = ACTIONS(1204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), + [anon_sym___declspec] = ACTIONS(1204), + [anon_sym___cdecl] = ACTIONS(1204), + [anon_sym___clrcall] = ACTIONS(1204), + [anon_sym___stdcall] = ACTIONS(1204), + [anon_sym___fastcall] = ACTIONS(1204), + [anon_sym___thiscall] = ACTIONS(1204), + [anon_sym___vectorcall] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_auto] = ACTIONS(1204), + [anon_sym_register] = ACTIONS(1204), + [anon_sym_inline] = ACTIONS(1204), + [anon_sym_thread_local] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_constexpr] = ACTIONS(1204), + [anon_sym_volatile] = ACTIONS(1204), + [anon_sym_restrict] = ACTIONS(1204), + [anon_sym___restrict__] = ACTIONS(1204), + [anon_sym__Atomic] = ACTIONS(1204), + [anon_sym__Noreturn] = ACTIONS(1204), + [anon_sym_noreturn] = ACTIONS(1204), + [sym_primitive_type] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_goto] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_sizeof] = ACTIONS(1204), + [anon_sym_offsetof] = ACTIONS(1204), + [anon_sym__Generic] = ACTIONS(1204), + [anon_sym_asm] = ACTIONS(1204), + [anon_sym___asm__] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1206), + [anon_sym_u_SQUOTE] = ACTIONS(1206), + [anon_sym_U_SQUOTE] = ACTIONS(1206), + [anon_sym_u8_SQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_L_DQUOTE] = ACTIONS(1206), + [anon_sym_u_DQUOTE] = ACTIONS(1206), + [anon_sym_U_DQUOTE] = ACTIONS(1206), + [anon_sym_u8_DQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [anon_sym_NULL] = ACTIONS(1204), + [anon_sym_nullptr] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [313] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(280), - [sym_attributed_statement] = STATE(280), - [sym_labeled_statement] = STATE(280), - [sym_expression_statement] = STATE(280), - [sym_if_statement] = STATE(280), - [sym_switch_statement] = STATE(280), - [sym_case_statement] = STATE(280), - [sym_while_statement] = STATE(280), - [sym_do_statement] = STATE(280), - [sym_for_statement] = STATE(280), - [sym_return_statement] = STATE(280), - [sym_break_statement] = STATE(280), - [sym_continue_statement] = STATE(280), - [sym_goto_statement] = STATE(280), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), - [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(646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [279] = { + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token2] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [314] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(268), - [sym_attributed_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(268), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), - [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(646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [280] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token2] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [315] = { - [sym_attribute_declaration] = STATE(341), - [sym_compound_statement] = STATE(340), - [sym_attributed_statement] = STATE(340), - [sym_labeled_statement] = STATE(340), - [sym_expression_statement] = STATE(340), - [sym_if_statement] = STATE(340), - [sym_switch_statement] = STATE(340), - [sym_case_statement] = STATE(340), - [sym_while_statement] = STATE(340), - [sym_do_statement] = STATE(340), - [sym_for_statement] = STATE(340), - [sym_return_statement] = STATE(340), - [sym_break_statement] = STATE(340), - [sym_continue_statement] = STATE(340), - [sym_goto_statement] = STATE(340), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(341), - [sym_identifier] = ACTIONS(1553), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [281] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token2] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [316] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(223), - [sym_attributed_statement] = STATE(223), - [sym_labeled_statement] = STATE(223), - [sym_expression_statement] = STATE(223), - [sym_if_statement] = STATE(223), - [sym_switch_statement] = STATE(223), - [sym_case_statement] = STATE(223), - [sym_while_statement] = STATE(223), - [sym_do_statement] = STATE(223), - [sym_for_statement] = STATE(223), - [sym_return_statement] = STATE(223), - [sym_break_statement] = STATE(223), - [sym_continue_statement] = STATE(223), - [sym_goto_statement] = STATE(223), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), - [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(646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [282] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token2] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [317] = { - [sym_attribute_declaration] = STATE(317), - [sym_compound_statement] = STATE(274), - [sym_attributed_statement] = STATE(274), - [sym_labeled_statement] = STATE(274), - [sym_expression_statement] = STATE(274), - [sym_if_statement] = STATE(274), - [sym_switch_statement] = STATE(274), - [sym_case_statement] = STATE(274), - [sym_while_statement] = STATE(274), - [sym_do_statement] = STATE(274), - [sym_for_statement] = STATE(274), - [sym_return_statement] = STATE(274), - [sym_break_statement] = STATE(274), - [sym_continue_statement] = STATE(274), - [sym_goto_statement] = STATE(274), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(317), - [sym_identifier] = ACTIONS(1555), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1567), - [anon_sym_case] = ACTIONS(1570), - [anon_sym_default] = ACTIONS(1573), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1585), - [anon_sym_break] = ACTIONS(1588), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_goto] = ACTIONS(1594), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1516), - [anon_sym_offsetof] = ACTIONS(1519), - [anon_sym__Generic] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym___asm__] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1528), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1534), - [anon_sym_u_DQUOTE] = ACTIONS(1534), - [anon_sym_U_DQUOTE] = ACTIONS(1534), - [anon_sym_u8_DQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [anon_sym_NULL] = ACTIONS(1540), - [anon_sym_nullptr] = ACTIONS(1540), + [283] = { + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [sym_preproc_directive] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [anon_sym_thread_local] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_constexpr] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym___restrict__] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym__Noreturn] = ACTIONS(1288), + [anon_sym_noreturn] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym__Generic] = ACTIONS(1288), + [anon_sym_asm] = ACTIONS(1288), + [anon_sym___asm__] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1290), + [anon_sym_L_SQUOTE] = ACTIONS(1290), + [anon_sym_u_SQUOTE] = ACTIONS(1290), + [anon_sym_U_SQUOTE] = ACTIONS(1290), + [anon_sym_u8_SQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_L_DQUOTE] = ACTIONS(1290), + [anon_sym_u_DQUOTE] = ACTIONS(1290), + [anon_sym_U_DQUOTE] = ACTIONS(1290), + [anon_sym_u8_DQUOTE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [anon_sym_NULL] = ACTIONS(1288), + [anon_sym_nullptr] = ACTIONS(1288), [sym_comment] = ACTIONS(3), }, - [318] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(251), - [sym_attributed_statement] = STATE(251), - [sym_labeled_statement] = STATE(251), - [sym_expression_statement] = STATE(251), - [sym_if_statement] = STATE(251), - [sym_switch_statement] = STATE(251), - [sym_case_statement] = STATE(251), - [sym_while_statement] = STATE(251), - [sym_do_statement] = STATE(251), - [sym_for_statement] = STATE(251), - [sym_return_statement] = STATE(251), - [sym_break_statement] = STATE(251), - [sym_continue_statement] = STATE(251), - [sym_goto_statement] = STATE(251), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [284] = { + [sym_attribute_declaration] = STATE(406), + [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(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47665,20 +44677,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(646), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -47703,47 +44715,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [319] = { - [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(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [285] = { + [sym_attribute_declaration] = STATE(406), + [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(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47751,20 +44763,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(646), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -47789,47 +44801,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_attribute_declaration] = STATE(228), - [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(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [286] = { + [sym_attribute_declaration] = STATE(406), + [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(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47837,20 +44849,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(646), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -47875,735 +44887,1079 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_attribute_declaration] = STATE(321), - [sym_compound_statement] = STATE(323), - [sym_attributed_statement] = STATE(323), - [sym_labeled_statement] = STATE(323), - [sym_expression_statement] = STATE(323), - [sym_if_statement] = STATE(323), - [sym_switch_statement] = STATE(323), - [sym_case_statement] = STATE(323), - [sym_while_statement] = STATE(323), - [sym_do_statement] = STATE(323), - [sym_for_statement] = STATE(323), - [sym_return_statement] = STATE(323), - [sym_break_statement] = STATE(323), - [sym_continue_statement] = STATE(323), - [sym_goto_statement] = STATE(323), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(321), - [sym_identifier] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1600), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1606), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_case] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1618), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_goto] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1516), - [anon_sym_offsetof] = ACTIONS(1519), - [anon_sym__Generic] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym___asm__] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1528), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1534), - [anon_sym_u_DQUOTE] = ACTIONS(1534), - [anon_sym_U_DQUOTE] = ACTIONS(1534), - [anon_sym_u8_DQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [anon_sym_NULL] = ACTIONS(1540), - [anon_sym_nullptr] = ACTIONS(1540), + [287] = { + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1220), + [aux_sym_preproc_include_token1] = ACTIONS(1220), + [aux_sym_preproc_def_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym___attribute__] = ACTIONS(1220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(1220), + [anon_sym___cdecl] = ACTIONS(1220), + [anon_sym___clrcall] = ACTIONS(1220), + [anon_sym___stdcall] = ACTIONS(1220), + [anon_sym___fastcall] = ACTIONS(1220), + [anon_sym___thiscall] = ACTIONS(1220), + [anon_sym___vectorcall] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_thread_local] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_constexpr] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym___restrict__] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym__Noreturn] = ACTIONS(1220), + [anon_sym_noreturn] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_else] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_sizeof] = ACTIONS(1220), + [anon_sym_offsetof] = ACTIONS(1220), + [anon_sym__Generic] = ACTIONS(1220), + [anon_sym_asm] = ACTIONS(1220), + [anon_sym___asm__] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1222), + [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(1222), + [anon_sym_u_DQUOTE] = ACTIONS(1222), + [anon_sym_U_DQUOTE] = ACTIONS(1222), + [anon_sym_u8_DQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [anon_sym_NULL] = ACTIONS(1220), + [anon_sym_nullptr] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + }, + [288] = { + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + }, + [289] = { + [ts_builtin_sym_end] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1208), + [aux_sym_preproc_include_token1] = ACTIONS(1208), + [aux_sym_preproc_def_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), + [sym_preproc_directive] = ACTIONS(1208), + [anon_sym_LPAREN2] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym___attribute__] = ACTIONS(1208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(1208), + [anon_sym___cdecl] = ACTIONS(1208), + [anon_sym___clrcall] = ACTIONS(1208), + [anon_sym___stdcall] = ACTIONS(1208), + [anon_sym___fastcall] = ACTIONS(1208), + [anon_sym___thiscall] = ACTIONS(1208), + [anon_sym___vectorcall] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_auto] = ACTIONS(1208), + [anon_sym_register] = ACTIONS(1208), + [anon_sym_inline] = ACTIONS(1208), + [anon_sym_thread_local] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_constexpr] = ACTIONS(1208), + [anon_sym_volatile] = ACTIONS(1208), + [anon_sym_restrict] = ACTIONS(1208), + [anon_sym___restrict__] = ACTIONS(1208), + [anon_sym__Atomic] = ACTIONS(1208), + [anon_sym__Noreturn] = ACTIONS(1208), + [anon_sym_noreturn] = ACTIONS(1208), + [sym_primitive_type] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_goto] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1208), + [anon_sym__Generic] = ACTIONS(1208), + [anon_sym_asm] = ACTIONS(1208), + [anon_sym___asm__] = ACTIONS(1208), + [sym_number_literal] = ACTIONS(1210), + [anon_sym_L_SQUOTE] = ACTIONS(1210), + [anon_sym_u_SQUOTE] = ACTIONS(1210), + [anon_sym_U_SQUOTE] = ACTIONS(1210), + [anon_sym_u8_SQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_L_DQUOTE] = ACTIONS(1210), + [anon_sym_u_DQUOTE] = ACTIONS(1210), + [anon_sym_U_DQUOTE] = ACTIONS(1210), + [anon_sym_u8_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [anon_sym_NULL] = ACTIONS(1208), + [anon_sym_nullptr] = ACTIONS(1208), + [sym_comment] = ACTIONS(3), + }, + [290] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), + [sym_comment] = ACTIONS(3), + }, + [291] = { + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [322] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(1944), - [sym_attributed_statement] = STATE(1944), - [sym_labeled_statement] = STATE(1944), - [sym_expression_statement] = STATE(1944), - [sym_if_statement] = STATE(1944), - [sym_switch_statement] = STATE(1944), - [sym_case_statement] = STATE(1944), - [sym_while_statement] = STATE(1944), - [sym_do_statement] = STATE(1944), - [sym_for_statement] = STATE(1944), - [sym_return_statement] = STATE(1944), - [sym_break_statement] = STATE(1944), - [sym_continue_statement] = STATE(1944), - [sym_goto_statement] = STATE(1944), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [292] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token2] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [323] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), + [293] = { + [ts_builtin_sym_end] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [324] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [294] = { + [ts_builtin_sym_end] = ACTIONS(1302), + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [325] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(254), - [sym_attributed_statement] = STATE(254), - [sym_labeled_statement] = STATE(254), - [sym_expression_statement] = STATE(254), - [sym_if_statement] = STATE(254), - [sym_switch_statement] = STATE(254), - [sym_case_statement] = STATE(254), - [sym_while_statement] = STATE(254), - [sym_do_statement] = STATE(254), - [sym_for_statement] = STATE(254), - [sym_return_statement] = STATE(254), - [sym_break_statement] = STATE(254), - [sym_continue_statement] = STATE(254), - [sym_goto_statement] = STATE(254), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), - [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(646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [295] = { + [ts_builtin_sym_end] = ACTIONS(1346), + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [326] = { - [sym_attribute_declaration] = STATE(228), - [sym_compound_statement] = STATE(204), - [sym_attributed_statement] = STATE(204), - [sym_labeled_statement] = STATE(204), - [sym_expression_statement] = STATE(204), - [sym_if_statement] = STATE(204), - [sym_switch_statement] = STATE(204), - [sym_case_statement] = STATE(204), - [sym_while_statement] = STATE(204), - [sym_do_statement] = STATE(204), - [sym_for_statement] = STATE(204), - [sym_return_statement] = STATE(204), - [sym_break_statement] = STATE(204), - [sym_continue_statement] = STATE(204), - [sym_goto_statement] = STATE(204), - [sym__expression] = STATE(1087), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1762), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(228), - [sym_identifier] = ACTIONS(1452), - [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(646), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(652), - [anon_sym_if] = ACTIONS(654), - [anon_sym_switch] = ACTIONS(656), - [anon_sym_case] = ACTIONS(658), - [anon_sym_default] = ACTIONS(660), - [anon_sym_while] = ACTIONS(662), - [anon_sym_do] = ACTIONS(664), - [anon_sym_for] = ACTIONS(666), - [anon_sym_return] = ACTIONS(668), - [anon_sym_break] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(674), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [296] = { + [ts_builtin_sym_end] = ACTIONS(1306), + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [327] = { - [sym_identifier] = ACTIONS(1316), - [aux_sym_preproc_include_token1] = ACTIONS(1316), - [aux_sym_preproc_def_token1] = ACTIONS(1316), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), - [sym_preproc_directive] = ACTIONS(1316), - [anon_sym_LPAREN2] = ACTIONS(1318), - [anon_sym_BANG] = ACTIONS(1318), - [anon_sym_TILDE] = ACTIONS(1318), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(1318), - [anon_sym_SEMI] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1316), - [anon_sym_extern] = ACTIONS(1316), - [anon_sym___attribute__] = ACTIONS(1316), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), - [anon_sym___declspec] = ACTIONS(1316), - [anon_sym___cdecl] = ACTIONS(1316), - [anon_sym___clrcall] = ACTIONS(1316), - [anon_sym___stdcall] = ACTIONS(1316), - [anon_sym___fastcall] = ACTIONS(1316), - [anon_sym___thiscall] = ACTIONS(1316), - [anon_sym___vectorcall] = ACTIONS(1316), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = ACTIONS(1316), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_auto] = ACTIONS(1316), - [anon_sym_register] = ACTIONS(1316), - [anon_sym_inline] = ACTIONS(1316), - [anon_sym_thread_local] = ACTIONS(1316), - [anon_sym_const] = ACTIONS(1316), - [anon_sym_constexpr] = ACTIONS(1316), - [anon_sym_volatile] = ACTIONS(1316), - [anon_sym_restrict] = ACTIONS(1316), - [anon_sym___restrict__] = ACTIONS(1316), - [anon_sym__Atomic] = ACTIONS(1316), - [anon_sym__Noreturn] = ACTIONS(1316), - [anon_sym_noreturn] = ACTIONS(1316), - [sym_primitive_type] = ACTIONS(1316), - [anon_sym_enum] = ACTIONS(1316), - [anon_sym_struct] = ACTIONS(1316), - [anon_sym_union] = ACTIONS(1316), - [anon_sym_if] = ACTIONS(1316), - [anon_sym_else] = ACTIONS(1316), - [anon_sym_switch] = ACTIONS(1316), - [anon_sym_case] = ACTIONS(1316), - [anon_sym_default] = ACTIONS(1316), - [anon_sym_while] = ACTIONS(1316), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1316), - [anon_sym_return] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1316), - [anon_sym_continue] = ACTIONS(1316), - [anon_sym_goto] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1318), - [anon_sym_PLUS_PLUS] = ACTIONS(1318), - [anon_sym_sizeof] = ACTIONS(1316), - [anon_sym_offsetof] = ACTIONS(1316), - [anon_sym__Generic] = ACTIONS(1316), - [anon_sym_asm] = ACTIONS(1316), - [anon_sym___asm__] = ACTIONS(1316), - [sym_number_literal] = ACTIONS(1318), - [anon_sym_L_SQUOTE] = ACTIONS(1318), - [anon_sym_u_SQUOTE] = ACTIONS(1318), - [anon_sym_U_SQUOTE] = ACTIONS(1318), - [anon_sym_u8_SQUOTE] = ACTIONS(1318), - [anon_sym_SQUOTE] = ACTIONS(1318), - [anon_sym_L_DQUOTE] = ACTIONS(1318), - [anon_sym_u_DQUOTE] = ACTIONS(1318), - [anon_sym_U_DQUOTE] = ACTIONS(1318), - [anon_sym_u8_DQUOTE] = ACTIONS(1318), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_true] = ACTIONS(1316), - [sym_false] = ACTIONS(1316), - [anon_sym_NULL] = ACTIONS(1316), - [anon_sym_nullptr] = ACTIONS(1316), + [297] = { + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token2] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, - [328] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(216), - [sym_attributed_statement] = STATE(216), - [sym_labeled_statement] = STATE(216), - [sym_expression_statement] = STATE(216), - [sym_if_statement] = STATE(216), - [sym_switch_statement] = STATE(216), - [sym_case_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_do_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_return_statement] = STATE(216), - [sym_break_statement] = STATE(216), - [sym_continue_statement] = STATE(216), - [sym_goto_statement] = STATE(216), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [298] = { + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token2] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, - [329] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(1923), - [sym_attributed_statement] = STATE(1923), - [sym_labeled_statement] = STATE(1923), - [sym_expression_statement] = STATE(1923), - [sym_if_statement] = STATE(1923), - [sym_switch_statement] = STATE(1923), - [sym_case_statement] = STATE(1923), - [sym_while_statement] = STATE(1923), - [sym_do_statement] = STATE(1923), - [sym_for_statement] = STATE(1923), - [sym_return_statement] = STATE(1923), - [sym_break_statement] = STATE(1923), - [sym_continue_statement] = STATE(1923), - [sym_goto_statement] = STATE(1923), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [299] = { + [sym_attribute_declaration] = STATE(406), + [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(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48611,16 +45967,16 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(55), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -48649,47 +46005,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [330] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(349), - [sym_attributed_statement] = STATE(349), - [sym_labeled_statement] = STATE(349), - [sym_expression_statement] = STATE(349), - [sym_if_statement] = STATE(349), - [sym_switch_statement] = STATE(349), - [sym_case_statement] = STATE(349), - [sym_while_statement] = STATE(349), - [sym_do_statement] = STATE(349), - [sym_for_statement] = STATE(349), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(349), - [sym_continue_statement] = STATE(349), - [sym_goto_statement] = STATE(349), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [300] = { + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), + [sym_comment] = ACTIONS(3), + }, + [301] = { + [sym_attribute_declaration] = STATE(321), + [sym_compound_statement] = STATE(318), + [sym_attributed_statement] = STATE(318), + [sym_labeled_statement] = STATE(318), + [sym_expression_statement] = STATE(318), + [sym_if_statement] = STATE(318), + [sym_switch_statement] = STATE(318), + [sym_case_statement] = STATE(318), + [sym_while_statement] = STATE(318), + [sym_do_statement] = STATE(318), + [sym_for_statement] = STATE(318), + [sym_return_statement] = STATE(318), + [sym_break_statement] = STATE(318), + [sym_continue_statement] = STATE(318), + [sym_goto_statement] = STATE(318), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(321), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48735,8 +46177,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [331] = { - [sym_attribute_declaration] = STATE(333), + [302] = { + [sym_attribute_declaration] = STATE(399), [sym_compound_statement] = STATE(91), [sym_attributed_statement] = STATE(91), [sym_labeled_statement] = STATE(91), @@ -48751,117 +46193,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(91), [sym_continue_statement] = STATE(91), [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), - [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(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [332] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(94), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_case_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48907,47 +46263,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [333] = { - [sym_attribute_declaration] = STATE(338), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [303] = { + [sym_attribute_declaration] = STATE(399), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48993,47 +46349,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(97), - [sym_attributed_statement] = STATE(97), - [sym_labeled_statement] = STATE(97), - [sym_expression_statement] = STATE(97), - [sym_if_statement] = STATE(97), - [sym_switch_statement] = STATE(97), - [sym_case_statement] = STATE(97), - [sym_while_statement] = STATE(97), - [sym_do_statement] = STATE(97), - [sym_for_statement] = STATE(97), - [sym_return_statement] = STATE(97), - [sym_break_statement] = STATE(97), - [sym_continue_statement] = STATE(97), - [sym_goto_statement] = STATE(97), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [304] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(129), + [sym_attributed_statement] = STATE(129), + [sym_labeled_statement] = STATE(129), + [sym_expression_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_switch_statement] = STATE(129), + [sym_case_statement] = STATE(129), + [sym_while_statement] = STATE(129), + [sym_do_statement] = STATE(129), + [sym_for_statement] = STATE(129), + [sym_return_statement] = STATE(129), + [sym_break_statement] = STATE(129), + [sym_continue_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49060,410 +46416,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [335] = { - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - }, - [336] = { - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), - [sym_comment] = ACTIONS(3), - }, - [337] = { - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_RBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [338] = { - [sym_attribute_declaration] = STATE(338), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [305] = { + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1204), + [aux_sym_preproc_include_token1] = ACTIONS(1204), + [aux_sym_preproc_def_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), + [sym_preproc_directive] = ACTIONS(1204), + [anon_sym_LPAREN2] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym___attribute__] = ACTIONS(1204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), + [anon_sym___declspec] = ACTIONS(1204), + [anon_sym___cdecl] = ACTIONS(1204), + [anon_sym___clrcall] = ACTIONS(1204), + [anon_sym___stdcall] = ACTIONS(1204), + [anon_sym___fastcall] = ACTIONS(1204), + [anon_sym___thiscall] = ACTIONS(1204), + [anon_sym___vectorcall] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_auto] = ACTIONS(1204), + [anon_sym_register] = ACTIONS(1204), + [anon_sym_inline] = ACTIONS(1204), + [anon_sym_thread_local] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_constexpr] = ACTIONS(1204), + [anon_sym_volatile] = ACTIONS(1204), + [anon_sym_restrict] = ACTIONS(1204), + [anon_sym___restrict__] = ACTIONS(1204), + [anon_sym__Atomic] = ACTIONS(1204), + [anon_sym__Noreturn] = ACTIONS(1204), + [anon_sym_noreturn] = ACTIONS(1204), + [sym_primitive_type] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_goto] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_sizeof] = ACTIONS(1204), + [anon_sym_offsetof] = ACTIONS(1204), + [anon_sym__Generic] = ACTIONS(1204), + [anon_sym_asm] = ACTIONS(1204), + [anon_sym___asm__] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1206), + [anon_sym_u_SQUOTE] = ACTIONS(1206), + [anon_sym_U_SQUOTE] = ACTIONS(1206), + [anon_sym_u8_SQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_L_DQUOTE] = ACTIONS(1206), + [anon_sym_u_DQUOTE] = ACTIONS(1206), + [anon_sym_U_DQUOTE] = ACTIONS(1206), + [anon_sym_u8_DQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [anon_sym_NULL] = ACTIONS(1204), + [anon_sym_nullptr] = ACTIONS(1204), + [sym_comment] = ACTIONS(3), + }, + [306] = { + [sym_attribute_declaration] = STATE(306), + [sym_compound_statement] = STATE(108), + [sym_attributed_statement] = STATE(108), + [sym_labeled_statement] = STATE(108), + [sym_expression_statement] = STATE(108), + [sym_if_statement] = STATE(108), + [sym_switch_statement] = STATE(108), + [sym_case_statement] = STATE(108), + [sym_while_statement] = STATE(108), + [sym_do_statement] = STATE(108), + [sym_for_statement] = STATE(108), + [sym_return_statement] = STATE(108), + [sym_break_statement] = STATE(108), + [sym_continue_statement] = STATE(108), + [sym_goto_statement] = STATE(108), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(1641), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_case] = ACTIONS(1656), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1662), - [anon_sym_do] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1668), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1674), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_goto] = ACTIONS(1680), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1516), - [anon_sym_offsetof] = ACTIONS(1519), - [anon_sym__Generic] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym___asm__] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1528), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1534), - [anon_sym_u_DQUOTE] = ACTIONS(1534), - [anon_sym_U_DQUOTE] = ACTIONS(1534), - [anon_sym_u8_DQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [anon_sym_NULL] = ACTIONS(1540), - [anon_sym_nullptr] = ACTIONS(1540), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(306), + [sym_identifier] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1495), + [anon_sym_case] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(354), - [sym_attributed_statement] = STATE(354), - [sym_labeled_statement] = STATE(354), - [sym_expression_statement] = STATE(354), - [sym_if_statement] = STATE(354), - [sym_switch_statement] = STATE(354), - [sym_case_statement] = STATE(354), - [sym_while_statement] = STATE(354), - [sym_do_statement] = STATE(354), - [sym_for_statement] = STATE(354), - [sym_return_statement] = STATE(354), - [sym_break_statement] = STATE(354), - [sym_continue_statement] = STATE(354), - [sym_goto_statement] = STATE(354), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [307] = { + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [sym_primitive_type] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1212), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + }, + [308] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(198), + [sym_attributed_statement] = STATE(198), + [sym_labeled_statement] = STATE(198), + [sym_expression_statement] = STATE(198), + [sym_if_statement] = STATE(198), + [sym_switch_statement] = STATE(198), + [sym_case_statement] = STATE(198), + [sym_while_statement] = STATE(198), + [sym_do_statement] = STATE(198), + [sym_for_statement] = STATE(198), + [sym_return_statement] = STATE(198), + [sym_break_statement] = STATE(198), + [sym_continue_statement] = STATE(198), + [sym_goto_statement] = STATE(198), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49509,391 +46779,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_identifier] = ACTIONS(1336), - [aux_sym_preproc_include_token1] = ACTIONS(1336), - [aux_sym_preproc_def_token1] = ACTIONS(1336), - [aux_sym_preproc_if_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), - [sym_preproc_directive] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(1338), - [anon_sym_BANG] = ACTIONS(1338), - [anon_sym_TILDE] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1336), - [anon_sym_extern] = ACTIONS(1336), - [anon_sym___attribute__] = ACTIONS(1336), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), - [anon_sym___declspec] = ACTIONS(1336), - [anon_sym___cdecl] = ACTIONS(1336), - [anon_sym___clrcall] = ACTIONS(1336), - [anon_sym___stdcall] = ACTIONS(1336), - [anon_sym___fastcall] = ACTIONS(1336), - [anon_sym___thiscall] = ACTIONS(1336), - [anon_sym___vectorcall] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1338), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = ACTIONS(1336), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_auto] = ACTIONS(1336), - [anon_sym_register] = ACTIONS(1336), - [anon_sym_inline] = ACTIONS(1336), - [anon_sym_thread_local] = ACTIONS(1336), - [anon_sym_const] = ACTIONS(1336), - [anon_sym_constexpr] = ACTIONS(1336), - [anon_sym_volatile] = ACTIONS(1336), - [anon_sym_restrict] = ACTIONS(1336), - [anon_sym___restrict__] = ACTIONS(1336), - [anon_sym__Atomic] = ACTIONS(1336), - [anon_sym__Noreturn] = ACTIONS(1336), - [anon_sym_noreturn] = ACTIONS(1336), - [sym_primitive_type] = ACTIONS(1336), - [anon_sym_enum] = ACTIONS(1336), - [anon_sym_struct] = ACTIONS(1336), - [anon_sym_union] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(1336), - [anon_sym_else] = ACTIONS(1336), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1336), - [anon_sym_default] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1336), - [anon_sym_do] = ACTIONS(1336), - [anon_sym_for] = ACTIONS(1336), - [anon_sym_return] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(1336), - [anon_sym_continue] = ACTIONS(1336), - [anon_sym_goto] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1338), - [anon_sym_sizeof] = ACTIONS(1336), - [anon_sym_offsetof] = ACTIONS(1336), - [anon_sym__Generic] = ACTIONS(1336), - [anon_sym_asm] = ACTIONS(1336), - [anon_sym___asm__] = ACTIONS(1336), - [sym_number_literal] = ACTIONS(1338), - [anon_sym_L_SQUOTE] = ACTIONS(1338), - [anon_sym_u_SQUOTE] = ACTIONS(1338), - [anon_sym_U_SQUOTE] = ACTIONS(1338), - [anon_sym_u8_SQUOTE] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(1338), - [anon_sym_L_DQUOTE] = ACTIONS(1338), - [anon_sym_u_DQUOTE] = ACTIONS(1338), - [anon_sym_U_DQUOTE] = ACTIONS(1338), - [anon_sym_u8_DQUOTE] = ACTIONS(1338), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_true] = ACTIONS(1336), - [sym_false] = ACTIONS(1336), - [anon_sym_NULL] = ACTIONS(1336), - [anon_sym_nullptr] = ACTIONS(1336), - [sym_comment] = ACTIONS(3), - }, - [341] = { - [sym_attribute_declaration] = STATE(341), - [sym_compound_statement] = STATE(340), - [sym_attributed_statement] = STATE(340), - [sym_labeled_statement] = STATE(340), - [sym_expression_statement] = STATE(340), - [sym_if_statement] = STATE(340), - [sym_switch_statement] = STATE(340), - [sym_case_statement] = STATE(340), - [sym_while_statement] = STATE(340), - [sym_do_statement] = STATE(340), - [sym_for_statement] = STATE(340), - [sym_return_statement] = STATE(340), - [sym_break_statement] = STATE(340), - [sym_continue_statement] = STATE(340), - [sym_goto_statement] = STATE(340), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [309] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(1952), + [sym_attributed_statement] = STATE(1952), + [sym_labeled_statement] = STATE(1952), + [sym_expression_statement] = STATE(1952), + [sym_if_statement] = STATE(1952), + [sym_switch_statement] = STATE(1952), + [sym_case_statement] = STATE(1952), + [sym_while_statement] = STATE(1952), + [sym_do_statement] = STATE(1952), + [sym_for_statement] = STATE(1952), + [sym_return_statement] = STATE(1952), + [sym_break_statement] = STATE(1952), + [sym_continue_statement] = STATE(1952), + [sym_goto_statement] = STATE(1952), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(341), - [sym_identifier] = ACTIONS(1683), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1695), - [anon_sym_case] = ACTIONS(1698), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_goto] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1516), - [anon_sym_offsetof] = ACTIONS(1519), - [anon_sym__Generic] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym___asm__] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1528), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1534), - [anon_sym_u_DQUOTE] = ACTIONS(1534), - [anon_sym_U_DQUOTE] = ACTIONS(1534), - [anon_sym_u8_DQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [anon_sym_NULL] = ACTIONS(1540), - [anon_sym_nullptr] = ACTIONS(1540), - [sym_comment] = ACTIONS(3), - }, - [342] = { - [ts_builtin_sym_end] = ACTIONS(1334), - [sym_identifier] = ACTIONS(1332), - [aux_sym_preproc_include_token1] = ACTIONS(1332), - [aux_sym_preproc_def_token1] = ACTIONS(1332), - [aux_sym_preproc_if_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), - [sym_preproc_directive] = ACTIONS(1332), - [anon_sym_LPAREN2] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1332), - [anon_sym_extern] = ACTIONS(1332), - [anon_sym___attribute__] = ACTIONS(1332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), - [anon_sym___declspec] = ACTIONS(1332), - [anon_sym___cdecl] = ACTIONS(1332), - [anon_sym___clrcall] = ACTIONS(1332), - [anon_sym___stdcall] = ACTIONS(1332), - [anon_sym___fastcall] = ACTIONS(1332), - [anon_sym___thiscall] = ACTIONS(1332), - [anon_sym___vectorcall] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = ACTIONS(1332), - [anon_sym_static] = ACTIONS(1332), - [anon_sym_auto] = ACTIONS(1332), - [anon_sym_register] = ACTIONS(1332), - [anon_sym_inline] = ACTIONS(1332), - [anon_sym_thread_local] = ACTIONS(1332), - [anon_sym_const] = ACTIONS(1332), - [anon_sym_constexpr] = ACTIONS(1332), - [anon_sym_volatile] = ACTIONS(1332), - [anon_sym_restrict] = ACTIONS(1332), - [anon_sym___restrict__] = ACTIONS(1332), - [anon_sym__Atomic] = ACTIONS(1332), - [anon_sym__Noreturn] = ACTIONS(1332), - [anon_sym_noreturn] = ACTIONS(1332), - [sym_primitive_type] = ACTIONS(1332), - [anon_sym_enum] = ACTIONS(1332), - [anon_sym_struct] = ACTIONS(1332), - [anon_sym_union] = ACTIONS(1332), - [anon_sym_if] = ACTIONS(1332), - [anon_sym_else] = ACTIONS(1332), - [anon_sym_switch] = ACTIONS(1332), - [anon_sym_case] = ACTIONS(1332), - [anon_sym_default] = ACTIONS(1332), - [anon_sym_while] = ACTIONS(1332), - [anon_sym_do] = ACTIONS(1332), - [anon_sym_for] = ACTIONS(1332), - [anon_sym_return] = ACTIONS(1332), - [anon_sym_break] = ACTIONS(1332), - [anon_sym_continue] = ACTIONS(1332), - [anon_sym_goto] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1334), - [anon_sym_PLUS_PLUS] = ACTIONS(1334), - [anon_sym_sizeof] = ACTIONS(1332), - [anon_sym_offsetof] = ACTIONS(1332), - [anon_sym__Generic] = ACTIONS(1332), - [anon_sym_asm] = ACTIONS(1332), - [anon_sym___asm__] = ACTIONS(1332), - [sym_number_literal] = ACTIONS(1334), - [anon_sym_L_SQUOTE] = ACTIONS(1334), - [anon_sym_u_SQUOTE] = ACTIONS(1334), - [anon_sym_U_SQUOTE] = ACTIONS(1334), - [anon_sym_u8_SQUOTE] = ACTIONS(1334), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_L_DQUOTE] = ACTIONS(1334), - [anon_sym_u_DQUOTE] = ACTIONS(1334), - [anon_sym_U_DQUOTE] = ACTIONS(1334), - [anon_sym_u8_DQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_true] = ACTIONS(1332), - [sym_false] = ACTIONS(1332), - [anon_sym_NULL] = ACTIONS(1332), - [anon_sym_nullptr] = ACTIONS(1332), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [343] = { - [sym_identifier] = ACTIONS(1308), - [aux_sym_preproc_include_token1] = ACTIONS(1308), - [aux_sym_preproc_def_token1] = ACTIONS(1308), - [aux_sym_preproc_if_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), - [sym_preproc_directive] = ACTIONS(1308), - [anon_sym_LPAREN2] = ACTIONS(1310), - [anon_sym_BANG] = ACTIONS(1310), - [anon_sym_TILDE] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1308), - [anon_sym_extern] = ACTIONS(1308), - [anon_sym___attribute__] = ACTIONS(1308), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), - [anon_sym___declspec] = ACTIONS(1308), - [anon_sym___cdecl] = ACTIONS(1308), - [anon_sym___clrcall] = ACTIONS(1308), - [anon_sym___stdcall] = ACTIONS(1308), - [anon_sym___fastcall] = ACTIONS(1308), - [anon_sym___thiscall] = ACTIONS(1308), - [anon_sym___vectorcall] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = ACTIONS(1308), - [anon_sym_static] = ACTIONS(1308), - [anon_sym_auto] = ACTIONS(1308), - [anon_sym_register] = ACTIONS(1308), - [anon_sym_inline] = ACTIONS(1308), - [anon_sym_thread_local] = ACTIONS(1308), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_constexpr] = ACTIONS(1308), - [anon_sym_volatile] = ACTIONS(1308), - [anon_sym_restrict] = ACTIONS(1308), - [anon_sym___restrict__] = ACTIONS(1308), - [anon_sym__Atomic] = ACTIONS(1308), - [anon_sym__Noreturn] = ACTIONS(1308), - [anon_sym_noreturn] = ACTIONS(1308), - [sym_primitive_type] = ACTIONS(1308), - [anon_sym_enum] = ACTIONS(1308), - [anon_sym_struct] = ACTIONS(1308), - [anon_sym_union] = ACTIONS(1308), - [anon_sym_if] = ACTIONS(1308), - [anon_sym_else] = ACTIONS(1308), - [anon_sym_switch] = ACTIONS(1308), - [anon_sym_case] = ACTIONS(1308), - [anon_sym_default] = ACTIONS(1308), - [anon_sym_while] = ACTIONS(1308), - [anon_sym_do] = ACTIONS(1308), - [anon_sym_for] = ACTIONS(1308), - [anon_sym_return] = ACTIONS(1308), - [anon_sym_break] = ACTIONS(1308), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1310), - [anon_sym_PLUS_PLUS] = ACTIONS(1310), - [anon_sym_sizeof] = ACTIONS(1308), - [anon_sym_offsetof] = ACTIONS(1308), - [anon_sym__Generic] = ACTIONS(1308), - [anon_sym_asm] = ACTIONS(1308), - [anon_sym___asm__] = ACTIONS(1308), - [sym_number_literal] = ACTIONS(1310), - [anon_sym_L_SQUOTE] = ACTIONS(1310), - [anon_sym_u_SQUOTE] = ACTIONS(1310), - [anon_sym_U_SQUOTE] = ACTIONS(1310), - [anon_sym_u8_SQUOTE] = ACTIONS(1310), - [anon_sym_SQUOTE] = ACTIONS(1310), - [anon_sym_L_DQUOTE] = ACTIONS(1310), - [anon_sym_u_DQUOTE] = ACTIONS(1310), - [anon_sym_U_DQUOTE] = ACTIONS(1310), - [anon_sym_u8_DQUOTE] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_true] = ACTIONS(1308), - [sym_false] = ACTIONS(1308), - [anon_sym_NULL] = ACTIONS(1308), - [anon_sym_nullptr] = ACTIONS(1308), + [310] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(343), + [sym_attributed_statement] = STATE(343), + [sym_labeled_statement] = STATE(343), + [sym_expression_statement] = STATE(343), + [sym_if_statement] = STATE(343), + [sym_switch_statement] = STATE(343), + [sym_case_statement] = STATE(343), + [sym_while_statement] = STATE(343), + [sym_do_statement] = STATE(343), + [sym_for_statement] = STATE(343), + [sym_return_statement] = STATE(343), + [sym_break_statement] = STATE(343), + [sym_continue_statement] = STATE(343), + [sym_goto_statement] = STATE(343), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [344] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(308), - [sym_attributed_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_goto_statement] = STATE(308), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [311] = { + [sym_attribute_declaration] = STATE(311), + [sym_compound_statement] = STATE(312), + [sym_attributed_statement] = STATE(312), + [sym_labeled_statement] = STATE(312), + [sym_expression_statement] = STATE(312), + [sym_if_statement] = STATE(312), + [sym_switch_statement] = STATE(312), + [sym_case_statement] = STATE(312), + [sym_while_statement] = STATE(312), + [sym_do_statement] = STATE(312), + [sym_for_statement] = STATE(312), + [sym_return_statement] = STATE(312), + [sym_break_statement] = STATE(312), + [sym_continue_statement] = STATE(312), + [sym_goto_statement] = STATE(312), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(311), + [sym_identifier] = ACTIONS(1555), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1567), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1582), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_goto] = ACTIONS(1594), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + }, + [312] = { + [ts_builtin_sym_end] = ACTIONS(1262), + [sym_identifier] = ACTIONS(1260), + [aux_sym_preproc_include_token1] = ACTIONS(1260), + [aux_sym_preproc_def_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1260), + [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym___attribute__] = ACTIONS(1260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), + [anon_sym___declspec] = ACTIONS(1260), + [anon_sym___cdecl] = ACTIONS(1260), + [anon_sym___clrcall] = ACTIONS(1260), + [anon_sym___stdcall] = ACTIONS(1260), + [anon_sym___fastcall] = ACTIONS(1260), + [anon_sym___thiscall] = ACTIONS(1260), + [anon_sym___vectorcall] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_inline] = ACTIONS(1260), + [anon_sym_thread_local] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_constexpr] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym___restrict__] = ACTIONS(1260), + [anon_sym__Atomic] = ACTIONS(1260), + [anon_sym__Noreturn] = ACTIONS(1260), + [anon_sym_noreturn] = ACTIONS(1260), + [sym_primitive_type] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_else] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym__Generic] = ACTIONS(1260), + [anon_sym_asm] = ACTIONS(1260), + [anon_sym___asm__] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1262), + [anon_sym_L_SQUOTE] = ACTIONS(1262), + [anon_sym_u_SQUOTE] = ACTIONS(1262), + [anon_sym_U_SQUOTE] = ACTIONS(1262), + [anon_sym_u8_SQUOTE] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_L_DQUOTE] = ACTIONS(1262), + [anon_sym_u_DQUOTE] = ACTIONS(1262), + [anon_sym_U_DQUOTE] = ACTIONS(1262), + [anon_sym_u8_DQUOTE] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [anon_sym_NULL] = ACTIONS(1260), + [anon_sym_nullptr] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + }, + [313] = { + [sym_attribute_declaration] = STATE(399), + [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(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49901,20 +47171,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(454), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -49939,7 +47209,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [345] = { + [314] = { + [sym_identifier] = ACTIONS(1224), + [aux_sym_preproc_include_token1] = ACTIONS(1224), + [aux_sym_preproc_def_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), + [sym_preproc_directive] = ACTIONS(1224), + [anon_sym_LPAREN2] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym___attribute__] = ACTIONS(1224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), + [anon_sym___declspec] = ACTIONS(1224), + [anon_sym___cdecl] = ACTIONS(1224), + [anon_sym___clrcall] = ACTIONS(1224), + [anon_sym___stdcall] = ACTIONS(1224), + [anon_sym___fastcall] = ACTIONS(1224), + [anon_sym___thiscall] = ACTIONS(1224), + [anon_sym___vectorcall] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_auto] = ACTIONS(1224), + [anon_sym_register] = ACTIONS(1224), + [anon_sym_inline] = ACTIONS(1224), + [anon_sym_thread_local] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_constexpr] = ACTIONS(1224), + [anon_sym_volatile] = ACTIONS(1224), + [anon_sym_restrict] = ACTIONS(1224), + [anon_sym___restrict__] = ACTIONS(1224), + [anon_sym__Atomic] = ACTIONS(1224), + [anon_sym__Noreturn] = ACTIONS(1224), + [anon_sym_noreturn] = ACTIONS(1224), + [sym_primitive_type] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_goto] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1224), + [anon_sym_offsetof] = ACTIONS(1224), + [anon_sym__Generic] = ACTIONS(1224), + [anon_sym_asm] = ACTIONS(1224), + [anon_sym___asm__] = ACTIONS(1224), + [sym_number_literal] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1226), + [anon_sym_u_SQUOTE] = ACTIONS(1226), + [anon_sym_U_SQUOTE] = ACTIONS(1226), + [anon_sym_u8_SQUOTE] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_L_DQUOTE] = ACTIONS(1226), + [anon_sym_u_DQUOTE] = ACTIONS(1226), + [anon_sym_U_DQUOTE] = ACTIONS(1226), + [anon_sym_u8_DQUOTE] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [anon_sym_NULL] = ACTIONS(1224), + [anon_sym_nullptr] = ACTIONS(1224), + [sym_comment] = ACTIONS(3), + }, + [315] = { [sym_identifier] = ACTIONS(1244), [aux_sym_preproc_include_token1] = ACTIONS(1244), [aux_sym_preproc_def_token1] = ACTIONS(1244), @@ -50025,47 +47381,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1244), [sym_comment] = ACTIONS(3), }, - [346] = { - [sym_attribute_declaration] = STATE(273), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [316] = { + [sym_identifier] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1252), + [aux_sym_preproc_def_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [sym_preproc_directive] = ACTIONS(1252), + [anon_sym_LPAREN2] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym___attribute__] = ACTIONS(1252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1252), + [anon_sym___cdecl] = ACTIONS(1252), + [anon_sym___clrcall] = ACTIONS(1252), + [anon_sym___stdcall] = ACTIONS(1252), + [anon_sym___fastcall] = ACTIONS(1252), + [anon_sym___thiscall] = ACTIONS(1252), + [anon_sym___vectorcall] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_auto] = ACTIONS(1252), + [anon_sym_register] = ACTIONS(1252), + [anon_sym_inline] = ACTIONS(1252), + [anon_sym_thread_local] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_constexpr] = ACTIONS(1252), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + }, + [317] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(356), + [sym_attributed_statement] = STATE(356), + [sym_labeled_statement] = STATE(356), + [sym_expression_statement] = STATE(356), + [sym_if_statement] = STATE(356), + [sym_switch_statement] = STATE(356), + [sym_case_statement] = STATE(356), + [sym_while_statement] = STATE(356), + [sym_do_statement] = STATE(356), + [sym_for_statement] = STATE(356), + [sym_return_statement] = STATE(356), + [sym_break_statement] = STATE(356), + [sym_continue_statement] = STATE(356), + [sym_goto_statement] = STATE(356), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50073,20 +47515,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(183), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -50111,47 +47553,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [347] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(287), - [sym_attributed_statement] = STATE(287), - [sym_labeled_statement] = STATE(287), - [sym_expression_statement] = STATE(287), - [sym_if_statement] = STATE(287), - [sym_switch_statement] = STATE(287), - [sym_case_statement] = STATE(287), - [sym_while_statement] = STATE(287), - [sym_do_statement] = STATE(287), - [sym_for_statement] = STATE(287), - [sym_return_statement] = STATE(287), - [sym_break_statement] = STATE(287), - [sym_continue_statement] = STATE(287), - [sym_goto_statement] = STATE(287), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [318] = { + [sym_identifier] = ACTIONS(1260), + [aux_sym_preproc_include_token1] = ACTIONS(1260), + [aux_sym_preproc_def_token1] = ACTIONS(1260), + [aux_sym_preproc_if_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), + [sym_preproc_directive] = ACTIONS(1260), + [anon_sym_LPAREN2] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_DASH] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(1260), + [anon_sym_STAR] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(1262), + [anon_sym_SEMI] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1260), + [anon_sym_extern] = ACTIONS(1260), + [anon_sym___attribute__] = ACTIONS(1260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), + [anon_sym___declspec] = ACTIONS(1260), + [anon_sym___cdecl] = ACTIONS(1260), + [anon_sym___clrcall] = ACTIONS(1260), + [anon_sym___stdcall] = ACTIONS(1260), + [anon_sym___fastcall] = ACTIONS(1260), + [anon_sym___thiscall] = ACTIONS(1260), + [anon_sym___vectorcall] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = ACTIONS(1260), + [anon_sym_static] = ACTIONS(1260), + [anon_sym_auto] = ACTIONS(1260), + [anon_sym_register] = ACTIONS(1260), + [anon_sym_inline] = ACTIONS(1260), + [anon_sym_thread_local] = ACTIONS(1260), + [anon_sym_const] = ACTIONS(1260), + [anon_sym_constexpr] = ACTIONS(1260), + [anon_sym_volatile] = ACTIONS(1260), + [anon_sym_restrict] = ACTIONS(1260), + [anon_sym___restrict__] = ACTIONS(1260), + [anon_sym__Atomic] = ACTIONS(1260), + [anon_sym__Noreturn] = ACTIONS(1260), + [anon_sym_noreturn] = ACTIONS(1260), + [sym_primitive_type] = ACTIONS(1260), + [anon_sym_enum] = ACTIONS(1260), + [anon_sym_struct] = ACTIONS(1260), + [anon_sym_union] = ACTIONS(1260), + [anon_sym_if] = ACTIONS(1260), + [anon_sym_else] = ACTIONS(1260), + [anon_sym_switch] = ACTIONS(1260), + [anon_sym_case] = ACTIONS(1260), + [anon_sym_default] = ACTIONS(1260), + [anon_sym_while] = ACTIONS(1260), + [anon_sym_do] = ACTIONS(1260), + [anon_sym_for] = ACTIONS(1260), + [anon_sym_return] = ACTIONS(1260), + [anon_sym_break] = ACTIONS(1260), + [anon_sym_continue] = ACTIONS(1260), + [anon_sym_goto] = ACTIONS(1260), + [anon_sym_DASH_DASH] = ACTIONS(1262), + [anon_sym_PLUS_PLUS] = ACTIONS(1262), + [anon_sym_sizeof] = ACTIONS(1260), + [anon_sym_offsetof] = ACTIONS(1260), + [anon_sym__Generic] = ACTIONS(1260), + [anon_sym_asm] = ACTIONS(1260), + [anon_sym___asm__] = ACTIONS(1260), + [sym_number_literal] = ACTIONS(1262), + [anon_sym_L_SQUOTE] = ACTIONS(1262), + [anon_sym_u_SQUOTE] = ACTIONS(1262), + [anon_sym_U_SQUOTE] = ACTIONS(1262), + [anon_sym_u8_SQUOTE] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_L_DQUOTE] = ACTIONS(1262), + [anon_sym_u_DQUOTE] = ACTIONS(1262), + [anon_sym_U_DQUOTE] = ACTIONS(1262), + [anon_sym_u8_DQUOTE] = ACTIONS(1262), + [anon_sym_DQUOTE] = ACTIONS(1262), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [anon_sym_NULL] = ACTIONS(1260), + [anon_sym_nullptr] = ACTIONS(1260), + [sym_comment] = ACTIONS(3), + }, + [319] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(105), + [sym_attributed_statement] = STATE(105), + [sym_labeled_statement] = STATE(105), + [sym_expression_statement] = STATE(105), + [sym_if_statement] = STATE(105), + [sym_switch_statement] = STATE(105), + [sym_case_statement] = STATE(105), + [sym_while_statement] = STATE(105), + [sym_do_statement] = STATE(105), + [sym_for_statement] = STATE(105), + [sym_return_statement] = STATE(105), + [sym_break_statement] = STATE(105), + [sym_continue_statement] = STATE(105), + [sym_goto_statement] = STATE(105), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50159,20 +47687,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(454), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -50197,47 +47725,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [348] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(1977), - [sym_attributed_statement] = STATE(1977), - [sym_labeled_statement] = STATE(1977), - [sym_expression_statement] = STATE(1977), - [sym_if_statement] = STATE(1977), - [sym_switch_statement] = STATE(1977), - [sym_case_statement] = STATE(1977), - [sym_while_statement] = STATE(1977), - [sym_do_statement] = STATE(1977), - [sym_for_statement] = STATE(1977), - [sym_return_statement] = STATE(1977), - [sym_break_statement] = STATE(1977), - [sym_continue_statement] = STATE(1977), - [sym_goto_statement] = STATE(1977), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [320] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(107), + [sym_attributed_statement] = STATE(107), + [sym_labeled_statement] = STATE(107), + [sym_expression_statement] = STATE(107), + [sym_if_statement] = STATE(107), + [sym_switch_statement] = STATE(107), + [sym_case_statement] = STATE(107), + [sym_while_statement] = STATE(107), + [sym_do_statement] = STATE(107), + [sym_for_statement] = STATE(107), + [sym_return_statement] = STATE(107), + [sym_break_statement] = STATE(107), + [sym_continue_statement] = STATE(107), + [sym_goto_statement] = STATE(107), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50245,20 +47773,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(454), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -50283,98 +47811,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_identifier] = ACTIONS(1204), - [aux_sym_preproc_include_token1] = ACTIONS(1204), - [aux_sym_preproc_def_token1] = ACTIONS(1204), - [aux_sym_preproc_if_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), - [sym_preproc_directive] = ACTIONS(1204), - [anon_sym_LPAREN2] = ACTIONS(1206), - [anon_sym_BANG] = ACTIONS(1206), - [anon_sym_TILDE] = ACTIONS(1206), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_STAR] = ACTIONS(1206), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_SEMI] = ACTIONS(1206), - [anon_sym_typedef] = ACTIONS(1204), - [anon_sym_extern] = ACTIONS(1204), - [anon_sym___attribute__] = ACTIONS(1204), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), - [anon_sym___declspec] = ACTIONS(1204), - [anon_sym___cdecl] = ACTIONS(1204), - [anon_sym___clrcall] = ACTIONS(1204), - [anon_sym___stdcall] = ACTIONS(1204), - [anon_sym___fastcall] = ACTIONS(1204), - [anon_sym___thiscall] = ACTIONS(1204), - [anon_sym___vectorcall] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = ACTIONS(1204), - [anon_sym_static] = ACTIONS(1204), - [anon_sym_auto] = ACTIONS(1204), - [anon_sym_register] = ACTIONS(1204), - [anon_sym_inline] = ACTIONS(1204), - [anon_sym_thread_local] = ACTIONS(1204), - [anon_sym_const] = ACTIONS(1204), - [anon_sym_constexpr] = ACTIONS(1204), - [anon_sym_volatile] = ACTIONS(1204), - [anon_sym_restrict] = ACTIONS(1204), - [anon_sym___restrict__] = ACTIONS(1204), - [anon_sym__Atomic] = ACTIONS(1204), - [anon_sym__Noreturn] = ACTIONS(1204), - [anon_sym_noreturn] = ACTIONS(1204), - [sym_primitive_type] = ACTIONS(1204), - [anon_sym_enum] = ACTIONS(1204), - [anon_sym_struct] = ACTIONS(1204), - [anon_sym_union] = ACTIONS(1204), - [anon_sym_if] = ACTIONS(1204), - [anon_sym_else] = ACTIONS(1204), - [anon_sym_switch] = ACTIONS(1204), - [anon_sym_case] = ACTIONS(1204), - [anon_sym_default] = ACTIONS(1204), - [anon_sym_while] = ACTIONS(1204), - [anon_sym_do] = ACTIONS(1204), - [anon_sym_for] = ACTIONS(1204), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1204), - [anon_sym_continue] = ACTIONS(1204), - [anon_sym_goto] = ACTIONS(1204), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_sizeof] = ACTIONS(1204), - [anon_sym_offsetof] = ACTIONS(1204), - [anon_sym__Generic] = ACTIONS(1204), - [anon_sym_asm] = ACTIONS(1204), - [anon_sym___asm__] = ACTIONS(1204), - [sym_number_literal] = ACTIONS(1206), - [anon_sym_L_SQUOTE] = ACTIONS(1206), - [anon_sym_u_SQUOTE] = ACTIONS(1206), - [anon_sym_U_SQUOTE] = ACTIONS(1206), - [anon_sym_u8_SQUOTE] = ACTIONS(1206), - [anon_sym_SQUOTE] = ACTIONS(1206), - [anon_sym_L_DQUOTE] = ACTIONS(1206), - [anon_sym_u_DQUOTE] = ACTIONS(1206), - [anon_sym_U_DQUOTE] = ACTIONS(1206), - [anon_sym_u8_DQUOTE] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1206), - [sym_true] = ACTIONS(1204), - [sym_false] = ACTIONS(1204), - [anon_sym_NULL] = ACTIONS(1204), - [anon_sym_nullptr] = ACTIONS(1204), + [321] = { + [sym_attribute_declaration] = STATE(321), + [sym_compound_statement] = STATE(318), + [sym_attributed_statement] = STATE(318), + [sym_labeled_statement] = STATE(318), + [sym_expression_statement] = STATE(318), + [sym_if_statement] = STATE(318), + [sym_switch_statement] = STATE(318), + [sym_case_statement] = STATE(318), + [sym_while_statement] = STATE(318), + [sym_do_statement] = STATE(318), + [sym_for_statement] = STATE(318), + [sym_return_statement] = STATE(318), + [sym_break_statement] = STATE(318), + [sym_continue_statement] = STATE(318), + [sym_goto_statement] = STATE(318), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(321), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1606), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_case] = ACTIONS(1612), + [anon_sym_default] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1624), + [anon_sym_return] = ACTIONS(1627), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_goto] = ACTIONS(1636), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), [sym_comment] = ACTIONS(3), }, - [350] = { + [322] = { + [ts_builtin_sym_end] = ACTIONS(1270), [sym_identifier] = ACTIONS(1268), [aux_sym_preproc_include_token1] = ACTIONS(1268), [aux_sym_preproc_def_token1] = ACTIONS(1268), [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token2] = ACTIONS(1268), [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), [sym_preproc_directive] = ACTIONS(1268), @@ -50455,133 +47983,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1268), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_identifier] = ACTIONS(1212), - [aux_sym_preproc_include_token1] = ACTIONS(1212), - [aux_sym_preproc_def_token1] = ACTIONS(1212), - [aux_sym_preproc_if_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), - [sym_preproc_directive] = ACTIONS(1212), - [anon_sym_LPAREN2] = ACTIONS(1214), - [anon_sym_BANG] = ACTIONS(1214), - [anon_sym_TILDE] = ACTIONS(1214), - [anon_sym_DASH] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(1212), - [anon_sym_STAR] = ACTIONS(1214), - [anon_sym_AMP] = ACTIONS(1214), - [anon_sym_SEMI] = ACTIONS(1214), - [anon_sym_typedef] = ACTIONS(1212), - [anon_sym_extern] = ACTIONS(1212), - [anon_sym___attribute__] = ACTIONS(1212), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), - [anon_sym___declspec] = ACTIONS(1212), - [anon_sym___cdecl] = ACTIONS(1212), - [anon_sym___clrcall] = ACTIONS(1212), - [anon_sym___stdcall] = ACTIONS(1212), - [anon_sym___fastcall] = ACTIONS(1212), - [anon_sym___thiscall] = ACTIONS(1212), - [anon_sym___vectorcall] = ACTIONS(1212), - [anon_sym_LBRACE] = ACTIONS(1214), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = ACTIONS(1212), - [anon_sym_static] = ACTIONS(1212), - [anon_sym_auto] = ACTIONS(1212), - [anon_sym_register] = ACTIONS(1212), - [anon_sym_inline] = ACTIONS(1212), - [anon_sym_thread_local] = ACTIONS(1212), - [anon_sym_const] = ACTIONS(1212), - [anon_sym_constexpr] = ACTIONS(1212), - [anon_sym_volatile] = ACTIONS(1212), - [anon_sym_restrict] = ACTIONS(1212), - [anon_sym___restrict__] = ACTIONS(1212), - [anon_sym__Atomic] = ACTIONS(1212), - [anon_sym__Noreturn] = ACTIONS(1212), - [anon_sym_noreturn] = ACTIONS(1212), - [sym_primitive_type] = ACTIONS(1212), - [anon_sym_enum] = ACTIONS(1212), - [anon_sym_struct] = ACTIONS(1212), - [anon_sym_union] = ACTIONS(1212), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(1212), - [anon_sym_switch] = ACTIONS(1212), - [anon_sym_case] = ACTIONS(1212), - [anon_sym_default] = ACTIONS(1212), - [anon_sym_while] = ACTIONS(1212), - [anon_sym_do] = ACTIONS(1212), - [anon_sym_for] = ACTIONS(1212), - [anon_sym_return] = ACTIONS(1212), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_goto] = ACTIONS(1212), - [anon_sym_DASH_DASH] = ACTIONS(1214), - [anon_sym_PLUS_PLUS] = ACTIONS(1214), - [anon_sym_sizeof] = ACTIONS(1212), - [anon_sym_offsetof] = ACTIONS(1212), - [anon_sym__Generic] = ACTIONS(1212), - [anon_sym_asm] = ACTIONS(1212), - [anon_sym___asm__] = ACTIONS(1212), - [sym_number_literal] = ACTIONS(1214), - [anon_sym_L_SQUOTE] = ACTIONS(1214), - [anon_sym_u_SQUOTE] = ACTIONS(1214), - [anon_sym_U_SQUOTE] = ACTIONS(1214), - [anon_sym_u8_SQUOTE] = ACTIONS(1214), - [anon_sym_SQUOTE] = ACTIONS(1214), - [anon_sym_L_DQUOTE] = ACTIONS(1214), - [anon_sym_u_DQUOTE] = ACTIONS(1214), - [anon_sym_U_DQUOTE] = ACTIONS(1214), - [anon_sym_u8_DQUOTE] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1214), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), - [anon_sym_NULL] = ACTIONS(1212), - [anon_sym_nullptr] = ACTIONS(1212), + [323] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1314), + [anon_sym_BANG] = ACTIONS(1314), + [anon_sym_TILDE] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), + [anon_sym___declspec] = ACTIONS(1312), + [anon_sym___cdecl] = ACTIONS(1312), + [anon_sym___clrcall] = ACTIONS(1312), + [anon_sym___stdcall] = ACTIONS(1312), + [anon_sym___fastcall] = ACTIONS(1312), + [anon_sym___thiscall] = ACTIONS(1312), + [anon_sym___vectorcall] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [sym_number_literal] = ACTIONS(1314), + [anon_sym_L_SQUOTE] = ACTIONS(1314), + [anon_sym_u_SQUOTE] = ACTIONS(1314), + [anon_sym_U_SQUOTE] = ACTIONS(1314), + [anon_sym_u8_SQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_L_DQUOTE] = ACTIONS(1314), + [anon_sym_u_DQUOTE] = ACTIONS(1314), + [anon_sym_U_DQUOTE] = ACTIONS(1314), + [anon_sym_u8_DQUOTE] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [sym_true] = ACTIONS(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [352] = { - [sym_attribute_declaration] = STATE(273), - [sym_compound_statement] = STATE(188), - [sym_attributed_statement] = STATE(188), - [sym_labeled_statement] = STATE(188), - [sym_expression_statement] = STATE(188), - [sym_if_statement] = STATE(188), - [sym_switch_statement] = STATE(188), - [sym_case_statement] = STATE(188), - [sym_while_statement] = STATE(188), - [sym_do_statement] = STATE(188), - [sym_for_statement] = STATE(188), - [sym_return_statement] = STATE(188), - [sym_break_statement] = STATE(188), - [sym_continue_statement] = STATE(188), - [sym_goto_statement] = STATE(188), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [324] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(111), + [sym_attributed_statement] = STATE(111), + [sym_labeled_statement] = STATE(111), + [sym_expression_statement] = STATE(111), + [sym_if_statement] = STATE(111), + [sym_switch_statement] = STATE(111), + [sym_case_statement] = STATE(111), + [sym_while_statement] = STATE(111), + [sym_do_statement] = STATE(111), + [sym_for_statement] = STATE(111), + [sym_return_statement] = STATE(111), + [sym_break_statement] = STATE(111), + [sym_continue_statement] = STATE(111), + [sym_goto_statement] = STATE(111), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50589,20 +48117,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(183), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -50627,47 +48155,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_attribute_declaration] = STATE(439), - [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(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [325] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(112), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50675,20 +48203,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(1005), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -50713,154 +48241,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_identifier] = ACTIONS(1216), - [aux_sym_preproc_include_token1] = ACTIONS(1216), - [aux_sym_preproc_def_token1] = ACTIONS(1216), - [aux_sym_preproc_if_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), - [sym_preproc_directive] = ACTIONS(1216), - [anon_sym_LPAREN2] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1218), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1218), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(1218), - [anon_sym_typedef] = ACTIONS(1216), - [anon_sym_extern] = ACTIONS(1216), - [anon_sym___attribute__] = ACTIONS(1216), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), - [anon_sym___declspec] = ACTIONS(1216), - [anon_sym___cdecl] = ACTIONS(1216), - [anon_sym___clrcall] = ACTIONS(1216), - [anon_sym___stdcall] = ACTIONS(1216), - [anon_sym___fastcall] = ACTIONS(1216), - [anon_sym___thiscall] = ACTIONS(1216), - [anon_sym___vectorcall] = ACTIONS(1216), - [anon_sym_LBRACE] = ACTIONS(1218), - [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = ACTIONS(1216), - [anon_sym_static] = ACTIONS(1216), - [anon_sym_auto] = ACTIONS(1216), - [anon_sym_register] = ACTIONS(1216), - [anon_sym_inline] = ACTIONS(1216), - [anon_sym_thread_local] = ACTIONS(1216), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_constexpr] = ACTIONS(1216), - [anon_sym_volatile] = ACTIONS(1216), - [anon_sym_restrict] = ACTIONS(1216), - [anon_sym___restrict__] = ACTIONS(1216), - [anon_sym__Atomic] = ACTIONS(1216), - [anon_sym__Noreturn] = ACTIONS(1216), - [anon_sym_noreturn] = ACTIONS(1216), - [sym_primitive_type] = ACTIONS(1216), - [anon_sym_enum] = ACTIONS(1216), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_union] = ACTIONS(1216), - [anon_sym_if] = ACTIONS(1216), - [anon_sym_else] = ACTIONS(1216), - [anon_sym_switch] = ACTIONS(1216), - [anon_sym_case] = ACTIONS(1216), - [anon_sym_default] = ACTIONS(1216), - [anon_sym_while] = ACTIONS(1216), - [anon_sym_do] = ACTIONS(1216), - [anon_sym_for] = ACTIONS(1216), - [anon_sym_return] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(1216), - [anon_sym_goto] = ACTIONS(1216), - [anon_sym_DASH_DASH] = ACTIONS(1218), - [anon_sym_PLUS_PLUS] = ACTIONS(1218), - [anon_sym_sizeof] = ACTIONS(1216), - [anon_sym_offsetof] = ACTIONS(1216), - [anon_sym__Generic] = ACTIONS(1216), - [anon_sym_asm] = ACTIONS(1216), - [anon_sym___asm__] = ACTIONS(1216), - [sym_number_literal] = ACTIONS(1218), - [anon_sym_L_SQUOTE] = ACTIONS(1218), - [anon_sym_u_SQUOTE] = ACTIONS(1218), - [anon_sym_U_SQUOTE] = ACTIONS(1218), - [anon_sym_u8_SQUOTE] = ACTIONS(1218), - [anon_sym_SQUOTE] = ACTIONS(1218), - [anon_sym_L_DQUOTE] = ACTIONS(1218), - [anon_sym_u_DQUOTE] = ACTIONS(1218), - [anon_sym_U_DQUOTE] = ACTIONS(1218), - [anon_sym_u8_DQUOTE] = ACTIONS(1218), - [anon_sym_DQUOTE] = ACTIONS(1218), - [sym_true] = ACTIONS(1216), - [sym_false] = ACTIONS(1216), - [anon_sym_NULL] = ACTIONS(1216), - [anon_sym_nullptr] = ACTIONS(1216), - [sym_comment] = ACTIONS(3), - }, - [355] = { - [sym_attribute_declaration] = STATE(273), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [326] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(1931), + [sym_attributed_statement] = STATE(1931), + [sym_labeled_statement] = STATE(1931), + [sym_expression_statement] = STATE(1931), + [sym_if_statement] = STATE(1931), + [sym_switch_statement] = STATE(1931), + [sym_case_statement] = STATE(1931), + [sym_while_statement] = STATE(1931), + [sym_do_statement] = STATE(1931), + [sym_for_statement] = STATE(1931), + [sym_return_statement] = STATE(1931), + [sym_break_statement] = STATE(1931), + [sym_continue_statement] = STATE(1931), + [sym_goto_statement] = STATE(1931), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), - [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(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -50885,47 +48327,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_attribute_declaration] = STATE(439), - [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(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [327] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(289), + [sym_attributed_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_switch_statement] = STATE(289), + [sym_case_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_goto_statement] = STATE(289), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50933,16 +48375,16 @@ 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(1005), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1150), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -50971,47 +48413,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [357] = { - [sym_attribute_declaration] = STATE(273), - [sym_compound_statement] = STATE(195), - [sym_attributed_statement] = STATE(195), - [sym_labeled_statement] = STATE(195), - [sym_expression_statement] = STATE(195), - [sym_if_statement] = STATE(195), - [sym_switch_statement] = STATE(195), - [sym_case_statement] = STATE(195), - [sym_while_statement] = STATE(195), - [sym_do_statement] = STATE(195), - [sym_for_statement] = STATE(195), - [sym_return_statement] = STATE(195), - [sym_break_statement] = STATE(195), - [sym_continue_statement] = STATE(195), - [sym_goto_statement] = STATE(195), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [328] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(114), + [sym_attributed_statement] = STATE(114), + [sym_labeled_statement] = STATE(114), + [sym_expression_statement] = STATE(114), + [sym_if_statement] = STATE(114), + [sym_switch_statement] = STATE(114), + [sym_case_statement] = STATE(114), + [sym_while_statement] = STATE(114), + [sym_do_statement] = STATE(114), + [sym_for_statement] = STATE(114), + [sym_return_statement] = STATE(114), + [sym_break_statement] = STATE(114), + [sym_continue_statement] = STATE(114), + [sym_goto_statement] = STATE(114), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51019,20 +48461,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(183), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -51057,47 +48499,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(257), - [sym_attributed_statement] = STATE(257), - [sym_labeled_statement] = STATE(257), - [sym_expression_statement] = STATE(257), - [sym_if_statement] = STATE(257), - [sym_switch_statement] = STATE(257), - [sym_case_statement] = STATE(257), - [sym_while_statement] = STATE(257), - [sym_do_statement] = STATE(257), - [sym_for_statement] = STATE(257), - [sym_return_statement] = STATE(257), - [sym_break_statement] = STATE(257), - [sym_continue_statement] = STATE(257), - [sym_goto_statement] = STATE(257), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [329] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(115), + [sym_attributed_statement] = STATE(115), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51105,20 +48547,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(1005), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -51143,219 +48585,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [359] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), - [sym_comment] = ACTIONS(3), - }, - [360] = { - [ts_builtin_sym_end] = ACTIONS(1238), - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [330] = { + [ts_builtin_sym_end] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), [sym_comment] = ACTIONS(3), }, - [361] = { - [sym_attribute_declaration] = STATE(273), - [sym_compound_statement] = STATE(194), - [sym_attributed_statement] = STATE(194), - [sym_labeled_statement] = STATE(194), - [sym_expression_statement] = STATE(194), - [sym_if_statement] = STATE(194), - [sym_switch_statement] = STATE(194), - [sym_case_statement] = STATE(194), - [sym_while_statement] = STATE(194), - [sym_do_statement] = STATE(194), - [sym_for_statement] = STATE(194), - [sym_return_statement] = STATE(194), - [sym_break_statement] = STATE(194), - [sym_continue_statement] = STATE(194), - [sym_goto_statement] = STATE(194), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [331] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(117), + [sym_attributed_statement] = STATE(117), + [sym_labeled_statement] = STATE(117), + [sym_expression_statement] = STATE(117), + [sym_if_statement] = STATE(117), + [sym_switch_statement] = STATE(117), + [sym_case_statement] = STATE(117), + [sym_while_statement] = STATE(117), + [sym_do_statement] = STATE(117), + [sym_for_statement] = STATE(117), + [sym_return_statement] = STATE(117), + [sym_break_statement] = STATE(117), + [sym_continue_statement] = STATE(117), + [sym_goto_statement] = STATE(117), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51363,20 +48719,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(183), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -51401,47 +48757,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [362] = { - [sym_attribute_declaration] = STATE(273), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [332] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(118), + [sym_attributed_statement] = STATE(118), + [sym_labeled_statement] = STATE(118), + [sym_expression_statement] = STATE(118), + [sym_if_statement] = STATE(118), + [sym_switch_statement] = STATE(118), + [sym_case_statement] = STATE(118), + [sym_while_statement] = STATE(118), + [sym_do_statement] = STATE(118), + [sym_for_statement] = STATE(118), + [sym_return_statement] = STATE(118), + [sym_break_statement] = STATE(118), + [sym_continue_statement] = STATE(118), + [sym_goto_statement] = STATE(118), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51449,20 +48805,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(183), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -51487,133 +48843,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), - [sym_comment] = ACTIONS(3), - }, - [364] = { - [sym_attribute_declaration] = STATE(273), - [sym_compound_statement] = STATE(191), - [sym_attributed_statement] = STATE(191), - [sym_labeled_statement] = STATE(191), - [sym_expression_statement] = STATE(191), - [sym_if_statement] = STATE(191), - [sym_switch_statement] = STATE(191), - [sym_case_statement] = STATE(191), - [sym_while_statement] = STATE(191), - [sym_do_statement] = STATE(191), - [sym_for_statement] = STATE(191), - [sym_return_statement] = STATE(191), - [sym_break_statement] = STATE(191), - [sym_continue_statement] = STATE(191), - [sym_goto_statement] = STATE(191), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [333] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(119), + [sym_attributed_statement] = STATE(119), + [sym_labeled_statement] = STATE(119), + [sym_expression_statement] = STATE(119), + [sym_if_statement] = STATE(119), + [sym_switch_statement] = STATE(119), + [sym_case_statement] = STATE(119), + [sym_while_statement] = STATE(119), + [sym_do_statement] = STATE(119), + [sym_for_statement] = STATE(119), + [sym_return_statement] = STATE(119), + [sym_break_statement] = STATE(119), + [sym_continue_statement] = STATE(119), + [sym_goto_statement] = STATE(119), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51621,20 +48891,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(183), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_if] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(129), + [anon_sym_default] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_return] = ACTIONS(139), + [anon_sym_break] = ACTIONS(141), + [anon_sym_continue] = ACTIONS(143), + [anon_sym_goto] = ACTIONS(145), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -51659,47 +48929,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [365] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(102), - [sym_attributed_statement] = STATE(102), - [sym_labeled_statement] = STATE(102), - [sym_expression_statement] = STATE(102), - [sym_if_statement] = STATE(102), - [sym_switch_statement] = STATE(102), - [sym_case_statement] = STATE(102), - [sym_while_statement] = STATE(102), - [sym_do_statement] = STATE(102), - [sym_for_statement] = STATE(102), - [sym_return_statement] = STATE(102), - [sym_break_statement] = STATE(102), - [sym_continue_statement] = STATE(102), - [sym_goto_statement] = STATE(102), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [334] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(120), + [sym_attributed_statement] = STATE(120), + [sym_labeled_statement] = STATE(120), + [sym_expression_statement] = STATE(120), + [sym_if_statement] = STATE(120), + [sym_switch_statement] = STATE(120), + [sym_case_statement] = STATE(120), + [sym_while_statement] = STATE(120), + [sym_do_statement] = STATE(120), + [sym_for_statement] = STATE(120), + [sym_return_statement] = STATE(120), + [sym_break_statement] = STATE(120), + [sym_continue_statement] = STATE(120), + [sym_goto_statement] = STATE(120), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51745,93 +49015,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [366] = { - [sym_identifier] = ACTIONS(1232), - [aux_sym_preproc_include_token1] = ACTIONS(1232), - [aux_sym_preproc_def_token1] = ACTIONS(1232), - [aux_sym_preproc_if_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), - [sym_preproc_directive] = ACTIONS(1232), - [anon_sym_LPAREN2] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1234), - [anon_sym_TILDE] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_typedef] = ACTIONS(1232), - [anon_sym_extern] = ACTIONS(1232), - [anon_sym___attribute__] = ACTIONS(1232), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), - [anon_sym___declspec] = ACTIONS(1232), - [anon_sym___cdecl] = ACTIONS(1232), - [anon_sym___clrcall] = ACTIONS(1232), - [anon_sym___stdcall] = ACTIONS(1232), - [anon_sym___fastcall] = ACTIONS(1232), - [anon_sym___thiscall] = ACTIONS(1232), - [anon_sym___vectorcall] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = ACTIONS(1232), - [anon_sym_static] = ACTIONS(1232), - [anon_sym_auto] = ACTIONS(1232), - [anon_sym_register] = ACTIONS(1232), - [anon_sym_inline] = ACTIONS(1232), - [anon_sym_thread_local] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1232), - [anon_sym_constexpr] = ACTIONS(1232), - [anon_sym_volatile] = ACTIONS(1232), - [anon_sym_restrict] = ACTIONS(1232), - [anon_sym___restrict__] = ACTIONS(1232), - [anon_sym__Atomic] = ACTIONS(1232), - [anon_sym__Noreturn] = ACTIONS(1232), - [anon_sym_noreturn] = ACTIONS(1232), - [sym_primitive_type] = ACTIONS(1232), - [anon_sym_enum] = ACTIONS(1232), - [anon_sym_struct] = ACTIONS(1232), - [anon_sym_union] = ACTIONS(1232), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1232), - [anon_sym_switch] = ACTIONS(1232), - [anon_sym_case] = ACTIONS(1232), - [anon_sym_default] = ACTIONS(1232), - [anon_sym_while] = ACTIONS(1232), - [anon_sym_do] = ACTIONS(1232), - [anon_sym_for] = ACTIONS(1232), - [anon_sym_return] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(1232), - [anon_sym_continue] = ACTIONS(1232), - [anon_sym_goto] = ACTIONS(1232), - [anon_sym_DASH_DASH] = ACTIONS(1234), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_sizeof] = ACTIONS(1232), - [anon_sym_offsetof] = ACTIONS(1232), - [anon_sym__Generic] = ACTIONS(1232), - [anon_sym_asm] = ACTIONS(1232), - [anon_sym___asm__] = ACTIONS(1232), - [sym_number_literal] = ACTIONS(1234), - [anon_sym_L_SQUOTE] = ACTIONS(1234), - [anon_sym_u_SQUOTE] = ACTIONS(1234), - [anon_sym_U_SQUOTE] = ACTIONS(1234), - [anon_sym_u8_SQUOTE] = ACTIONS(1234), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_L_DQUOTE] = ACTIONS(1234), - [anon_sym_u_DQUOTE] = ACTIONS(1234), - [anon_sym_U_DQUOTE] = ACTIONS(1234), - [anon_sym_u8_DQUOTE] = ACTIONS(1234), - [anon_sym_DQUOTE] = ACTIONS(1234), - [sym_true] = ACTIONS(1232), - [sym_false] = ACTIONS(1232), - [anon_sym_NULL] = ACTIONS(1232), - [anon_sym_nullptr] = ACTIONS(1232), + [335] = { + [ts_builtin_sym_end] = ACTIONS(1318), + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_else] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [367] = { + [336] = { [sym_identifier] = ACTIONS(1324), [aux_sym_preproc_include_token1] = ACTIONS(1324), [aux_sym_preproc_def_token1] = ACTIONS(1324), @@ -51917,47 +49187,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1324), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(385), - [sym_attributed_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_expression_statement] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_case_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_goto_statement] = STATE(385), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [337] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(528), + [sym_attributed_statement] = STATE(528), + [sym_labeled_statement] = STATE(528), + [sym_expression_statement] = STATE(528), + [sym_if_statement] = STATE(528), + [sym_switch_statement] = STATE(528), + [sym_case_statement] = STATE(528), + [sym_while_statement] = STATE(528), + [sym_do_statement] = STATE(528), + [sym_for_statement] = STATE(528), + [sym_return_statement] = STATE(528), + [sym_break_statement] = STATE(528), + [sym_continue_statement] = STATE(528), + [sym_goto_statement] = STATE(528), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [338] = { + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_identifier] = ACTIONS(1216), + [aux_sym_preproc_include_token1] = ACTIONS(1216), + [aux_sym_preproc_def_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), + [sym_preproc_directive] = ACTIONS(1216), + [anon_sym_LPAREN2] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym___attribute__] = ACTIONS(1216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), + [anon_sym___declspec] = ACTIONS(1216), + [anon_sym___cdecl] = ACTIONS(1216), + [anon_sym___clrcall] = ACTIONS(1216), + [anon_sym___stdcall] = ACTIONS(1216), + [anon_sym___fastcall] = ACTIONS(1216), + [anon_sym___thiscall] = ACTIONS(1216), + [anon_sym___vectorcall] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_auto] = ACTIONS(1216), + [anon_sym_register] = ACTIONS(1216), + [anon_sym_inline] = ACTIONS(1216), + [anon_sym_thread_local] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_constexpr] = ACTIONS(1216), + [anon_sym_volatile] = ACTIONS(1216), + [anon_sym_restrict] = ACTIONS(1216), + [anon_sym___restrict__] = ACTIONS(1216), + [anon_sym__Atomic] = ACTIONS(1216), + [anon_sym__Noreturn] = ACTIONS(1216), + [anon_sym_noreturn] = ACTIONS(1216), + [sym_primitive_type] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1216), + [anon_sym_switch] = ACTIONS(1216), + [anon_sym_case] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_do] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_goto] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_sizeof] = ACTIONS(1216), + [anon_sym_offsetof] = ACTIONS(1216), + [anon_sym__Generic] = ACTIONS(1216), + [anon_sym_asm] = ACTIONS(1216), + [anon_sym___asm__] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1218), + [anon_sym_L_SQUOTE] = ACTIONS(1218), + [anon_sym_u_SQUOTE] = ACTIONS(1218), + [anon_sym_U_SQUOTE] = ACTIONS(1218), + [anon_sym_u8_SQUOTE] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_L_DQUOTE] = ACTIONS(1218), + [anon_sym_u_DQUOTE] = ACTIONS(1218), + [anon_sym_U_DQUOTE] = ACTIONS(1218), + [anon_sym_u8_DQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [sym_true] = ACTIONS(1216), + [sym_false] = ACTIONS(1216), + [anon_sym_NULL] = ACTIONS(1216), + [anon_sym_nullptr] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), + }, + [339] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(257), + [sym_attributed_statement] = STATE(257), + [sym_labeled_statement] = STATE(257), + [sym_expression_statement] = STATE(257), + [sym_if_statement] = STATE(257), + [sym_switch_statement] = STATE(257), + [sym_case_statement] = STATE(257), + [sym_while_statement] = STATE(257), + [sym_do_statement] = STATE(257), + [sym_for_statement] = STATE(257), + [sym_return_statement] = STATE(257), + [sym_break_statement] = STATE(257), + [sym_continue_statement] = STATE(257), + [sym_goto_statement] = STATE(257), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [340] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(277), + [sym_attributed_statement] = STATE(277), + [sym_labeled_statement] = STATE(277), + [sym_expression_statement] = STATE(277), + [sym_if_statement] = STATE(277), + [sym_switch_statement] = STATE(277), + [sym_case_statement] = STATE(277), + [sym_while_statement] = STATE(277), + [sym_do_statement] = STATE(277), + [sym_for_statement] = STATE(277), + [sym_return_statement] = STATE(277), + [sym_break_statement] = STATE(277), + [sym_continue_statement] = STATE(277), + [sym_goto_statement] = STATE(277), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51967,18 +49495,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -52003,219 +49531,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), + [341] = { + [sym_attribute_declaration] = STATE(341), + [sym_compound_statement] = STATE(312), + [sym_attributed_statement] = STATE(312), + [sym_labeled_statement] = STATE(312), + [sym_expression_statement] = STATE(312), + [sym_if_statement] = STATE(312), + [sym_switch_statement] = STATE(312), + [sym_case_statement] = STATE(312), + [sym_while_statement] = STATE(312), + [sym_do_statement] = STATE(312), + [sym_for_statement] = STATE(312), + [sym_return_statement] = STATE(312), + [sym_break_statement] = STATE(312), + [sym_continue_statement] = STATE(312), + [sym_goto_statement] = STATE(312), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(341), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_switch] = ACTIONS(1567), + [anon_sym_case] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_goto] = ACTIONS(1594), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), [sym_comment] = ACTIONS(3), }, - [370] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_identifier] = ACTIONS(1324), - [aux_sym_preproc_include_token1] = ACTIONS(1324), - [aux_sym_preproc_def_token1] = ACTIONS(1324), - [aux_sym_preproc_if_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1324), - [sym_preproc_directive] = ACTIONS(1324), - [anon_sym_LPAREN2] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_TILDE] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1324), - [anon_sym_extern] = ACTIONS(1324), - [anon_sym___attribute__] = ACTIONS(1324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1326), - [anon_sym___declspec] = ACTIONS(1324), - [anon_sym___cdecl] = ACTIONS(1324), - [anon_sym___clrcall] = ACTIONS(1324), - [anon_sym___stdcall] = ACTIONS(1324), - [anon_sym___fastcall] = ACTIONS(1324), - [anon_sym___thiscall] = ACTIONS(1324), - [anon_sym___vectorcall] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1326), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = ACTIONS(1324), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_auto] = ACTIONS(1324), - [anon_sym_register] = ACTIONS(1324), - [anon_sym_inline] = ACTIONS(1324), - [anon_sym_thread_local] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1324), - [anon_sym_constexpr] = ACTIONS(1324), - [anon_sym_volatile] = ACTIONS(1324), - [anon_sym_restrict] = ACTIONS(1324), - [anon_sym___restrict__] = ACTIONS(1324), - [anon_sym__Atomic] = ACTIONS(1324), - [anon_sym__Noreturn] = ACTIONS(1324), - [anon_sym_noreturn] = ACTIONS(1324), - [sym_primitive_type] = ACTIONS(1324), - [anon_sym_enum] = ACTIONS(1324), - [anon_sym_struct] = ACTIONS(1324), - [anon_sym_union] = ACTIONS(1324), - [anon_sym_if] = ACTIONS(1324), - [anon_sym_else] = ACTIONS(1324), - [anon_sym_switch] = ACTIONS(1324), - [anon_sym_case] = ACTIONS(1324), - [anon_sym_default] = ACTIONS(1324), - [anon_sym_while] = ACTIONS(1324), - [anon_sym_do] = ACTIONS(1324), - [anon_sym_for] = ACTIONS(1324), - [anon_sym_return] = ACTIONS(1324), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1326), - [anon_sym_PLUS_PLUS] = ACTIONS(1326), - [anon_sym_sizeof] = ACTIONS(1324), - [anon_sym_offsetof] = ACTIONS(1324), - [anon_sym__Generic] = ACTIONS(1324), - [anon_sym_asm] = ACTIONS(1324), - [anon_sym___asm__] = ACTIONS(1324), - [sym_number_literal] = ACTIONS(1326), - [anon_sym_L_SQUOTE] = ACTIONS(1326), - [anon_sym_u_SQUOTE] = ACTIONS(1326), - [anon_sym_U_SQUOTE] = ACTIONS(1326), - [anon_sym_u8_SQUOTE] = ACTIONS(1326), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_L_DQUOTE] = ACTIONS(1326), - [anon_sym_u_DQUOTE] = ACTIONS(1326), - [anon_sym_U_DQUOTE] = ACTIONS(1326), - [anon_sym_u8_DQUOTE] = ACTIONS(1326), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_true] = ACTIONS(1324), - [sym_false] = ACTIONS(1324), - [anon_sym_NULL] = ACTIONS(1324), - [anon_sym_nullptr] = ACTIONS(1324), + [342] = { + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_identifier] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + }, + [343] = { + [sym_identifier] = ACTIONS(1332), + [aux_sym_preproc_include_token1] = ACTIONS(1332), + [aux_sym_preproc_def_token1] = ACTIONS(1332), + [aux_sym_preproc_if_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1332), + [sym_preproc_directive] = ACTIONS(1332), + [anon_sym_LPAREN2] = ACTIONS(1334), + [anon_sym_BANG] = ACTIONS(1334), + [anon_sym_TILDE] = ACTIONS(1334), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1334), + [anon_sym_AMP] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1332), + [anon_sym_extern] = ACTIONS(1332), + [anon_sym___attribute__] = ACTIONS(1332), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1334), + [anon_sym___declspec] = ACTIONS(1332), + [anon_sym___cdecl] = ACTIONS(1332), + [anon_sym___clrcall] = ACTIONS(1332), + [anon_sym___stdcall] = ACTIONS(1332), + [anon_sym___fastcall] = ACTIONS(1332), + [anon_sym___thiscall] = ACTIONS(1332), + [anon_sym___vectorcall] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_auto] = ACTIONS(1332), + [anon_sym_register] = ACTIONS(1332), + [anon_sym_inline] = ACTIONS(1332), + [anon_sym_thread_local] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [sym_primitive_type] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_else] = ACTIONS(1332), + [anon_sym_switch] = ACTIONS(1332), + [anon_sym_case] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [anon_sym_do] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_goto] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1334), + [anon_sym_PLUS_PLUS] = ACTIONS(1334), + [anon_sym_sizeof] = ACTIONS(1332), + [anon_sym_offsetof] = ACTIONS(1332), + [anon_sym__Generic] = ACTIONS(1332), + [anon_sym_asm] = ACTIONS(1332), + [anon_sym___asm__] = ACTIONS(1332), + [sym_number_literal] = ACTIONS(1334), + [anon_sym_L_SQUOTE] = ACTIONS(1334), + [anon_sym_u_SQUOTE] = ACTIONS(1334), + [anon_sym_U_SQUOTE] = ACTIONS(1334), + [anon_sym_u8_SQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_L_DQUOTE] = ACTIONS(1334), + [anon_sym_u_DQUOTE] = ACTIONS(1334), + [anon_sym_U_DQUOTE] = ACTIONS(1334), + [anon_sym_u8_DQUOTE] = ACTIONS(1334), + [anon_sym_DQUOTE] = ACTIONS(1334), + [sym_true] = ACTIONS(1332), + [sym_false] = ACTIONS(1332), + [anon_sym_NULL] = ACTIONS(1332), + [anon_sym_nullptr] = ACTIONS(1332), + [sym_comment] = ACTIONS(3), + }, + [344] = { + [sym_identifier] = ACTIONS(1196), + [aux_sym_preproc_include_token1] = ACTIONS(1196), + [aux_sym_preproc_def_token1] = ACTIONS(1196), + [aux_sym_preproc_if_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), + [sym_preproc_directive] = ACTIONS(1196), + [anon_sym_LPAREN2] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_TILDE] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_typedef] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym___attribute__] = ACTIONS(1196), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), + [anon_sym___declspec] = ACTIONS(1196), + [anon_sym___cdecl] = ACTIONS(1196), + [anon_sym___clrcall] = ACTIONS(1196), + [anon_sym___stdcall] = ACTIONS(1196), + [anon_sym___fastcall] = ACTIONS(1196), + [anon_sym___thiscall] = ACTIONS(1196), + [anon_sym___vectorcall] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_auto] = ACTIONS(1196), + [anon_sym_register] = ACTIONS(1196), + [anon_sym_inline] = ACTIONS(1196), + [anon_sym_thread_local] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_constexpr] = ACTIONS(1196), + [anon_sym_volatile] = ACTIONS(1196), + [anon_sym_restrict] = ACTIONS(1196), + [anon_sym___restrict__] = ACTIONS(1196), + [anon_sym__Atomic] = ACTIONS(1196), + [anon_sym__Noreturn] = ACTIONS(1196), + [anon_sym_noreturn] = ACTIONS(1196), + [sym_primitive_type] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_switch] = ACTIONS(1196), + [anon_sym_case] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_goto] = ACTIONS(1196), + [anon_sym_DASH_DASH] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1198), + [anon_sym_sizeof] = ACTIONS(1196), + [anon_sym_offsetof] = ACTIONS(1196), + [anon_sym__Generic] = ACTIONS(1196), + [anon_sym_asm] = ACTIONS(1196), + [anon_sym___asm__] = ACTIONS(1196), + [sym_number_literal] = ACTIONS(1198), + [anon_sym_L_SQUOTE] = ACTIONS(1198), + [anon_sym_u_SQUOTE] = ACTIONS(1198), + [anon_sym_U_SQUOTE] = ACTIONS(1198), + [anon_sym_u8_SQUOTE] = ACTIONS(1198), + [anon_sym_SQUOTE] = ACTIONS(1198), + [anon_sym_L_DQUOTE] = ACTIONS(1198), + [anon_sym_u_DQUOTE] = ACTIONS(1198), + [anon_sym_U_DQUOTE] = ACTIONS(1198), + [anon_sym_u8_DQUOTE] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_true] = ACTIONS(1196), + [sym_false] = ACTIONS(1196), + [anon_sym_NULL] = ACTIONS(1196), + [anon_sym_nullptr] = ACTIONS(1196), + [sym_comment] = ACTIONS(3), + }, + [345] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(277), + [sym_attributed_statement] = STATE(277), + [sym_labeled_statement] = STATE(277), + [sym_expression_statement] = STATE(277), + [sym_if_statement] = STATE(277), + [sym_switch_statement] = STATE(277), + [sym_case_statement] = STATE(277), + [sym_while_statement] = STATE(277), + [sym_do_statement] = STATE(277), + [sym_for_statement] = STATE(277), + [sym_return_statement] = STATE(277), + [sym_break_statement] = STATE(277), + [sym_continue_statement] = STATE(277), + [sym_goto_statement] = STATE(277), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), + [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(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [371] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(1940), - [sym_attributed_statement] = STATE(1940), - [sym_labeled_statement] = STATE(1940), - [sym_expression_statement] = STATE(1940), - [sym_if_statement] = STATE(1940), - [sym_switch_statement] = STATE(1940), - [sym_case_statement] = STATE(1940), - [sym_while_statement] = STATE(1940), - [sym_do_statement] = STATE(1940), - [sym_for_statement] = STATE(1940), - [sym_return_statement] = STATE(1940), - [sym_break_statement] = STATE(1940), - [sym_continue_statement] = STATE(1940), - [sym_goto_statement] = STATE(1940), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [346] = { + [sym_attribute_declaration] = STATE(366), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52226,13 +50012,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1150), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -52261,47 +50047,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [372] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(282), - [sym_attributed_statement] = STATE(282), - [sym_labeled_statement] = STATE(282), - [sym_expression_statement] = STATE(282), - [sym_if_statement] = STATE(282), - [sym_switch_statement] = STATE(282), - [sym_case_statement] = STATE(282), - [sym_while_statement] = STATE(282), - [sym_do_statement] = STATE(282), - [sym_for_statement] = STATE(282), - [sym_return_statement] = STATE(282), - [sym_break_statement] = STATE(282), - [sym_continue_statement] = STATE(282), - [sym_goto_statement] = STATE(282), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [347] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52312,13 +50098,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(1150), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -52347,391 +50133,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [373] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [374] = { - [ts_builtin_sym_end] = ACTIONS(1330), - [sym_identifier] = ACTIONS(1328), - [aux_sym_preproc_include_token1] = ACTIONS(1328), - [aux_sym_preproc_def_token1] = ACTIONS(1328), - [aux_sym_preproc_if_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), - [sym_preproc_directive] = ACTIONS(1328), - [anon_sym_LPAREN2] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_TILDE] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1328), - [anon_sym_extern] = ACTIONS(1328), - [anon_sym___attribute__] = ACTIONS(1328), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), - [anon_sym___declspec] = ACTIONS(1328), - [anon_sym___cdecl] = ACTIONS(1328), - [anon_sym___clrcall] = ACTIONS(1328), - [anon_sym___stdcall] = ACTIONS(1328), - [anon_sym___fastcall] = ACTIONS(1328), - [anon_sym___thiscall] = ACTIONS(1328), - [anon_sym___vectorcall] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1330), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = ACTIONS(1328), - [anon_sym_static] = ACTIONS(1328), - [anon_sym_auto] = ACTIONS(1328), - [anon_sym_register] = ACTIONS(1328), - [anon_sym_inline] = ACTIONS(1328), - [anon_sym_thread_local] = ACTIONS(1328), - [anon_sym_const] = ACTIONS(1328), - [anon_sym_constexpr] = ACTIONS(1328), - [anon_sym_volatile] = ACTIONS(1328), - [anon_sym_restrict] = ACTIONS(1328), - [anon_sym___restrict__] = ACTIONS(1328), - [anon_sym__Atomic] = ACTIONS(1328), - [anon_sym__Noreturn] = ACTIONS(1328), - [anon_sym_noreturn] = ACTIONS(1328), - [sym_primitive_type] = ACTIONS(1328), - [anon_sym_enum] = ACTIONS(1328), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_union] = ACTIONS(1328), - [anon_sym_if] = ACTIONS(1328), - [anon_sym_else] = ACTIONS(1328), - [anon_sym_switch] = ACTIONS(1328), - [anon_sym_case] = ACTIONS(1328), - [anon_sym_default] = ACTIONS(1328), - [anon_sym_while] = ACTIONS(1328), - [anon_sym_do] = ACTIONS(1328), - [anon_sym_for] = ACTIONS(1328), - [anon_sym_return] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1328), - [anon_sym_continue] = ACTIONS(1328), - [anon_sym_goto] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1330), - [anon_sym_PLUS_PLUS] = ACTIONS(1330), - [anon_sym_sizeof] = ACTIONS(1328), - [anon_sym_offsetof] = ACTIONS(1328), - [anon_sym__Generic] = ACTIONS(1328), - [anon_sym_asm] = ACTIONS(1328), - [anon_sym___asm__] = ACTIONS(1328), - [sym_number_literal] = ACTIONS(1330), - [anon_sym_L_SQUOTE] = ACTIONS(1330), - [anon_sym_u_SQUOTE] = ACTIONS(1330), - [anon_sym_U_SQUOTE] = ACTIONS(1330), - [anon_sym_u8_SQUOTE] = ACTIONS(1330), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_L_DQUOTE] = ACTIONS(1330), - [anon_sym_u_DQUOTE] = ACTIONS(1330), - [anon_sym_U_DQUOTE] = ACTIONS(1330), - [anon_sym_u8_DQUOTE] = ACTIONS(1330), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_true] = ACTIONS(1328), - [sym_false] = ACTIONS(1328), - [anon_sym_NULL] = ACTIONS(1328), - [anon_sym_nullptr] = ACTIONS(1328), + [348] = { + [sym_attribute_declaration] = STATE(366), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [375] = { - [ts_builtin_sym_end] = ACTIONS(1322), - [sym_identifier] = ACTIONS(1320), - [aux_sym_preproc_include_token1] = ACTIONS(1320), - [aux_sym_preproc_def_token1] = ACTIONS(1320), - [aux_sym_preproc_if_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), - [sym_preproc_directive] = ACTIONS(1320), - [anon_sym_LPAREN2] = ACTIONS(1322), - [anon_sym_BANG] = ACTIONS(1322), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1322), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1320), - [anon_sym_extern] = ACTIONS(1320), - [anon_sym___attribute__] = ACTIONS(1320), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), - [anon_sym___declspec] = ACTIONS(1320), - [anon_sym___cdecl] = ACTIONS(1320), - [anon_sym___clrcall] = ACTIONS(1320), - [anon_sym___stdcall] = ACTIONS(1320), - [anon_sym___fastcall] = ACTIONS(1320), - [anon_sym___thiscall] = ACTIONS(1320), - [anon_sym___vectorcall] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = ACTIONS(1320), - [anon_sym_static] = ACTIONS(1320), - [anon_sym_auto] = ACTIONS(1320), - [anon_sym_register] = ACTIONS(1320), - [anon_sym_inline] = ACTIONS(1320), - [anon_sym_thread_local] = ACTIONS(1320), - [anon_sym_const] = ACTIONS(1320), - [anon_sym_constexpr] = ACTIONS(1320), - [anon_sym_volatile] = ACTIONS(1320), - [anon_sym_restrict] = ACTIONS(1320), - [anon_sym___restrict__] = ACTIONS(1320), - [anon_sym__Atomic] = ACTIONS(1320), - [anon_sym__Noreturn] = ACTIONS(1320), - [anon_sym_noreturn] = ACTIONS(1320), - [sym_primitive_type] = ACTIONS(1320), - [anon_sym_enum] = ACTIONS(1320), - [anon_sym_struct] = ACTIONS(1320), - [anon_sym_union] = ACTIONS(1320), - [anon_sym_if] = ACTIONS(1320), - [anon_sym_else] = ACTIONS(1320), - [anon_sym_switch] = ACTIONS(1320), - [anon_sym_case] = ACTIONS(1320), - [anon_sym_default] = ACTIONS(1320), - [anon_sym_while] = ACTIONS(1320), - [anon_sym_do] = ACTIONS(1320), - [anon_sym_for] = ACTIONS(1320), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1320), - [anon_sym_continue] = ACTIONS(1320), - [anon_sym_goto] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1322), - [anon_sym_PLUS_PLUS] = ACTIONS(1322), - [anon_sym_sizeof] = ACTIONS(1320), - [anon_sym_offsetof] = ACTIONS(1320), - [anon_sym__Generic] = ACTIONS(1320), - [anon_sym_asm] = ACTIONS(1320), - [anon_sym___asm__] = ACTIONS(1320), - [sym_number_literal] = ACTIONS(1322), - [anon_sym_L_SQUOTE] = ACTIONS(1322), - [anon_sym_u_SQUOTE] = ACTIONS(1322), - [anon_sym_U_SQUOTE] = ACTIONS(1322), - [anon_sym_u8_SQUOTE] = ACTIONS(1322), - [anon_sym_SQUOTE] = ACTIONS(1322), - [anon_sym_L_DQUOTE] = ACTIONS(1322), - [anon_sym_u_DQUOTE] = ACTIONS(1322), - [anon_sym_U_DQUOTE] = ACTIONS(1322), - [anon_sym_u8_DQUOTE] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [anon_sym_NULL] = ACTIONS(1320), - [anon_sym_nullptr] = ACTIONS(1320), + [349] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(250), + [sym_attributed_statement] = STATE(250), + [sym_labeled_statement] = STATE(250), + [sym_expression_statement] = STATE(250), + [sym_if_statement] = STATE(250), + [sym_switch_statement] = STATE(250), + [sym_case_statement] = STATE(250), + [sym_while_statement] = STATE(250), + [sym_do_statement] = STATE(250), + [sym_for_statement] = STATE(250), + [sym_return_statement] = STATE(250), + [sym_break_statement] = STATE(250), + [sym_continue_statement] = STATE(250), + [sym_goto_statement] = STATE(250), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [376] = { - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), + [350] = { + [sym_attribute_declaration] = STATE(366), + [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), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [377] = { - [sym_attribute_declaration] = STATE(273), - [sym_compound_statement] = STATE(190), - [sym_attributed_statement] = STATE(190), - [sym_labeled_statement] = STATE(190), - [sym_expression_statement] = STATE(190), - [sym_if_statement] = STATE(190), - [sym_switch_statement] = STATE(190), - [sym_case_statement] = STATE(190), - [sym_while_statement] = STATE(190), - [sym_do_statement] = STATE(190), - [sym_for_statement] = STATE(190), - [sym_return_statement] = STATE(190), - [sym_break_statement] = STATE(190), - [sym_continue_statement] = STATE(190), - [sym_goto_statement] = STATE(190), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [351] = { + [sym_attribute_declaration] = STATE(366), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52739,20 +50439,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(183), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -52777,219 +50477,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [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(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), - [sym_comment] = ACTIONS(3), - }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(1202), - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(1200), - [aux_sym_preproc_def_token1] = ACTIONS(1200), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), - [sym_preproc_directive] = ACTIONS(1200), - [anon_sym_LPAREN2] = ACTIONS(1202), - [anon_sym_BANG] = ACTIONS(1202), - [anon_sym_TILDE] = ACTIONS(1202), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_STAR] = ACTIONS(1202), - [anon_sym_AMP] = ACTIONS(1202), - [anon_sym_SEMI] = ACTIONS(1202), - [anon_sym_typedef] = ACTIONS(1200), - [anon_sym_extern] = ACTIONS(1200), - [anon_sym___attribute__] = ACTIONS(1200), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), - [anon_sym___declspec] = ACTIONS(1200), - [anon_sym___cdecl] = ACTIONS(1200), - [anon_sym___clrcall] = ACTIONS(1200), - [anon_sym___stdcall] = ACTIONS(1200), - [anon_sym___fastcall] = ACTIONS(1200), - [anon_sym___thiscall] = ACTIONS(1200), - [anon_sym___vectorcall] = ACTIONS(1200), - [anon_sym_LBRACE] = ACTIONS(1202), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = ACTIONS(1200), - [anon_sym_static] = ACTIONS(1200), - [anon_sym_auto] = ACTIONS(1200), - [anon_sym_register] = ACTIONS(1200), - [anon_sym_inline] = ACTIONS(1200), - [anon_sym_thread_local] = ACTIONS(1200), - [anon_sym_const] = ACTIONS(1200), - [anon_sym_constexpr] = ACTIONS(1200), - [anon_sym_volatile] = ACTIONS(1200), - [anon_sym_restrict] = ACTIONS(1200), - [anon_sym___restrict__] = ACTIONS(1200), - [anon_sym__Atomic] = ACTIONS(1200), - [anon_sym__Noreturn] = ACTIONS(1200), - [anon_sym_noreturn] = ACTIONS(1200), - [sym_primitive_type] = ACTIONS(1200), - [anon_sym_enum] = ACTIONS(1200), - [anon_sym_struct] = ACTIONS(1200), - [anon_sym_union] = ACTIONS(1200), - [anon_sym_if] = ACTIONS(1200), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_switch] = ACTIONS(1200), - [anon_sym_case] = ACTIONS(1200), - [anon_sym_default] = ACTIONS(1200), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_do] = ACTIONS(1200), - [anon_sym_for] = ACTIONS(1200), - [anon_sym_return] = ACTIONS(1200), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym_DASH_DASH] = ACTIONS(1202), - [anon_sym_PLUS_PLUS] = ACTIONS(1202), - [anon_sym_sizeof] = ACTIONS(1200), - [anon_sym_offsetof] = ACTIONS(1200), - [anon_sym__Generic] = ACTIONS(1200), - [anon_sym_asm] = ACTIONS(1200), - [anon_sym___asm__] = ACTIONS(1200), - [sym_number_literal] = ACTIONS(1202), - [anon_sym_L_SQUOTE] = ACTIONS(1202), - [anon_sym_u_SQUOTE] = ACTIONS(1202), - [anon_sym_U_SQUOTE] = ACTIONS(1202), - [anon_sym_u8_SQUOTE] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(1202), - [anon_sym_L_DQUOTE] = ACTIONS(1202), - [anon_sym_u_DQUOTE] = ACTIONS(1202), - [anon_sym_U_DQUOTE] = ACTIONS(1202), - [anon_sym_u8_DQUOTE] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1202), - [sym_true] = ACTIONS(1200), - [sym_false] = ACTIONS(1200), - [anon_sym_NULL] = ACTIONS(1200), - [anon_sym_nullptr] = ACTIONS(1200), + [352] = { + [sym_attribute_declaration] = STATE(366), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [380] = { - [sym_attribute_declaration] = STATE(273), - [sym_compound_statement] = STATE(189), - [sym_attributed_statement] = STATE(189), - [sym_labeled_statement] = STATE(189), - [sym_expression_statement] = STATE(189), - [sym_if_statement] = STATE(189), - [sym_switch_statement] = STATE(189), - [sym_case_statement] = STATE(189), - [sym_while_statement] = STATE(189), - [sym_do_statement] = STATE(189), - [sym_for_statement] = STATE(189), - [sym_return_statement] = STATE(189), - [sym_break_statement] = STATE(189), - [sym_continue_statement] = STATE(189), - [sym_goto_statement] = STATE(189), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [353] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(291), + [sym_attributed_statement] = STATE(291), + [sym_labeled_statement] = STATE(291), + [sym_expression_statement] = STATE(291), + [sym_if_statement] = STATE(291), + [sym_switch_statement] = STATE(291), + [sym_case_statement] = STATE(291), + [sym_while_statement] = STATE(291), + [sym_do_statement] = STATE(291), + [sym_for_statement] = STATE(291), + [sym_return_statement] = STATE(291), + [sym_break_statement] = STATE(291), + [sym_continue_statement] = STATE(291), + [sym_goto_statement] = STATE(291), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52997,20 +50611,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(183), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -53035,305 +50649,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [381] = { - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [354] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(293), + [sym_attributed_statement] = STATE(293), + [sym_labeled_statement] = STATE(293), + [sym_expression_statement] = STATE(293), + [sym_if_statement] = STATE(293), + [sym_switch_statement] = STATE(293), + [sym_case_statement] = STATE(293), + [sym_while_statement] = STATE(293), + [sym_do_statement] = STATE(293), + [sym_for_statement] = STATE(293), + [sym_return_statement] = STATE(293), + [sym_break_statement] = STATE(293), + [sym_continue_statement] = STATE(293), + [sym_goto_statement] = STATE(293), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), + [355] = { + [sym_identifier] = ACTIONS(1336), + [aux_sym_preproc_include_token1] = ACTIONS(1336), + [aux_sym_preproc_def_token1] = ACTIONS(1336), + [aux_sym_preproc_if_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1336), + [sym_preproc_directive] = ACTIONS(1336), + [anon_sym_LPAREN2] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_TILDE] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym___attribute__] = ACTIONS(1336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1338), + [anon_sym___declspec] = ACTIONS(1336), + [anon_sym___cdecl] = ACTIONS(1336), + [anon_sym___clrcall] = ACTIONS(1336), + [anon_sym___stdcall] = ACTIONS(1336), + [anon_sym___fastcall] = ACTIONS(1336), + [anon_sym___thiscall] = ACTIONS(1336), + [anon_sym___vectorcall] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_auto] = ACTIONS(1336), + [anon_sym_register] = ACTIONS(1336), + [anon_sym_inline] = ACTIONS(1336), + [anon_sym_thread_local] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_constexpr] = ACTIONS(1336), + [anon_sym_volatile] = ACTIONS(1336), + [anon_sym_restrict] = ACTIONS(1336), + [anon_sym___restrict__] = ACTIONS(1336), + [anon_sym__Atomic] = ACTIONS(1336), + [anon_sym__Noreturn] = ACTIONS(1336), + [anon_sym_noreturn] = ACTIONS(1336), + [sym_primitive_type] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_else] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1336), + [anon_sym_case] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_do] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_goto] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1338), + [anon_sym_PLUS_PLUS] = ACTIONS(1338), + [anon_sym_sizeof] = ACTIONS(1336), + [anon_sym_offsetof] = ACTIONS(1336), + [anon_sym__Generic] = ACTIONS(1336), + [anon_sym_asm] = ACTIONS(1336), + [anon_sym___asm__] = ACTIONS(1336), + [sym_number_literal] = ACTIONS(1338), + [anon_sym_L_SQUOTE] = ACTIONS(1338), + [anon_sym_u_SQUOTE] = ACTIONS(1338), + [anon_sym_U_SQUOTE] = ACTIONS(1338), + [anon_sym_u8_SQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [anon_sym_L_DQUOTE] = ACTIONS(1338), + [anon_sym_u_DQUOTE] = ACTIONS(1338), + [anon_sym_U_DQUOTE] = ACTIONS(1338), + [anon_sym_u8_DQUOTE] = ACTIONS(1338), + [anon_sym_DQUOTE] = ACTIONS(1338), + [sym_true] = ACTIONS(1336), + [sym_false] = ACTIONS(1336), + [anon_sym_NULL] = ACTIONS(1336), + [anon_sym_nullptr] = ACTIONS(1336), [sym_comment] = ACTIONS(3), }, - [383] = { - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_identifier] = ACTIONS(1228), - [aux_sym_preproc_include_token1] = ACTIONS(1228), - [aux_sym_preproc_def_token1] = ACTIONS(1228), - [aux_sym_preproc_if_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), - [sym_preproc_directive] = ACTIONS(1228), - [anon_sym_LPAREN2] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1230), - [anon_sym_TILDE] = ACTIONS(1230), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_typedef] = ACTIONS(1228), - [anon_sym_extern] = ACTIONS(1228), - [anon_sym___attribute__] = ACTIONS(1228), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), - [anon_sym___declspec] = ACTIONS(1228), - [anon_sym___cdecl] = ACTIONS(1228), - [anon_sym___clrcall] = ACTIONS(1228), - [anon_sym___stdcall] = ACTIONS(1228), - [anon_sym___fastcall] = ACTIONS(1228), - [anon_sym___thiscall] = ACTIONS(1228), - [anon_sym___vectorcall] = ACTIONS(1228), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = ACTIONS(1228), - [anon_sym_static] = ACTIONS(1228), - [anon_sym_auto] = ACTIONS(1228), - [anon_sym_register] = ACTIONS(1228), - [anon_sym_inline] = ACTIONS(1228), - [anon_sym_thread_local] = ACTIONS(1228), - [anon_sym_const] = ACTIONS(1228), - [anon_sym_constexpr] = ACTIONS(1228), - [anon_sym_volatile] = ACTIONS(1228), - [anon_sym_restrict] = ACTIONS(1228), - [anon_sym___restrict__] = ACTIONS(1228), - [anon_sym__Atomic] = ACTIONS(1228), - [anon_sym__Noreturn] = ACTIONS(1228), - [anon_sym_noreturn] = ACTIONS(1228), - [sym_primitive_type] = ACTIONS(1228), - [anon_sym_enum] = ACTIONS(1228), - [anon_sym_struct] = ACTIONS(1228), - [anon_sym_union] = ACTIONS(1228), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1228), - [anon_sym_switch] = ACTIONS(1228), - [anon_sym_case] = ACTIONS(1228), - [anon_sym_default] = ACTIONS(1228), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_do] = ACTIONS(1228), - [anon_sym_for] = ACTIONS(1228), - [anon_sym_return] = ACTIONS(1228), - [anon_sym_break] = ACTIONS(1228), - [anon_sym_continue] = ACTIONS(1228), - [anon_sym_goto] = ACTIONS(1228), - [anon_sym_DASH_DASH] = ACTIONS(1230), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_sizeof] = ACTIONS(1228), - [anon_sym_offsetof] = ACTIONS(1228), - [anon_sym__Generic] = ACTIONS(1228), - [anon_sym_asm] = ACTIONS(1228), - [anon_sym___asm__] = ACTIONS(1228), - [sym_number_literal] = ACTIONS(1230), - [anon_sym_L_SQUOTE] = ACTIONS(1230), - [anon_sym_u_SQUOTE] = ACTIONS(1230), - [anon_sym_U_SQUOTE] = ACTIONS(1230), - [anon_sym_u8_SQUOTE] = ACTIONS(1230), - [anon_sym_SQUOTE] = ACTIONS(1230), - [anon_sym_L_DQUOTE] = ACTIONS(1230), - [anon_sym_u_DQUOTE] = ACTIONS(1230), - [anon_sym_U_DQUOTE] = ACTIONS(1230), - [anon_sym_u8_DQUOTE] = ACTIONS(1230), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym_true] = ACTIONS(1228), - [sym_false] = ACTIONS(1228), - [anon_sym_NULL] = ACTIONS(1228), - [anon_sym_nullptr] = ACTIONS(1228), + [356] = { + [sym_identifier] = ACTIONS(1340), + [aux_sym_preproc_include_token1] = ACTIONS(1340), + [aux_sym_preproc_def_token1] = ACTIONS(1340), + [aux_sym_preproc_if_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), + [sym_preproc_directive] = ACTIONS(1340), + [anon_sym_LPAREN2] = ACTIONS(1342), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1342), + [anon_sym_AMP] = ACTIONS(1342), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1340), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym___attribute__] = ACTIONS(1340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), + [anon_sym___declspec] = ACTIONS(1340), + [anon_sym___cdecl] = ACTIONS(1340), + [anon_sym___clrcall] = ACTIONS(1340), + [anon_sym___stdcall] = ACTIONS(1340), + [anon_sym___fastcall] = ACTIONS(1340), + [anon_sym___thiscall] = ACTIONS(1340), + [anon_sym___vectorcall] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_auto] = ACTIONS(1340), + [anon_sym_register] = ACTIONS(1340), + [anon_sym_inline] = ACTIONS(1340), + [anon_sym_thread_local] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_constexpr] = ACTIONS(1340), + [anon_sym_volatile] = ACTIONS(1340), + [anon_sym_restrict] = ACTIONS(1340), + [anon_sym___restrict__] = ACTIONS(1340), + [anon_sym__Atomic] = ACTIONS(1340), + [anon_sym__Noreturn] = ACTIONS(1340), + [anon_sym_noreturn] = ACTIONS(1340), + [sym_primitive_type] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_else] = ACTIONS(1340), + [anon_sym_switch] = ACTIONS(1340), + [anon_sym_case] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_do] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_goto] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1342), + [anon_sym_PLUS_PLUS] = ACTIONS(1342), + [anon_sym_sizeof] = ACTIONS(1340), + [anon_sym_offsetof] = ACTIONS(1340), + [anon_sym__Generic] = ACTIONS(1340), + [anon_sym_asm] = ACTIONS(1340), + [anon_sym___asm__] = ACTIONS(1340), + [sym_number_literal] = ACTIONS(1342), + [anon_sym_L_SQUOTE] = ACTIONS(1342), + [anon_sym_u_SQUOTE] = ACTIONS(1342), + [anon_sym_U_SQUOTE] = ACTIONS(1342), + [anon_sym_u8_SQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_L_DQUOTE] = ACTIONS(1342), + [anon_sym_u_DQUOTE] = ACTIONS(1342), + [anon_sym_U_DQUOTE] = ACTIONS(1342), + [anon_sym_u8_DQUOTE] = ACTIONS(1342), + [anon_sym_DQUOTE] = ACTIONS(1342), + [sym_true] = ACTIONS(1340), + [sym_false] = ACTIONS(1340), + [anon_sym_NULL] = ACTIONS(1340), + [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_attribute_declaration] = STATE(439), - [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(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [357] = { + [sym_attribute_declaration] = STATE(366), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53341,16 +50955,16 @@ 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(1005), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1150), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -53379,219 +50993,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_identifier] = ACTIONS(1236), - [aux_sym_preproc_include_token1] = ACTIONS(1236), - [aux_sym_preproc_def_token1] = ACTIONS(1236), - [aux_sym_preproc_if_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), - [sym_preproc_directive] = ACTIONS(1236), - [anon_sym_LPAREN2] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_typedef] = ACTIONS(1236), - [anon_sym_extern] = ACTIONS(1236), - [anon_sym___attribute__] = ACTIONS(1236), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), - [anon_sym___declspec] = ACTIONS(1236), - [anon_sym___cdecl] = ACTIONS(1236), - [anon_sym___clrcall] = ACTIONS(1236), - [anon_sym___stdcall] = ACTIONS(1236), - [anon_sym___fastcall] = ACTIONS(1236), - [anon_sym___thiscall] = ACTIONS(1236), - [anon_sym___vectorcall] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = ACTIONS(1236), - [anon_sym_static] = ACTIONS(1236), - [anon_sym_auto] = ACTIONS(1236), - [anon_sym_register] = ACTIONS(1236), - [anon_sym_inline] = ACTIONS(1236), - [anon_sym_thread_local] = ACTIONS(1236), - [anon_sym_const] = ACTIONS(1236), - [anon_sym_constexpr] = ACTIONS(1236), - [anon_sym_volatile] = ACTIONS(1236), - [anon_sym_restrict] = ACTIONS(1236), - [anon_sym___restrict__] = ACTIONS(1236), - [anon_sym__Atomic] = ACTIONS(1236), - [anon_sym__Noreturn] = ACTIONS(1236), - [anon_sym_noreturn] = ACTIONS(1236), - [sym_primitive_type] = ACTIONS(1236), - [anon_sym_enum] = ACTIONS(1236), - [anon_sym_struct] = ACTIONS(1236), - [anon_sym_union] = ACTIONS(1236), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1236), - [anon_sym_switch] = ACTIONS(1236), - [anon_sym_case] = ACTIONS(1236), - [anon_sym_default] = ACTIONS(1236), - [anon_sym_while] = ACTIONS(1236), - [anon_sym_do] = ACTIONS(1236), - [anon_sym_for] = ACTIONS(1236), - [anon_sym_return] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1236), - [anon_sym_continue] = ACTIONS(1236), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1238), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_sizeof] = ACTIONS(1236), - [anon_sym_offsetof] = ACTIONS(1236), - [anon_sym__Generic] = ACTIONS(1236), - [anon_sym_asm] = ACTIONS(1236), - [anon_sym___asm__] = ACTIONS(1236), - [sym_number_literal] = ACTIONS(1238), - [anon_sym_L_SQUOTE] = ACTIONS(1238), - [anon_sym_u_SQUOTE] = ACTIONS(1238), - [anon_sym_U_SQUOTE] = ACTIONS(1238), - [anon_sym_u8_SQUOTE] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_L_DQUOTE] = ACTIONS(1238), - [anon_sym_u_DQUOTE] = ACTIONS(1238), - [anon_sym_U_DQUOTE] = ACTIONS(1238), - [anon_sym_u8_DQUOTE] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1238), - [sym_true] = ACTIONS(1236), - [sym_false] = ACTIONS(1236), - [anon_sym_NULL] = ACTIONS(1236), - [anon_sym_nullptr] = ACTIONS(1236), + [358] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [386] = { - [ts_builtin_sym_end] = ACTIONS(1226), - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1224), - [aux_sym_preproc_def_token1] = ACTIONS(1224), - [aux_sym_preproc_if_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), - [sym_preproc_directive] = ACTIONS(1224), - [anon_sym_LPAREN2] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1226), - [anon_sym_TILDE] = ACTIONS(1226), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_typedef] = ACTIONS(1224), - [anon_sym_extern] = ACTIONS(1224), - [anon_sym___attribute__] = ACTIONS(1224), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), - [anon_sym___declspec] = ACTIONS(1224), - [anon_sym___cdecl] = ACTIONS(1224), - [anon_sym___clrcall] = ACTIONS(1224), - [anon_sym___stdcall] = ACTIONS(1224), - [anon_sym___fastcall] = ACTIONS(1224), - [anon_sym___thiscall] = ACTIONS(1224), - [anon_sym___vectorcall] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = ACTIONS(1224), - [anon_sym_static] = ACTIONS(1224), - [anon_sym_auto] = ACTIONS(1224), - [anon_sym_register] = ACTIONS(1224), - [anon_sym_inline] = ACTIONS(1224), - [anon_sym_thread_local] = ACTIONS(1224), - [anon_sym_const] = ACTIONS(1224), - [anon_sym_constexpr] = ACTIONS(1224), - [anon_sym_volatile] = ACTIONS(1224), - [anon_sym_restrict] = ACTIONS(1224), - [anon_sym___restrict__] = ACTIONS(1224), - [anon_sym__Atomic] = ACTIONS(1224), - [anon_sym__Noreturn] = ACTIONS(1224), - [anon_sym_noreturn] = ACTIONS(1224), - [sym_primitive_type] = ACTIONS(1224), - [anon_sym_enum] = ACTIONS(1224), - [anon_sym_struct] = ACTIONS(1224), - [anon_sym_union] = ACTIONS(1224), - [anon_sym_if] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1224), - [anon_sym_switch] = ACTIONS(1224), - [anon_sym_case] = ACTIONS(1224), - [anon_sym_default] = ACTIONS(1224), - [anon_sym_while] = ACTIONS(1224), - [anon_sym_do] = ACTIONS(1224), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1224), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_goto] = ACTIONS(1224), - [anon_sym_DASH_DASH] = ACTIONS(1226), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_sizeof] = ACTIONS(1224), - [anon_sym_offsetof] = ACTIONS(1224), - [anon_sym__Generic] = ACTIONS(1224), - [anon_sym_asm] = ACTIONS(1224), - [anon_sym___asm__] = ACTIONS(1224), - [sym_number_literal] = ACTIONS(1226), - [anon_sym_L_SQUOTE] = ACTIONS(1226), - [anon_sym_u_SQUOTE] = ACTIONS(1226), - [anon_sym_U_SQUOTE] = ACTIONS(1226), - [anon_sym_u8_SQUOTE] = ACTIONS(1226), - [anon_sym_SQUOTE] = ACTIONS(1226), - [anon_sym_L_DQUOTE] = ACTIONS(1226), - [anon_sym_u_DQUOTE] = ACTIONS(1226), - [anon_sym_U_DQUOTE] = ACTIONS(1226), - [anon_sym_u8_DQUOTE] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_true] = ACTIONS(1224), - [sym_false] = ACTIONS(1224), - [anon_sym_NULL] = ACTIONS(1224), - [anon_sym_nullptr] = ACTIONS(1224), + [359] = { + [sym_attribute_declaration] = STATE(366), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [387] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(219), - [sym_attributed_statement] = STATE(219), - [sym_labeled_statement] = STATE(219), - [sym_expression_statement] = STATE(219), - [sym_if_statement] = STATE(219), - [sym_switch_statement] = STATE(219), - [sym_case_statement] = STATE(219), - [sym_while_statement] = STATE(219), - [sym_do_statement] = STATE(219), - [sym_for_statement] = STATE(219), - [sym_return_statement] = STATE(219), - [sym_break_statement] = STATE(219), - [sym_continue_statement] = STATE(219), - [sym_goto_statement] = STATE(219), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [360] = { + [sym_attribute_declaration] = STATE(366), + [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(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53599,16 +51213,16 @@ 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(1005), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1150), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -53637,305 +51251,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [388] = { - [sym_identifier] = ACTIONS(1240), - [aux_sym_preproc_include_token1] = ACTIONS(1240), - [aux_sym_preproc_def_token1] = ACTIONS(1240), - [aux_sym_preproc_if_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), - [sym_preproc_directive] = ACTIONS(1240), - [anon_sym_LPAREN2] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_typedef] = ACTIONS(1240), - [anon_sym_extern] = ACTIONS(1240), - [anon_sym___attribute__] = ACTIONS(1240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), - [anon_sym___declspec] = ACTIONS(1240), - [anon_sym___cdecl] = ACTIONS(1240), - [anon_sym___clrcall] = ACTIONS(1240), - [anon_sym___stdcall] = ACTIONS(1240), - [anon_sym___fastcall] = ACTIONS(1240), - [anon_sym___thiscall] = ACTIONS(1240), - [anon_sym___vectorcall] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_auto] = ACTIONS(1240), - [anon_sym_register] = ACTIONS(1240), - [anon_sym_inline] = ACTIONS(1240), - [anon_sym_thread_local] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_constexpr] = ACTIONS(1240), - [anon_sym_volatile] = ACTIONS(1240), - [anon_sym_restrict] = ACTIONS(1240), - [anon_sym___restrict__] = ACTIONS(1240), - [anon_sym__Atomic] = ACTIONS(1240), - [anon_sym__Noreturn] = ACTIONS(1240), - [anon_sym_noreturn] = ACTIONS(1240), - [sym_primitive_type] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1240), - [anon_sym_switch] = ACTIONS(1240), - [anon_sym_case] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [anon_sym_do] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_goto] = ACTIONS(1240), - [anon_sym_DASH_DASH] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_sizeof] = ACTIONS(1240), - [anon_sym_offsetof] = ACTIONS(1240), - [anon_sym__Generic] = ACTIONS(1240), - [anon_sym_asm] = ACTIONS(1240), - [anon_sym___asm__] = ACTIONS(1240), - [sym_number_literal] = ACTIONS(1242), - [anon_sym_L_SQUOTE] = ACTIONS(1242), - [anon_sym_u_SQUOTE] = ACTIONS(1242), - [anon_sym_U_SQUOTE] = ACTIONS(1242), - [anon_sym_u8_SQUOTE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_L_DQUOTE] = ACTIONS(1242), - [anon_sym_u_DQUOTE] = ACTIONS(1242), - [anon_sym_U_DQUOTE] = ACTIONS(1242), - [anon_sym_u8_DQUOTE] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(1242), - [sym_true] = ACTIONS(1240), - [sym_false] = ACTIONS(1240), - [anon_sym_NULL] = ACTIONS(1240), - [anon_sym_nullptr] = ACTIONS(1240), + [361] = { + [sym_identifier] = ACTIONS(1344), + [aux_sym_preproc_include_token1] = ACTIONS(1344), + [aux_sym_preproc_def_token1] = ACTIONS(1344), + [aux_sym_preproc_if_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), + [sym_preproc_directive] = ACTIONS(1344), + [anon_sym_LPAREN2] = ACTIONS(1346), + [anon_sym_BANG] = ACTIONS(1346), + [anon_sym_TILDE] = ACTIONS(1346), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PLUS] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1344), + [anon_sym___attribute__] = ACTIONS(1344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), + [anon_sym___declspec] = ACTIONS(1344), + [anon_sym___cdecl] = ACTIONS(1344), + [anon_sym___clrcall] = ACTIONS(1344), + [anon_sym___stdcall] = ACTIONS(1344), + [anon_sym___fastcall] = ACTIONS(1344), + [anon_sym___thiscall] = ACTIONS(1344), + [anon_sym___vectorcall] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = ACTIONS(1344), + [anon_sym_static] = ACTIONS(1344), + [anon_sym_auto] = ACTIONS(1344), + [anon_sym_register] = ACTIONS(1344), + [anon_sym_inline] = ACTIONS(1344), + [anon_sym_thread_local] = ACTIONS(1344), + [anon_sym_const] = ACTIONS(1344), + [anon_sym_constexpr] = ACTIONS(1344), + [anon_sym_volatile] = ACTIONS(1344), + [anon_sym_restrict] = ACTIONS(1344), + [anon_sym___restrict__] = ACTIONS(1344), + [anon_sym__Atomic] = ACTIONS(1344), + [anon_sym__Noreturn] = ACTIONS(1344), + [anon_sym_noreturn] = ACTIONS(1344), + [sym_primitive_type] = ACTIONS(1344), + [anon_sym_enum] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1344), + [anon_sym_union] = ACTIONS(1344), + [anon_sym_if] = ACTIONS(1344), + [anon_sym_else] = ACTIONS(1344), + [anon_sym_switch] = ACTIONS(1344), + [anon_sym_case] = ACTIONS(1344), + [anon_sym_default] = ACTIONS(1344), + [anon_sym_while] = ACTIONS(1344), + [anon_sym_do] = ACTIONS(1344), + [anon_sym_for] = ACTIONS(1344), + [anon_sym_return] = ACTIONS(1344), + [anon_sym_break] = ACTIONS(1344), + [anon_sym_continue] = ACTIONS(1344), + [anon_sym_goto] = ACTIONS(1344), + [anon_sym_DASH_DASH] = ACTIONS(1346), + [anon_sym_PLUS_PLUS] = ACTIONS(1346), + [anon_sym_sizeof] = ACTIONS(1344), + [anon_sym_offsetof] = ACTIONS(1344), + [anon_sym__Generic] = ACTIONS(1344), + [anon_sym_asm] = ACTIONS(1344), + [anon_sym___asm__] = ACTIONS(1344), + [sym_number_literal] = ACTIONS(1346), + [anon_sym_L_SQUOTE] = ACTIONS(1346), + [anon_sym_u_SQUOTE] = ACTIONS(1346), + [anon_sym_U_SQUOTE] = ACTIONS(1346), + [anon_sym_u8_SQUOTE] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_L_DQUOTE] = ACTIONS(1346), + [anon_sym_u_DQUOTE] = ACTIONS(1346), + [anon_sym_U_DQUOTE] = ACTIONS(1346), + [anon_sym_u8_DQUOTE] = ACTIONS(1346), + [anon_sym_DQUOTE] = ACTIONS(1346), + [sym_true] = ACTIONS(1344), + [sym_false] = ACTIONS(1344), + [anon_sym_NULL] = ACTIONS(1344), + [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [389] = { - [ts_builtin_sym_end] = ACTIONS(1222), - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1220), - [aux_sym_preproc_def_token1] = ACTIONS(1220), - [aux_sym_preproc_if_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), - [sym_preproc_directive] = ACTIONS(1220), - [anon_sym_LPAREN2] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1222), - [anon_sym_TILDE] = ACTIONS(1222), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_PLUS] = ACTIONS(1220), - [anon_sym_STAR] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_typedef] = ACTIONS(1220), - [anon_sym_extern] = ACTIONS(1220), - [anon_sym___attribute__] = ACTIONS(1220), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), - [anon_sym___declspec] = ACTIONS(1220), - [anon_sym___cdecl] = ACTIONS(1220), - [anon_sym___clrcall] = ACTIONS(1220), - [anon_sym___stdcall] = ACTIONS(1220), - [anon_sym___fastcall] = ACTIONS(1220), - [anon_sym___thiscall] = ACTIONS(1220), - [anon_sym___vectorcall] = ACTIONS(1220), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = ACTIONS(1220), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_auto] = ACTIONS(1220), - [anon_sym_register] = ACTIONS(1220), - [anon_sym_inline] = ACTIONS(1220), - [anon_sym_thread_local] = ACTIONS(1220), - [anon_sym_const] = ACTIONS(1220), - [anon_sym_constexpr] = ACTIONS(1220), - [anon_sym_volatile] = ACTIONS(1220), - [anon_sym_restrict] = ACTIONS(1220), - [anon_sym___restrict__] = ACTIONS(1220), - [anon_sym__Atomic] = ACTIONS(1220), - [anon_sym__Noreturn] = ACTIONS(1220), - [anon_sym_noreturn] = ACTIONS(1220), - [sym_primitive_type] = ACTIONS(1220), - [anon_sym_enum] = ACTIONS(1220), - [anon_sym_struct] = ACTIONS(1220), - [anon_sym_union] = ACTIONS(1220), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_else] = ACTIONS(1220), - [anon_sym_switch] = ACTIONS(1220), - [anon_sym_case] = ACTIONS(1220), - [anon_sym_default] = ACTIONS(1220), - [anon_sym_while] = ACTIONS(1220), - [anon_sym_do] = ACTIONS(1220), - [anon_sym_for] = ACTIONS(1220), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1220), - [anon_sym_continue] = ACTIONS(1220), - [anon_sym_goto] = ACTIONS(1220), - [anon_sym_DASH_DASH] = ACTIONS(1222), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_sizeof] = ACTIONS(1220), - [anon_sym_offsetof] = ACTIONS(1220), - [anon_sym__Generic] = ACTIONS(1220), - [anon_sym_asm] = ACTIONS(1220), - [anon_sym___asm__] = ACTIONS(1220), - [sym_number_literal] = ACTIONS(1222), - [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(1222), - [anon_sym_u_DQUOTE] = ACTIONS(1222), - [anon_sym_U_DQUOTE] = ACTIONS(1222), - [anon_sym_u8_DQUOTE] = ACTIONS(1222), - [anon_sym_DQUOTE] = ACTIONS(1222), - [sym_true] = ACTIONS(1220), - [sym_false] = ACTIONS(1220), - [anon_sym_NULL] = ACTIONS(1220), - [anon_sym_nullptr] = ACTIONS(1220), + [362] = { + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_identifier] = ACTIONS(1252), + [aux_sym_preproc_include_token1] = ACTIONS(1252), + [aux_sym_preproc_def_token1] = ACTIONS(1252), + [aux_sym_preproc_if_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1252), + [sym_preproc_directive] = ACTIONS(1252), + [anon_sym_LPAREN2] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_TILDE] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1252), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_typedef] = ACTIONS(1252), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym___attribute__] = ACTIONS(1252), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1254), + [anon_sym___declspec] = ACTIONS(1252), + [anon_sym___cdecl] = ACTIONS(1252), + [anon_sym___clrcall] = ACTIONS(1252), + [anon_sym___stdcall] = ACTIONS(1252), + [anon_sym___fastcall] = ACTIONS(1252), + [anon_sym___thiscall] = ACTIONS(1252), + [anon_sym___vectorcall] = ACTIONS(1252), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_auto] = ACTIONS(1252), + [anon_sym_register] = ACTIONS(1252), + [anon_sym_inline] = ACTIONS(1252), + [anon_sym_thread_local] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_constexpr] = ACTIONS(1252), + [anon_sym_volatile] = ACTIONS(1252), + [anon_sym_restrict] = ACTIONS(1252), + [anon_sym___restrict__] = ACTIONS(1252), + [anon_sym__Atomic] = ACTIONS(1252), + [anon_sym__Noreturn] = ACTIONS(1252), + [anon_sym_noreturn] = ACTIONS(1252), + [sym_primitive_type] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_else] = ACTIONS(1252), + [anon_sym_switch] = ACTIONS(1252), + [anon_sym_case] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_goto] = ACTIONS(1252), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_sizeof] = ACTIONS(1252), + [anon_sym_offsetof] = ACTIONS(1252), + [anon_sym__Generic] = ACTIONS(1252), + [anon_sym_asm] = ACTIONS(1252), + [anon_sym___asm__] = ACTIONS(1252), + [sym_number_literal] = ACTIONS(1254), + [anon_sym_L_SQUOTE] = ACTIONS(1254), + [anon_sym_u_SQUOTE] = ACTIONS(1254), + [anon_sym_U_SQUOTE] = ACTIONS(1254), + [anon_sym_u8_SQUOTE] = ACTIONS(1254), + [anon_sym_SQUOTE] = ACTIONS(1254), + [anon_sym_L_DQUOTE] = ACTIONS(1254), + [anon_sym_u_DQUOTE] = ACTIONS(1254), + [anon_sym_U_DQUOTE] = ACTIONS(1254), + [anon_sym_u8_DQUOTE] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(1254), + [sym_true] = ACTIONS(1252), + [sym_false] = ACTIONS(1252), + [anon_sym_NULL] = ACTIONS(1252), + [anon_sym_nullptr] = ACTIONS(1252), + [sym_comment] = ACTIONS(3), + }, + [363] = { + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1244), + [aux_sym_preproc_include_token1] = ACTIONS(1244), + [aux_sym_preproc_def_token1] = ACTIONS(1244), + [aux_sym_preproc_if_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1244), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1244), + [sym_preproc_directive] = ACTIONS(1244), + [anon_sym_LPAREN2] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_TILDE] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_typedef] = ACTIONS(1244), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym___attribute__] = ACTIONS(1244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1246), + [anon_sym___declspec] = ACTIONS(1244), + [anon_sym___cdecl] = ACTIONS(1244), + [anon_sym___clrcall] = ACTIONS(1244), + [anon_sym___stdcall] = ACTIONS(1244), + [anon_sym___fastcall] = ACTIONS(1244), + [anon_sym___thiscall] = ACTIONS(1244), + [anon_sym___vectorcall] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_auto] = ACTIONS(1244), + [anon_sym_register] = ACTIONS(1244), + [anon_sym_inline] = ACTIONS(1244), + [anon_sym_thread_local] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_constexpr] = ACTIONS(1244), + [anon_sym_volatile] = ACTIONS(1244), + [anon_sym_restrict] = ACTIONS(1244), + [anon_sym___restrict__] = ACTIONS(1244), + [anon_sym__Atomic] = ACTIONS(1244), + [anon_sym__Noreturn] = ACTIONS(1244), + [anon_sym_noreturn] = ACTIONS(1244), + [sym_primitive_type] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_else] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1244), + [anon_sym_case] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_do] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_goto] = ACTIONS(1244), + [anon_sym_DASH_DASH] = ACTIONS(1246), + [anon_sym_PLUS_PLUS] = ACTIONS(1246), + [anon_sym_sizeof] = ACTIONS(1244), + [anon_sym_offsetof] = ACTIONS(1244), + [anon_sym__Generic] = ACTIONS(1244), + [anon_sym_asm] = ACTIONS(1244), + [anon_sym___asm__] = ACTIONS(1244), + [sym_number_literal] = ACTIONS(1246), + [anon_sym_L_SQUOTE] = ACTIONS(1246), + [anon_sym_u_SQUOTE] = ACTIONS(1246), + [anon_sym_U_SQUOTE] = ACTIONS(1246), + [anon_sym_u8_SQUOTE] = ACTIONS(1246), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_L_DQUOTE] = ACTIONS(1246), + [anon_sym_u_DQUOTE] = ACTIONS(1246), + [anon_sym_U_DQUOTE] = ACTIONS(1246), + [anon_sym_u8_DQUOTE] = ACTIONS(1246), + [anon_sym_DQUOTE] = ACTIONS(1246), + [sym_true] = ACTIONS(1244), + [sym_false] = ACTIONS(1244), + [anon_sym_NULL] = ACTIONS(1244), + [anon_sym_nullptr] = ACTIONS(1244), + [sym_comment] = ACTIONS(3), + }, + [364] = { + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), [sym_comment] = ACTIONS(3), }, - [390] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(397), - [sym_attributed_statement] = STATE(397), - [sym_labeled_statement] = STATE(397), - [sym_expression_statement] = STATE(397), - [sym_if_statement] = STATE(397), - [sym_switch_statement] = STATE(397), - [sym_case_statement] = STATE(397), - [sym_while_statement] = STATE(397), - [sym_do_statement] = STATE(397), - [sym_for_statement] = STATE(397), - [sym_return_statement] = STATE(397), - [sym_break_statement] = STATE(397), - [sym_continue_statement] = STATE(397), - [sym_goto_statement] = STATE(397), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [365] = { + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1224), + [aux_sym_preproc_include_token1] = ACTIONS(1224), + [aux_sym_preproc_def_token1] = ACTIONS(1224), + [aux_sym_preproc_if_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1224), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1224), + [sym_preproc_directive] = ACTIONS(1224), + [anon_sym_LPAREN2] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_TILDE] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1224), + [anon_sym_PLUS] = ACTIONS(1224), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_typedef] = ACTIONS(1224), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym___attribute__] = ACTIONS(1224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1226), + [anon_sym___declspec] = ACTIONS(1224), + [anon_sym___cdecl] = ACTIONS(1224), + [anon_sym___clrcall] = ACTIONS(1224), + [anon_sym___stdcall] = ACTIONS(1224), + [anon_sym___fastcall] = ACTIONS(1224), + [anon_sym___thiscall] = ACTIONS(1224), + [anon_sym___vectorcall] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_auto] = ACTIONS(1224), + [anon_sym_register] = ACTIONS(1224), + [anon_sym_inline] = ACTIONS(1224), + [anon_sym_thread_local] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_constexpr] = ACTIONS(1224), + [anon_sym_volatile] = ACTIONS(1224), + [anon_sym_restrict] = ACTIONS(1224), + [anon_sym___restrict__] = ACTIONS(1224), + [anon_sym__Atomic] = ACTIONS(1224), + [anon_sym__Noreturn] = ACTIONS(1224), + [anon_sym_noreturn] = ACTIONS(1224), + [sym_primitive_type] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_else] = ACTIONS(1224), + [anon_sym_switch] = ACTIONS(1224), + [anon_sym_case] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_do] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_goto] = ACTIONS(1224), + [anon_sym_DASH_DASH] = ACTIONS(1226), + [anon_sym_PLUS_PLUS] = ACTIONS(1226), + [anon_sym_sizeof] = ACTIONS(1224), + [anon_sym_offsetof] = ACTIONS(1224), + [anon_sym__Generic] = ACTIONS(1224), + [anon_sym_asm] = ACTIONS(1224), + [anon_sym___asm__] = ACTIONS(1224), + [sym_number_literal] = ACTIONS(1226), + [anon_sym_L_SQUOTE] = ACTIONS(1226), + [anon_sym_u_SQUOTE] = ACTIONS(1226), + [anon_sym_U_SQUOTE] = ACTIONS(1226), + [anon_sym_u8_SQUOTE] = ACTIONS(1226), + [anon_sym_SQUOTE] = ACTIONS(1226), + [anon_sym_L_DQUOTE] = ACTIONS(1226), + [anon_sym_u_DQUOTE] = ACTIONS(1226), + [anon_sym_U_DQUOTE] = ACTIONS(1226), + [anon_sym_u8_DQUOTE] = ACTIONS(1226), + [anon_sym_DQUOTE] = ACTIONS(1226), + [sym_true] = ACTIONS(1224), + [sym_false] = ACTIONS(1224), + [anon_sym_NULL] = ACTIONS(1224), + [anon_sym_nullptr] = ACTIONS(1224), [sym_comment] = ACTIONS(3), }, - [391] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(402), - [sym_attributed_statement] = STATE(402), - [sym_labeled_statement] = STATE(402), - [sym_expression_statement] = STATE(402), - [sym_if_statement] = STATE(402), - [sym_switch_statement] = STATE(402), - [sym_case_statement] = STATE(402), - [sym_while_statement] = STATE(402), - [sym_do_statement] = STATE(402), - [sym_for_statement] = STATE(402), - [sym_return_statement] = STATE(402), - [sym_break_statement] = STATE(402), - [sym_continue_statement] = STATE(402), - [sym_goto_statement] = STATE(402), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [366] = { + [sym_attribute_declaration] = STATE(341), + [sym_compound_statement] = STATE(312), + [sym_attributed_statement] = STATE(312), + [sym_labeled_statement] = STATE(312), + [sym_expression_statement] = STATE(312), + [sym_if_statement] = STATE(312), + [sym_switch_statement] = STATE(312), + [sym_case_statement] = STATE(312), + [sym_while_statement] = STATE(312), + [sym_do_statement] = STATE(312), + [sym_for_statement] = STATE(312), + [sym_return_statement] = STATE(312), + [sym_break_statement] = STATE(312), + [sym_continue_statement] = STATE(312), + [sym_goto_statement] = STATE(312), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(341), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53945,104 +51731,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [392] = { - [sym_attribute_declaration] = STATE(273), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), - [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(183), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(189), - [anon_sym_if] = ACTIONS(191), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(195), - [anon_sym_default] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_for] = ACTIONS(203), - [anon_sym_return] = ACTIONS(205), - [anon_sym_break] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_goto] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -54067,240 +51767,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [393] = { - [sym_identifier] = ACTIONS(1248), - [aux_sym_preproc_include_token1] = ACTIONS(1248), - [aux_sym_preproc_def_token1] = ACTIONS(1248), - [aux_sym_preproc_if_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), - [sym_preproc_directive] = ACTIONS(1248), - [anon_sym_LPAREN2] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_TILDE] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1248), - [anon_sym_extern] = ACTIONS(1248), - [anon_sym___attribute__] = ACTIONS(1248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), - [anon_sym___declspec] = ACTIONS(1248), - [anon_sym___cdecl] = ACTIONS(1248), - [anon_sym___clrcall] = ACTIONS(1248), - [anon_sym___stdcall] = ACTIONS(1248), - [anon_sym___fastcall] = ACTIONS(1248), - [anon_sym___thiscall] = ACTIONS(1248), - [anon_sym___vectorcall] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = ACTIONS(1248), - [anon_sym_static] = ACTIONS(1248), - [anon_sym_auto] = ACTIONS(1248), - [anon_sym_register] = ACTIONS(1248), - [anon_sym_inline] = ACTIONS(1248), - [anon_sym_thread_local] = ACTIONS(1248), - [anon_sym_const] = ACTIONS(1248), - [anon_sym_constexpr] = ACTIONS(1248), - [anon_sym_volatile] = ACTIONS(1248), - [anon_sym_restrict] = ACTIONS(1248), - [anon_sym___restrict__] = ACTIONS(1248), - [anon_sym__Atomic] = ACTIONS(1248), - [anon_sym__Noreturn] = ACTIONS(1248), - [anon_sym_noreturn] = ACTIONS(1248), - [sym_primitive_type] = ACTIONS(1248), - [anon_sym_enum] = ACTIONS(1248), - [anon_sym_struct] = ACTIONS(1248), - [anon_sym_union] = ACTIONS(1248), - [anon_sym_if] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1248), - [anon_sym_switch] = ACTIONS(1248), - [anon_sym_case] = ACTIONS(1248), - [anon_sym_default] = ACTIONS(1248), - [anon_sym_while] = ACTIONS(1248), - [anon_sym_do] = ACTIONS(1248), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_continue] = ACTIONS(1248), - [anon_sym_goto] = ACTIONS(1248), - [anon_sym_DASH_DASH] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_sizeof] = ACTIONS(1248), - [anon_sym_offsetof] = ACTIONS(1248), - [anon_sym__Generic] = ACTIONS(1248), - [anon_sym_asm] = ACTIONS(1248), - [anon_sym___asm__] = ACTIONS(1248), - [sym_number_literal] = ACTIONS(1250), - [anon_sym_L_SQUOTE] = ACTIONS(1250), - [anon_sym_u_SQUOTE] = ACTIONS(1250), - [anon_sym_U_SQUOTE] = ACTIONS(1250), - [anon_sym_u8_SQUOTE] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_L_DQUOTE] = ACTIONS(1250), - [anon_sym_u_DQUOTE] = ACTIONS(1250), - [anon_sym_U_DQUOTE] = ACTIONS(1250), - [anon_sym_u8_DQUOTE] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1250), - [sym_true] = ACTIONS(1248), - [sym_false] = ACTIONS(1248), - [anon_sym_NULL] = ACTIONS(1248), - [anon_sym_nullptr] = ACTIONS(1248), - [sym_comment] = ACTIONS(3), - }, - [394] = { - [sym_identifier] = ACTIONS(1256), - [aux_sym_preproc_include_token1] = ACTIONS(1256), - [aux_sym_preproc_def_token1] = ACTIONS(1256), - [aux_sym_preproc_if_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), - [sym_preproc_directive] = ACTIONS(1256), - [anon_sym_LPAREN2] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1258), - [anon_sym_TILDE] = ACTIONS(1258), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_typedef] = ACTIONS(1256), - [anon_sym_extern] = ACTIONS(1256), - [anon_sym___attribute__] = ACTIONS(1256), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), - [anon_sym___declspec] = ACTIONS(1256), - [anon_sym___cdecl] = ACTIONS(1256), - [anon_sym___clrcall] = ACTIONS(1256), - [anon_sym___stdcall] = ACTIONS(1256), - [anon_sym___fastcall] = ACTIONS(1256), - [anon_sym___thiscall] = ACTIONS(1256), - [anon_sym___vectorcall] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = ACTIONS(1256), - [anon_sym_static] = ACTIONS(1256), - [anon_sym_auto] = ACTIONS(1256), - [anon_sym_register] = ACTIONS(1256), - [anon_sym_inline] = ACTIONS(1256), - [anon_sym_thread_local] = ACTIONS(1256), - [anon_sym_const] = ACTIONS(1256), - [anon_sym_constexpr] = ACTIONS(1256), - [anon_sym_volatile] = ACTIONS(1256), - [anon_sym_restrict] = ACTIONS(1256), - [anon_sym___restrict__] = ACTIONS(1256), - [anon_sym__Atomic] = ACTIONS(1256), - [anon_sym__Noreturn] = ACTIONS(1256), - [anon_sym_noreturn] = ACTIONS(1256), - [sym_primitive_type] = ACTIONS(1256), - [anon_sym_enum] = ACTIONS(1256), - [anon_sym_struct] = ACTIONS(1256), - [anon_sym_union] = ACTIONS(1256), - [anon_sym_if] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1256), - [anon_sym_switch] = ACTIONS(1256), - [anon_sym_case] = ACTIONS(1256), - [anon_sym_default] = ACTIONS(1256), - [anon_sym_while] = ACTIONS(1256), - [anon_sym_do] = ACTIONS(1256), - [anon_sym_for] = ACTIONS(1256), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_goto] = ACTIONS(1256), - [anon_sym_DASH_DASH] = ACTIONS(1258), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_sizeof] = ACTIONS(1256), - [anon_sym_offsetof] = ACTIONS(1256), - [anon_sym__Generic] = ACTIONS(1256), - [anon_sym_asm] = ACTIONS(1256), - [anon_sym___asm__] = ACTIONS(1256), - [sym_number_literal] = ACTIONS(1258), - [anon_sym_L_SQUOTE] = ACTIONS(1258), - [anon_sym_u_SQUOTE] = ACTIONS(1258), - [anon_sym_U_SQUOTE] = ACTIONS(1258), - [anon_sym_u8_SQUOTE] = ACTIONS(1258), - [anon_sym_SQUOTE] = ACTIONS(1258), - [anon_sym_L_DQUOTE] = ACTIONS(1258), - [anon_sym_u_DQUOTE] = ACTIONS(1258), - [anon_sym_U_DQUOTE] = ACTIONS(1258), - [anon_sym_u8_DQUOTE] = ACTIONS(1258), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_true] = ACTIONS(1256), - [sym_false] = ACTIONS(1256), - [anon_sym_NULL] = ACTIONS(1256), - [anon_sym_nullptr] = ACTIONS(1256), - [sym_comment] = ACTIONS(3), - }, - [395] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(108), - [sym_attributed_statement] = STATE(108), - [sym_labeled_statement] = STATE(108), - [sym_expression_statement] = STATE(108), - [sym_if_statement] = STATE(108), - [sym_switch_statement] = STATE(108), - [sym_case_statement] = STATE(108), - [sym_while_statement] = STATE(108), - [sym_do_statement] = STATE(108), - [sym_for_statement] = STATE(108), - [sym_return_statement] = STATE(108), - [sym_break_statement] = STATE(108), - [sym_continue_statement] = STATE(108), - [sym_goto_statement] = STATE(108), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [367] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(257), + [sym_attributed_statement] = STATE(257), + [sym_labeled_statement] = STATE(257), + [sym_expression_statement] = STATE(257), + [sym_if_statement] = STATE(257), + [sym_switch_statement] = STATE(257), + [sym_case_statement] = STATE(257), + [sym_while_statement] = STATE(257), + [sym_do_statement] = STATE(257), + [sym_for_statement] = STATE(257), + [sym_return_statement] = STATE(257), + [sym_break_statement] = STATE(257), + [sym_continue_statement] = STATE(257), + [sym_goto_statement] = STATE(257), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [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(117), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -54325,47 +51853,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [396] = { - [sym_attribute_declaration] = STATE(273), - [sym_compound_statement] = STATE(185), - [sym_attributed_statement] = STATE(185), - [sym_labeled_statement] = STATE(185), - [sym_expression_statement] = STATE(185), - [sym_if_statement] = STATE(185), - [sym_switch_statement] = STATE(185), - [sym_case_statement] = STATE(185), - [sym_while_statement] = STATE(185), - [sym_do_statement] = STATE(185), - [sym_for_statement] = STATE(185), - [sym_return_statement] = STATE(185), - [sym_break_statement] = STATE(185), - [sym_continue_statement] = STATE(185), - [sym_goto_statement] = STATE(185), - [sym__expression] = STATE(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [368] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(143), + [sym_attributed_statement] = STATE(143), + [sym_labeled_statement] = STATE(143), + [sym_expression_statement] = STATE(143), + [sym_if_statement] = STATE(143), + [sym_switch_statement] = STATE(143), + [sym_case_statement] = STATE(143), + [sym_while_statement] = STATE(143), + [sym_do_statement] = STATE(143), + [sym_for_statement] = STATE(143), + [sym_return_statement] = STATE(143), + [sym_break_statement] = STATE(143), + [sym_continue_statement] = STATE(143), + [sym_goto_statement] = STATE(143), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54411,133 +51939,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [397] = { - [sym_identifier] = ACTIONS(1260), - [aux_sym_preproc_include_token1] = ACTIONS(1260), - [aux_sym_preproc_def_token1] = ACTIONS(1260), - [aux_sym_preproc_if_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1260), - [sym_preproc_directive] = ACTIONS(1260), - [anon_sym_LPAREN2] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1262), - [anon_sym_TILDE] = ACTIONS(1262), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_typedef] = ACTIONS(1260), - [anon_sym_extern] = ACTIONS(1260), - [anon_sym___attribute__] = ACTIONS(1260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1262), - [anon_sym___declspec] = ACTIONS(1260), - [anon_sym___cdecl] = ACTIONS(1260), - [anon_sym___clrcall] = ACTIONS(1260), - [anon_sym___stdcall] = ACTIONS(1260), - [anon_sym___fastcall] = ACTIONS(1260), - [anon_sym___thiscall] = ACTIONS(1260), - [anon_sym___vectorcall] = ACTIONS(1260), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = ACTIONS(1260), - [anon_sym_static] = ACTIONS(1260), - [anon_sym_auto] = ACTIONS(1260), - [anon_sym_register] = ACTIONS(1260), - [anon_sym_inline] = ACTIONS(1260), - [anon_sym_thread_local] = ACTIONS(1260), - [anon_sym_const] = ACTIONS(1260), - [anon_sym_constexpr] = ACTIONS(1260), - [anon_sym_volatile] = ACTIONS(1260), - [anon_sym_restrict] = ACTIONS(1260), - [anon_sym___restrict__] = ACTIONS(1260), - [anon_sym__Atomic] = ACTIONS(1260), - [anon_sym__Noreturn] = ACTIONS(1260), - [anon_sym_noreturn] = ACTIONS(1260), - [sym_primitive_type] = ACTIONS(1260), - [anon_sym_enum] = ACTIONS(1260), - [anon_sym_struct] = ACTIONS(1260), - [anon_sym_union] = ACTIONS(1260), - [anon_sym_if] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1260), - [anon_sym_switch] = ACTIONS(1260), - [anon_sym_case] = ACTIONS(1260), - [anon_sym_default] = ACTIONS(1260), - [anon_sym_while] = ACTIONS(1260), - [anon_sym_do] = ACTIONS(1260), - [anon_sym_for] = ACTIONS(1260), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_break] = ACTIONS(1260), - [anon_sym_continue] = ACTIONS(1260), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_DASH_DASH] = ACTIONS(1262), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_sizeof] = ACTIONS(1260), - [anon_sym_offsetof] = ACTIONS(1260), - [anon_sym__Generic] = ACTIONS(1260), - [anon_sym_asm] = ACTIONS(1260), - [anon_sym___asm__] = ACTIONS(1260), - [sym_number_literal] = ACTIONS(1262), - [anon_sym_L_SQUOTE] = ACTIONS(1262), - [anon_sym_u_SQUOTE] = ACTIONS(1262), - [anon_sym_U_SQUOTE] = ACTIONS(1262), - [anon_sym_u8_SQUOTE] = ACTIONS(1262), - [anon_sym_SQUOTE] = ACTIONS(1262), - [anon_sym_L_DQUOTE] = ACTIONS(1262), - [anon_sym_u_DQUOTE] = ACTIONS(1262), - [anon_sym_U_DQUOTE] = ACTIONS(1262), - [anon_sym_u8_DQUOTE] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1262), - [sym_true] = ACTIONS(1260), - [sym_false] = ACTIONS(1260), - [anon_sym_NULL] = ACTIONS(1260), - [anon_sym_nullptr] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - }, - [398] = { - [sym_attribute_declaration] = STATE(272), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [369] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(209), + [sym_attributed_statement] = STATE(209), + [sym_labeled_statement] = STATE(209), + [sym_expression_statement] = STATE(209), + [sym_if_statement] = STATE(209), + [sym_switch_statement] = STATE(209), + [sym_case_statement] = STATE(209), + [sym_while_statement] = STATE(209), + [sym_do_statement] = STATE(209), + [sym_for_statement] = STATE(209), + [sym_return_statement] = STATE(209), + [sym_break_statement] = STATE(209), + [sym_continue_statement] = STATE(209), + [sym_goto_statement] = STATE(209), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54545,16 +51987,16 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), + [anon_sym_if] = ACTIONS(55), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), + [anon_sym_for] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -54583,47 +52025,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [399] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(408), - [sym_attributed_statement] = STATE(408), - [sym_labeled_statement] = STATE(408), - [sym_expression_statement] = STATE(408), - [sym_if_statement] = STATE(408), - [sym_switch_statement] = STATE(408), - [sym_case_statement] = STATE(408), - [sym_while_statement] = STATE(408), - [sym_do_statement] = STATE(408), - [sym_for_statement] = STATE(408), - [sym_return_statement] = STATE(408), - [sym_break_statement] = STATE(408), - [sym_continue_statement] = STATE(408), - [sym_goto_statement] = STATE(408), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [370] = { + [sym_attribute_declaration] = STATE(430), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54631,20 +52073,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(454), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -54669,47 +52111,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [400] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(109), - [sym_attributed_statement] = STATE(109), - [sym_labeled_statement] = STATE(109), - [sym_expression_statement] = STATE(109), - [sym_if_statement] = STATE(109), - [sym_switch_statement] = STATE(109), - [sym_case_statement] = STATE(109), - [sym_while_statement] = STATE(109), - [sym_do_statement] = STATE(109), - [sym_for_statement] = STATE(109), - [sym_return_statement] = STATE(109), - [sym_break_statement] = STATE(109), - [sym_continue_statement] = STATE(109), - [sym_goto_statement] = STATE(109), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [371] = { + [sym_attribute_declaration] = STATE(430), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54717,20 +52159,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(117), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -54755,47 +52197,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [401] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(409), - [sym_attributed_statement] = STATE(409), - [sym_labeled_statement] = STATE(409), - [sym_expression_statement] = STATE(409), - [sym_if_statement] = STATE(409), - [sym_switch_statement] = STATE(409), - [sym_case_statement] = STATE(409), - [sym_while_statement] = STATE(409), - [sym_do_statement] = STATE(409), - [sym_for_statement] = STATE(409), - [sym_return_statement] = STATE(409), - [sym_break_statement] = STATE(409), - [sym_continue_statement] = STATE(409), - [sym_goto_statement] = STATE(409), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [372] = { + [ts_builtin_sym_end] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1328), + [aux_sym_preproc_include_token1] = ACTIONS(1328), + [aux_sym_preproc_def_token1] = ACTIONS(1328), + [aux_sym_preproc_if_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1328), + [sym_preproc_directive] = ACTIONS(1328), + [anon_sym_LPAREN2] = ACTIONS(1330), + [anon_sym_BANG] = ACTIONS(1330), + [anon_sym_TILDE] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1330), + [anon_sym_AMP] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1328), + [anon_sym___attribute__] = ACTIONS(1328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1330), + [anon_sym___declspec] = ACTIONS(1328), + [anon_sym___cdecl] = ACTIONS(1328), + [anon_sym___clrcall] = ACTIONS(1328), + [anon_sym___stdcall] = ACTIONS(1328), + [anon_sym___fastcall] = ACTIONS(1328), + [anon_sym___thiscall] = ACTIONS(1328), + [anon_sym___vectorcall] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1330), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = ACTIONS(1328), + [anon_sym_static] = ACTIONS(1328), + [anon_sym_auto] = ACTIONS(1328), + [anon_sym_register] = ACTIONS(1328), + [anon_sym_inline] = ACTIONS(1328), + [anon_sym_thread_local] = ACTIONS(1328), + [anon_sym_const] = ACTIONS(1328), + [anon_sym_constexpr] = ACTIONS(1328), + [anon_sym_volatile] = ACTIONS(1328), + [anon_sym_restrict] = ACTIONS(1328), + [anon_sym___restrict__] = ACTIONS(1328), + [anon_sym__Atomic] = ACTIONS(1328), + [anon_sym__Noreturn] = ACTIONS(1328), + [anon_sym_noreturn] = ACTIONS(1328), + [sym_primitive_type] = ACTIONS(1328), + [anon_sym_enum] = ACTIONS(1328), + [anon_sym_struct] = ACTIONS(1328), + [anon_sym_union] = ACTIONS(1328), + [anon_sym_if] = ACTIONS(1328), + [anon_sym_else] = ACTIONS(1328), + [anon_sym_switch] = ACTIONS(1328), + [anon_sym_case] = ACTIONS(1328), + [anon_sym_default] = ACTIONS(1328), + [anon_sym_while] = ACTIONS(1328), + [anon_sym_do] = ACTIONS(1328), + [anon_sym_for] = ACTIONS(1328), + [anon_sym_return] = ACTIONS(1328), + [anon_sym_break] = ACTIONS(1328), + [anon_sym_continue] = ACTIONS(1328), + [anon_sym_goto] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1330), + [anon_sym_PLUS_PLUS] = ACTIONS(1330), + [anon_sym_sizeof] = ACTIONS(1328), + [anon_sym_offsetof] = ACTIONS(1328), + [anon_sym__Generic] = ACTIONS(1328), + [anon_sym_asm] = ACTIONS(1328), + [anon_sym___asm__] = ACTIONS(1328), + [sym_number_literal] = ACTIONS(1330), + [anon_sym_L_SQUOTE] = ACTIONS(1330), + [anon_sym_u_SQUOTE] = ACTIONS(1330), + [anon_sym_U_SQUOTE] = ACTIONS(1330), + [anon_sym_u8_SQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_L_DQUOTE] = ACTIONS(1330), + [anon_sym_u_DQUOTE] = ACTIONS(1330), + [anon_sym_U_DQUOTE] = ACTIONS(1330), + [anon_sym_u8_DQUOTE] = ACTIONS(1330), + [anon_sym_DQUOTE] = ACTIONS(1330), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [anon_sym_NULL] = ACTIONS(1328), + [anon_sym_nullptr] = ACTIONS(1328), + [sym_comment] = ACTIONS(3), + }, + [373] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(392), + [sym_attributed_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_expression_statement] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_goto_statement] = STATE(392), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54841,133 +52369,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [402] = { - [sym_identifier] = ACTIONS(1264), - [aux_sym_preproc_include_token1] = ACTIONS(1264), - [aux_sym_preproc_def_token1] = ACTIONS(1264), - [aux_sym_preproc_if_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), - [sym_preproc_directive] = ACTIONS(1264), - [anon_sym_LPAREN2] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1266), - [anon_sym_TILDE] = ACTIONS(1266), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1264), - [anon_sym_extern] = ACTIONS(1264), - [anon_sym___attribute__] = ACTIONS(1264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), - [anon_sym___declspec] = ACTIONS(1264), - [anon_sym___cdecl] = ACTIONS(1264), - [anon_sym___clrcall] = ACTIONS(1264), - [anon_sym___stdcall] = ACTIONS(1264), - [anon_sym___fastcall] = ACTIONS(1264), - [anon_sym___thiscall] = ACTIONS(1264), - [anon_sym___vectorcall] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_RBRACE] = ACTIONS(1266), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = ACTIONS(1264), - [anon_sym_static] = ACTIONS(1264), - [anon_sym_auto] = ACTIONS(1264), - [anon_sym_register] = ACTIONS(1264), - [anon_sym_inline] = ACTIONS(1264), - [anon_sym_thread_local] = ACTIONS(1264), - [anon_sym_const] = ACTIONS(1264), - [anon_sym_constexpr] = ACTIONS(1264), - [anon_sym_volatile] = ACTIONS(1264), - [anon_sym_restrict] = ACTIONS(1264), - [anon_sym___restrict__] = ACTIONS(1264), - [anon_sym__Atomic] = ACTIONS(1264), - [anon_sym__Noreturn] = ACTIONS(1264), - [anon_sym_noreturn] = ACTIONS(1264), - [sym_primitive_type] = ACTIONS(1264), - [anon_sym_enum] = ACTIONS(1264), - [anon_sym_struct] = ACTIONS(1264), - [anon_sym_union] = ACTIONS(1264), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1264), - [anon_sym_switch] = ACTIONS(1264), - [anon_sym_case] = ACTIONS(1264), - [anon_sym_default] = ACTIONS(1264), - [anon_sym_while] = ACTIONS(1264), - [anon_sym_do] = ACTIONS(1264), - [anon_sym_for] = ACTIONS(1264), - [anon_sym_return] = ACTIONS(1264), - [anon_sym_break] = ACTIONS(1264), - [anon_sym_continue] = ACTIONS(1264), - [anon_sym_goto] = ACTIONS(1264), - [anon_sym_DASH_DASH] = ACTIONS(1266), - [anon_sym_PLUS_PLUS] = ACTIONS(1266), - [anon_sym_sizeof] = ACTIONS(1264), - [anon_sym_offsetof] = ACTIONS(1264), - [anon_sym__Generic] = ACTIONS(1264), - [anon_sym_asm] = ACTIONS(1264), - [anon_sym___asm__] = ACTIONS(1264), - [sym_number_literal] = ACTIONS(1266), - [anon_sym_L_SQUOTE] = ACTIONS(1266), - [anon_sym_u_SQUOTE] = ACTIONS(1266), - [anon_sym_U_SQUOTE] = ACTIONS(1266), - [anon_sym_u8_SQUOTE] = ACTIONS(1266), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_L_DQUOTE] = ACTIONS(1266), - [anon_sym_u_DQUOTE] = ACTIONS(1266), - [anon_sym_U_DQUOTE] = ACTIONS(1266), - [anon_sym_u8_DQUOTE] = ACTIONS(1266), - [anon_sym_DQUOTE] = ACTIONS(1266), - [sym_true] = ACTIONS(1264), - [sym_false] = ACTIONS(1264), - [anon_sym_NULL] = ACTIONS(1264), - [anon_sym_nullptr] = ACTIONS(1264), + [374] = { + [sym_attribute_declaration] = STATE(374), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1668), + [anon_sym_switch] = ACTIONS(1671), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1680), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_goto] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + }, + [375] = { + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [376] = { + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, - [403] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(411), - [sym_attributed_statement] = STATE(411), - [sym_labeled_statement] = STATE(411), - [sym_expression_statement] = STATE(411), - [sym_if_statement] = STATE(411), - [sym_switch_statement] = STATE(411), - [sym_case_statement] = STATE(411), - [sym_while_statement] = STATE(411), - [sym_do_statement] = STATE(411), - [sym_for_statement] = STATE(411), - [sym_return_statement] = STATE(411), - [sym_break_statement] = STATE(411), - [sym_continue_statement] = STATE(411), - [sym_goto_statement] = STATE(411), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [377] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(175), + [sym_attributed_statement] = STATE(175), + [sym_labeled_statement] = STATE(175), + [sym_expression_statement] = STATE(175), + [sym_if_statement] = STATE(175), + [sym_switch_statement] = STATE(175), + [sym_case_statement] = STATE(175), + [sym_while_statement] = STATE(175), + [sym_do_statement] = STATE(175), + [sym_for_statement] = STATE(175), + [sym_return_statement] = STATE(175), + [sym_break_statement] = STATE(175), + [sym_continue_statement] = STATE(175), + [sym_goto_statement] = STATE(175), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54975,20 +52675,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(454), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55013,219 +52713,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [404] = { - [sym_identifier] = ACTIONS(1312), - [aux_sym_preproc_include_token1] = ACTIONS(1312), - [aux_sym_preproc_def_token1] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), - [sym_preproc_directive] = ACTIONS(1312), - [anon_sym_LPAREN2] = ACTIONS(1314), - [anon_sym_BANG] = ACTIONS(1314), - [anon_sym_TILDE] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1312), - [anon_sym_extern] = ACTIONS(1312), - [anon_sym___attribute__] = ACTIONS(1312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1314), - [anon_sym___declspec] = ACTIONS(1312), - [anon_sym___cdecl] = ACTIONS(1312), - [anon_sym___clrcall] = ACTIONS(1312), - [anon_sym___stdcall] = ACTIONS(1312), - [anon_sym___fastcall] = ACTIONS(1312), - [anon_sym___thiscall] = ACTIONS(1312), - [anon_sym___vectorcall] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1314), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = ACTIONS(1312), - [anon_sym_static] = ACTIONS(1312), - [anon_sym_auto] = ACTIONS(1312), - [anon_sym_register] = ACTIONS(1312), - [anon_sym_inline] = ACTIONS(1312), - [anon_sym_thread_local] = ACTIONS(1312), - [anon_sym_const] = ACTIONS(1312), - [anon_sym_constexpr] = ACTIONS(1312), - [anon_sym_volatile] = ACTIONS(1312), - [anon_sym_restrict] = ACTIONS(1312), - [anon_sym___restrict__] = ACTIONS(1312), - [anon_sym__Atomic] = ACTIONS(1312), - [anon_sym__Noreturn] = ACTIONS(1312), - [anon_sym_noreturn] = ACTIONS(1312), - [sym_primitive_type] = ACTIONS(1312), - [anon_sym_enum] = ACTIONS(1312), - [anon_sym_struct] = ACTIONS(1312), - [anon_sym_union] = ACTIONS(1312), - [anon_sym_if] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1312), - [anon_sym_default] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_for] = ACTIONS(1312), - [anon_sym_return] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(1312), - [anon_sym_continue] = ACTIONS(1312), - [anon_sym_goto] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1314), - [anon_sym_PLUS_PLUS] = ACTIONS(1314), - [anon_sym_sizeof] = ACTIONS(1312), - [anon_sym_offsetof] = ACTIONS(1312), - [anon_sym__Generic] = ACTIONS(1312), - [anon_sym_asm] = ACTIONS(1312), - [anon_sym___asm__] = ACTIONS(1312), - [sym_number_literal] = ACTIONS(1314), - [anon_sym_L_SQUOTE] = ACTIONS(1314), - [anon_sym_u_SQUOTE] = ACTIONS(1314), - [anon_sym_U_SQUOTE] = ACTIONS(1314), - [anon_sym_u8_SQUOTE] = ACTIONS(1314), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_L_DQUOTE] = ACTIONS(1314), - [anon_sym_u_DQUOTE] = ACTIONS(1314), - [anon_sym_U_DQUOTE] = ACTIONS(1314), - [anon_sym_u8_DQUOTE] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_true] = ACTIONS(1312), - [sym_false] = ACTIONS(1312), - [anon_sym_NULL] = ACTIONS(1312), - [anon_sym_nullptr] = ACTIONS(1312), + [378] = { + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(417), - [sym_attributed_statement] = STATE(417), - [sym_labeled_statement] = STATE(417), - [sym_expression_statement] = STATE(417), - [sym_if_statement] = STATE(417), - [sym_switch_statement] = STATE(417), - [sym_case_statement] = STATE(417), - [sym_while_statement] = STATE(417), - [sym_do_statement] = STATE(417), - [sym_for_statement] = STATE(417), - [sym_return_statement] = STATE(417), - [sym_break_statement] = STATE(417), - [sym_continue_statement] = STATE(417), - [sym_goto_statement] = STATE(417), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), - [anon_sym_DASH_DASH] = ACTIONS(77), - [anon_sym_PLUS_PLUS] = ACTIONS(77), - [anon_sym_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [anon_sym__Generic] = ACTIONS(83), - [anon_sym_asm] = ACTIONS(85), - [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), - [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(149), - [sym_false] = ACTIONS(149), - [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), + [379] = { + [sym_identifier] = ACTIONS(1240), + [aux_sym_preproc_include_token1] = ACTIONS(1240), + [aux_sym_preproc_def_token1] = ACTIONS(1240), + [aux_sym_preproc_if_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1240), + [sym_preproc_directive] = ACTIONS(1240), + [anon_sym_LPAREN2] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_TILDE] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_typedef] = ACTIONS(1240), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym___attribute__] = ACTIONS(1240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1242), + [anon_sym___declspec] = ACTIONS(1240), + [anon_sym___cdecl] = ACTIONS(1240), + [anon_sym___clrcall] = ACTIONS(1240), + [anon_sym___stdcall] = ACTIONS(1240), + [anon_sym___fastcall] = ACTIONS(1240), + [anon_sym___thiscall] = ACTIONS(1240), + [anon_sym___vectorcall] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_auto] = ACTIONS(1240), + [anon_sym_register] = ACTIONS(1240), + [anon_sym_inline] = ACTIONS(1240), + [anon_sym_thread_local] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_constexpr] = ACTIONS(1240), + [anon_sym_volatile] = ACTIONS(1240), + [anon_sym_restrict] = ACTIONS(1240), + [anon_sym___restrict__] = ACTIONS(1240), + [anon_sym__Atomic] = ACTIONS(1240), + [anon_sym__Noreturn] = ACTIONS(1240), + [anon_sym_noreturn] = ACTIONS(1240), + [sym_primitive_type] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_else] = ACTIONS(1240), + [anon_sym_switch] = ACTIONS(1240), + [anon_sym_case] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_do] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1242), + [anon_sym_PLUS_PLUS] = ACTIONS(1242), + [anon_sym_sizeof] = ACTIONS(1240), + [anon_sym_offsetof] = ACTIONS(1240), + [anon_sym__Generic] = ACTIONS(1240), + [anon_sym_asm] = ACTIONS(1240), + [anon_sym___asm__] = ACTIONS(1240), + [sym_number_literal] = ACTIONS(1242), + [anon_sym_L_SQUOTE] = ACTIONS(1242), + [anon_sym_u_SQUOTE] = ACTIONS(1242), + [anon_sym_U_SQUOTE] = ACTIONS(1242), + [anon_sym_u8_SQUOTE] = ACTIONS(1242), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_L_DQUOTE] = ACTIONS(1242), + [anon_sym_u_DQUOTE] = ACTIONS(1242), + [anon_sym_U_DQUOTE] = ACTIONS(1242), + [anon_sym_u8_DQUOTE] = ACTIONS(1242), + [anon_sym_DQUOTE] = ACTIONS(1242), + [sym_true] = ACTIONS(1240), + [sym_false] = ACTIONS(1240), + [anon_sym_NULL] = ACTIONS(1240), + [anon_sym_nullptr] = ACTIONS(1240), + [sym_comment] = ACTIONS(3), + }, + [380] = { + [sym_identifier] = ACTIONS(1216), + [aux_sym_preproc_include_token1] = ACTIONS(1216), + [aux_sym_preproc_def_token1] = ACTIONS(1216), + [aux_sym_preproc_if_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1216), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1216), + [sym_preproc_directive] = ACTIONS(1216), + [anon_sym_LPAREN2] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_TILDE] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_PLUS] = ACTIONS(1216), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_typedef] = ACTIONS(1216), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym___attribute__] = ACTIONS(1216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1218), + [anon_sym___declspec] = ACTIONS(1216), + [anon_sym___cdecl] = ACTIONS(1216), + [anon_sym___clrcall] = ACTIONS(1216), + [anon_sym___stdcall] = ACTIONS(1216), + [anon_sym___fastcall] = ACTIONS(1216), + [anon_sym___thiscall] = ACTIONS(1216), + [anon_sym___vectorcall] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_auto] = ACTIONS(1216), + [anon_sym_register] = ACTIONS(1216), + [anon_sym_inline] = ACTIONS(1216), + [anon_sym_thread_local] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_constexpr] = ACTIONS(1216), + [anon_sym_volatile] = ACTIONS(1216), + [anon_sym_restrict] = ACTIONS(1216), + [anon_sym___restrict__] = ACTIONS(1216), + [anon_sym__Atomic] = ACTIONS(1216), + [anon_sym__Noreturn] = ACTIONS(1216), + [anon_sym_noreturn] = ACTIONS(1216), + [sym_primitive_type] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(1216), + [anon_sym_switch] = ACTIONS(1216), + [anon_sym_case] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_do] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_goto] = ACTIONS(1216), + [anon_sym_DASH_DASH] = ACTIONS(1218), + [anon_sym_PLUS_PLUS] = ACTIONS(1218), + [anon_sym_sizeof] = ACTIONS(1216), + [anon_sym_offsetof] = ACTIONS(1216), + [anon_sym__Generic] = ACTIONS(1216), + [anon_sym_asm] = ACTIONS(1216), + [anon_sym___asm__] = ACTIONS(1216), + [sym_number_literal] = ACTIONS(1218), + [anon_sym_L_SQUOTE] = ACTIONS(1218), + [anon_sym_u_SQUOTE] = ACTIONS(1218), + [anon_sym_U_SQUOTE] = ACTIONS(1218), + [anon_sym_u8_SQUOTE] = ACTIONS(1218), + [anon_sym_SQUOTE] = ACTIONS(1218), + [anon_sym_L_DQUOTE] = ACTIONS(1218), + [anon_sym_u_DQUOTE] = ACTIONS(1218), + [anon_sym_U_DQUOTE] = ACTIONS(1218), + [anon_sym_u8_DQUOTE] = ACTIONS(1218), + [anon_sym_DQUOTE] = ACTIONS(1218), + [sym_true] = ACTIONS(1216), + [sym_false] = ACTIONS(1216), + [anon_sym_NULL] = ACTIONS(1216), + [anon_sym_nullptr] = ACTIONS(1216), + [sym_comment] = ACTIONS(3), + }, + [381] = { + [sym_identifier] = ACTIONS(1204), + [aux_sym_preproc_include_token1] = ACTIONS(1204), + [aux_sym_preproc_def_token1] = ACTIONS(1204), + [aux_sym_preproc_if_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1204), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1204), + [sym_preproc_directive] = ACTIONS(1204), + [anon_sym_LPAREN2] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_PLUS] = ACTIONS(1204), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_typedef] = ACTIONS(1204), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym___attribute__] = ACTIONS(1204), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1206), + [anon_sym___declspec] = ACTIONS(1204), + [anon_sym___cdecl] = ACTIONS(1204), + [anon_sym___clrcall] = ACTIONS(1204), + [anon_sym___stdcall] = ACTIONS(1204), + [anon_sym___fastcall] = ACTIONS(1204), + [anon_sym___thiscall] = ACTIONS(1204), + [anon_sym___vectorcall] = ACTIONS(1204), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_auto] = ACTIONS(1204), + [anon_sym_register] = ACTIONS(1204), + [anon_sym_inline] = ACTIONS(1204), + [anon_sym_thread_local] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_constexpr] = ACTIONS(1204), + [anon_sym_volatile] = ACTIONS(1204), + [anon_sym_restrict] = ACTIONS(1204), + [anon_sym___restrict__] = ACTIONS(1204), + [anon_sym__Atomic] = ACTIONS(1204), + [anon_sym__Noreturn] = ACTIONS(1204), + [anon_sym_noreturn] = ACTIONS(1204), + [sym_primitive_type] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_else] = ACTIONS(1204), + [anon_sym_switch] = ACTIONS(1204), + [anon_sym_case] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_do] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_goto] = ACTIONS(1204), + [anon_sym_DASH_DASH] = ACTIONS(1206), + [anon_sym_PLUS_PLUS] = ACTIONS(1206), + [anon_sym_sizeof] = ACTIONS(1204), + [anon_sym_offsetof] = ACTIONS(1204), + [anon_sym__Generic] = ACTIONS(1204), + [anon_sym_asm] = ACTIONS(1204), + [anon_sym___asm__] = ACTIONS(1204), + [sym_number_literal] = ACTIONS(1206), + [anon_sym_L_SQUOTE] = ACTIONS(1206), + [anon_sym_u_SQUOTE] = ACTIONS(1206), + [anon_sym_U_SQUOTE] = ACTIONS(1206), + [anon_sym_u8_SQUOTE] = ACTIONS(1206), + [anon_sym_SQUOTE] = ACTIONS(1206), + [anon_sym_L_DQUOTE] = ACTIONS(1206), + [anon_sym_u_DQUOTE] = ACTIONS(1206), + [anon_sym_U_DQUOTE] = ACTIONS(1206), + [anon_sym_u8_DQUOTE] = ACTIONS(1206), + [anon_sym_DQUOTE] = ACTIONS(1206), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [anon_sym_NULL] = ACTIONS(1204), + [anon_sym_nullptr] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [406] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(420), - [sym_attributed_statement] = STATE(420), - [sym_labeled_statement] = STATE(420), - [sym_expression_statement] = STATE(420), - [sym_if_statement] = STATE(420), - [sym_switch_statement] = STATE(420), - [sym_case_statement] = STATE(420), - [sym_while_statement] = STATE(420), - [sym_do_statement] = STATE(420), - [sym_for_statement] = STATE(420), - [sym_return_statement] = STATE(420), - [sym_break_statement] = STATE(420), - [sym_continue_statement] = STATE(420), - [sym_goto_statement] = STATE(420), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [382] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(185), + [sym_attributed_statement] = STATE(185), + [sym_labeled_statement] = STATE(185), + [sym_expression_statement] = STATE(185), + [sym_if_statement] = STATE(185), + [sym_switch_statement] = STATE(185), + [sym_case_statement] = STATE(185), + [sym_while_statement] = STATE(185), + [sym_do_statement] = STATE(185), + [sym_for_statement] = STATE(185), + [sym_return_statement] = STATE(185), + [sym_break_statement] = STATE(185), + [sym_continue_statement] = STATE(185), + [sym_goto_statement] = STATE(185), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55233,20 +53105,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(454), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55271,305 +53143,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [407] = { - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [aux_sym_preproc_if_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1268), - [sym_preproc_directive] = ACTIONS(1268), - [anon_sym_LPAREN2] = ACTIONS(1270), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1268), - [anon_sym_STAR] = ACTIONS(1270), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_SEMI] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1268), - [anon_sym_extern] = ACTIONS(1268), - [anon_sym___attribute__] = ACTIONS(1268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1270), - [anon_sym___declspec] = ACTIONS(1268), - [anon_sym___cdecl] = ACTIONS(1268), - [anon_sym___clrcall] = ACTIONS(1268), - [anon_sym___stdcall] = ACTIONS(1268), - [anon_sym___fastcall] = ACTIONS(1268), - [anon_sym___thiscall] = ACTIONS(1268), - [anon_sym___vectorcall] = ACTIONS(1268), - [anon_sym_LBRACE] = ACTIONS(1270), - [anon_sym_RBRACE] = ACTIONS(1270), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = ACTIONS(1268), - [anon_sym_static] = ACTIONS(1268), - [anon_sym_auto] = ACTIONS(1268), - [anon_sym_register] = ACTIONS(1268), - [anon_sym_inline] = ACTIONS(1268), - [anon_sym_thread_local] = ACTIONS(1268), - [anon_sym_const] = ACTIONS(1268), - [anon_sym_constexpr] = ACTIONS(1268), - [anon_sym_volatile] = ACTIONS(1268), - [anon_sym_restrict] = ACTIONS(1268), - [anon_sym___restrict__] = ACTIONS(1268), - [anon_sym__Atomic] = ACTIONS(1268), - [anon_sym__Noreturn] = ACTIONS(1268), - [anon_sym_noreturn] = ACTIONS(1268), - [sym_primitive_type] = ACTIONS(1268), - [anon_sym_enum] = ACTIONS(1268), - [anon_sym_struct] = ACTIONS(1268), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_if] = ACTIONS(1268), - [anon_sym_else] = ACTIONS(1268), - [anon_sym_switch] = ACTIONS(1268), - [anon_sym_case] = ACTIONS(1268), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_while] = ACTIONS(1268), - [anon_sym_do] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1268), - [anon_sym_return] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(1268), - [anon_sym_continue] = ACTIONS(1268), - [anon_sym_goto] = ACTIONS(1268), - [anon_sym_DASH_DASH] = ACTIONS(1270), - [anon_sym_PLUS_PLUS] = ACTIONS(1270), - [anon_sym_sizeof] = ACTIONS(1268), - [anon_sym_offsetof] = ACTIONS(1268), - [anon_sym__Generic] = ACTIONS(1268), - [anon_sym_asm] = ACTIONS(1268), - [anon_sym___asm__] = ACTIONS(1268), - [sym_number_literal] = ACTIONS(1270), - [anon_sym_L_SQUOTE] = ACTIONS(1270), - [anon_sym_u_SQUOTE] = ACTIONS(1270), - [anon_sym_U_SQUOTE] = ACTIONS(1270), - [anon_sym_u8_SQUOTE] = ACTIONS(1270), - [anon_sym_SQUOTE] = ACTIONS(1270), - [anon_sym_L_DQUOTE] = ACTIONS(1270), - [anon_sym_u_DQUOTE] = ACTIONS(1270), - [anon_sym_U_DQUOTE] = ACTIONS(1270), - [anon_sym_u8_DQUOTE] = ACTIONS(1270), - [anon_sym_DQUOTE] = ACTIONS(1270), - [sym_true] = ACTIONS(1268), - [sym_false] = ACTIONS(1268), - [anon_sym_NULL] = ACTIONS(1268), - [anon_sym_nullptr] = ACTIONS(1268), - [sym_comment] = ACTIONS(3), - }, - [408] = { - [sym_identifier] = ACTIONS(1272), - [aux_sym_preproc_include_token1] = ACTIONS(1272), - [aux_sym_preproc_def_token1] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), - [sym_preproc_directive] = ACTIONS(1272), - [anon_sym_LPAREN2] = ACTIONS(1274), - [anon_sym_BANG] = ACTIONS(1274), - [anon_sym_TILDE] = ACTIONS(1274), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(1274), - [anon_sym_SEMI] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1272), - [anon_sym_extern] = ACTIONS(1272), - [anon_sym___attribute__] = ACTIONS(1272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), - [anon_sym___declspec] = ACTIONS(1272), - [anon_sym___cdecl] = ACTIONS(1272), - [anon_sym___clrcall] = ACTIONS(1272), - [anon_sym___stdcall] = ACTIONS(1272), - [anon_sym___fastcall] = ACTIONS(1272), - [anon_sym___thiscall] = ACTIONS(1272), - [anon_sym___vectorcall] = ACTIONS(1272), - [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = ACTIONS(1272), - [anon_sym_static] = ACTIONS(1272), - [anon_sym_auto] = ACTIONS(1272), - [anon_sym_register] = ACTIONS(1272), - [anon_sym_inline] = ACTIONS(1272), - [anon_sym_thread_local] = ACTIONS(1272), - [anon_sym_const] = ACTIONS(1272), - [anon_sym_constexpr] = ACTIONS(1272), - [anon_sym_volatile] = ACTIONS(1272), - [anon_sym_restrict] = ACTIONS(1272), - [anon_sym___restrict__] = ACTIONS(1272), - [anon_sym__Atomic] = ACTIONS(1272), - [anon_sym__Noreturn] = ACTIONS(1272), - [anon_sym_noreturn] = ACTIONS(1272), - [sym_primitive_type] = ACTIONS(1272), - [anon_sym_enum] = ACTIONS(1272), - [anon_sym_struct] = ACTIONS(1272), - [anon_sym_union] = ACTIONS(1272), - [anon_sym_if] = ACTIONS(1272), - [anon_sym_else] = ACTIONS(1272), - [anon_sym_switch] = ACTIONS(1272), - [anon_sym_case] = ACTIONS(1272), - [anon_sym_default] = ACTIONS(1272), - [anon_sym_while] = ACTIONS(1272), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1272), - [anon_sym_return] = ACTIONS(1272), - [anon_sym_break] = ACTIONS(1272), - [anon_sym_continue] = ACTIONS(1272), - [anon_sym_goto] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1274), - [anon_sym_PLUS_PLUS] = ACTIONS(1274), - [anon_sym_sizeof] = ACTIONS(1272), - [anon_sym_offsetof] = ACTIONS(1272), - [anon_sym__Generic] = ACTIONS(1272), - [anon_sym_asm] = ACTIONS(1272), - [anon_sym___asm__] = ACTIONS(1272), - [sym_number_literal] = ACTIONS(1274), - [anon_sym_L_SQUOTE] = ACTIONS(1274), - [anon_sym_u_SQUOTE] = ACTIONS(1274), - [anon_sym_U_SQUOTE] = ACTIONS(1274), - [anon_sym_u8_SQUOTE] = ACTIONS(1274), - [anon_sym_SQUOTE] = ACTIONS(1274), - [anon_sym_L_DQUOTE] = ACTIONS(1274), - [anon_sym_u_DQUOTE] = ACTIONS(1274), - [anon_sym_U_DQUOTE] = ACTIONS(1274), - [anon_sym_u8_DQUOTE] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_true] = ACTIONS(1272), - [sym_false] = ACTIONS(1272), - [anon_sym_NULL] = ACTIONS(1272), - [anon_sym_nullptr] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - }, - [409] = { - [sym_identifier] = ACTIONS(1196), - [aux_sym_preproc_include_token1] = ACTIONS(1196), - [aux_sym_preproc_def_token1] = ACTIONS(1196), - [aux_sym_preproc_if_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1196), - [sym_preproc_directive] = ACTIONS(1196), - [anon_sym_LPAREN2] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_TILDE] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1196), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1198), - [anon_sym_typedef] = ACTIONS(1196), - [anon_sym_extern] = ACTIONS(1196), - [anon_sym___attribute__] = ACTIONS(1196), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1198), - [anon_sym___declspec] = ACTIONS(1196), - [anon_sym___cdecl] = ACTIONS(1196), - [anon_sym___clrcall] = ACTIONS(1196), - [anon_sym___stdcall] = ACTIONS(1196), - [anon_sym___fastcall] = ACTIONS(1196), - [anon_sym___thiscall] = ACTIONS(1196), - [anon_sym___vectorcall] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1198), - [anon_sym_RBRACE] = ACTIONS(1198), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = ACTIONS(1196), - [anon_sym_static] = ACTIONS(1196), - [anon_sym_auto] = ACTIONS(1196), - [anon_sym_register] = ACTIONS(1196), - [anon_sym_inline] = ACTIONS(1196), - [anon_sym_thread_local] = ACTIONS(1196), - [anon_sym_const] = ACTIONS(1196), - [anon_sym_constexpr] = ACTIONS(1196), - [anon_sym_volatile] = ACTIONS(1196), - [anon_sym_restrict] = ACTIONS(1196), - [anon_sym___restrict__] = ACTIONS(1196), - [anon_sym__Atomic] = ACTIONS(1196), - [anon_sym__Noreturn] = ACTIONS(1196), - [anon_sym_noreturn] = ACTIONS(1196), - [sym_primitive_type] = ACTIONS(1196), - [anon_sym_enum] = ACTIONS(1196), - [anon_sym_struct] = ACTIONS(1196), - [anon_sym_union] = ACTIONS(1196), - [anon_sym_if] = ACTIONS(1196), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_case] = ACTIONS(1196), - [anon_sym_default] = ACTIONS(1196), - [anon_sym_while] = ACTIONS(1196), - [anon_sym_do] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1196), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_break] = ACTIONS(1196), - [anon_sym_continue] = ACTIONS(1196), - [anon_sym_goto] = ACTIONS(1196), - [anon_sym_DASH_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1198), - [anon_sym_sizeof] = ACTIONS(1196), - [anon_sym_offsetof] = ACTIONS(1196), - [anon_sym__Generic] = ACTIONS(1196), - [anon_sym_asm] = ACTIONS(1196), - [anon_sym___asm__] = ACTIONS(1196), - [sym_number_literal] = ACTIONS(1198), - [anon_sym_L_SQUOTE] = ACTIONS(1198), - [anon_sym_u_SQUOTE] = ACTIONS(1198), - [anon_sym_U_SQUOTE] = ACTIONS(1198), - [anon_sym_u8_SQUOTE] = ACTIONS(1198), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_L_DQUOTE] = ACTIONS(1198), - [anon_sym_u_DQUOTE] = ACTIONS(1198), - [anon_sym_U_DQUOTE] = ACTIONS(1198), - [anon_sym_u8_DQUOTE] = ACTIONS(1198), - [anon_sym_DQUOTE] = ACTIONS(1198), - [sym_true] = ACTIONS(1196), - [sym_false] = ACTIONS(1196), - [anon_sym_NULL] = ACTIONS(1196), - [anon_sym_nullptr] = ACTIONS(1196), - [sym_comment] = ACTIONS(3), - }, - [410] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(425), - [sym_attributed_statement] = STATE(425), - [sym_labeled_statement] = STATE(425), - [sym_expression_statement] = STATE(425), - [sym_if_statement] = STATE(425), - [sym_switch_statement] = STATE(425), - [sym_case_statement] = STATE(425), - [sym_while_statement] = STATE(425), - [sym_do_statement] = STATE(425), - [sym_for_statement] = STATE(425), - [sym_return_statement] = STATE(425), - [sym_break_statement] = STATE(425), - [sym_continue_statement] = STATE(425), - [sym_goto_statement] = STATE(425), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [383] = { + [sym_attribute_declaration] = STATE(430), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55577,20 +53191,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(454), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55615,133 +53229,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [411] = { - [sym_identifier] = ACTIONS(1276), - [aux_sym_preproc_include_token1] = ACTIONS(1276), - [aux_sym_preproc_def_token1] = ACTIONS(1276), - [aux_sym_preproc_if_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), - [sym_preproc_directive] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(1278), - [anon_sym_BANG] = ACTIONS(1278), - [anon_sym_TILDE] = ACTIONS(1278), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1278), - [anon_sym_AMP] = ACTIONS(1278), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1276), - [anon_sym_extern] = ACTIONS(1276), - [anon_sym___attribute__] = ACTIONS(1276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), - [anon_sym___declspec] = ACTIONS(1276), - [anon_sym___cdecl] = ACTIONS(1276), - [anon_sym___clrcall] = ACTIONS(1276), - [anon_sym___stdcall] = ACTIONS(1276), - [anon_sym___fastcall] = ACTIONS(1276), - [anon_sym___thiscall] = ACTIONS(1276), - [anon_sym___vectorcall] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = ACTIONS(1276), - [anon_sym_static] = ACTIONS(1276), - [anon_sym_auto] = ACTIONS(1276), - [anon_sym_register] = ACTIONS(1276), - [anon_sym_inline] = ACTIONS(1276), - [anon_sym_thread_local] = ACTIONS(1276), - [anon_sym_const] = ACTIONS(1276), - [anon_sym_constexpr] = ACTIONS(1276), - [anon_sym_volatile] = ACTIONS(1276), - [anon_sym_restrict] = ACTIONS(1276), - [anon_sym___restrict__] = ACTIONS(1276), - [anon_sym__Atomic] = ACTIONS(1276), - [anon_sym__Noreturn] = ACTIONS(1276), - [anon_sym_noreturn] = ACTIONS(1276), - [sym_primitive_type] = ACTIONS(1276), - [anon_sym_enum] = ACTIONS(1276), - [anon_sym_struct] = ACTIONS(1276), - [anon_sym_union] = ACTIONS(1276), - [anon_sym_if] = ACTIONS(1276), - [anon_sym_else] = ACTIONS(1276), - [anon_sym_switch] = ACTIONS(1276), - [anon_sym_case] = ACTIONS(1276), - [anon_sym_default] = ACTIONS(1276), - [anon_sym_while] = ACTIONS(1276), - [anon_sym_do] = ACTIONS(1276), - [anon_sym_for] = ACTIONS(1276), - [anon_sym_return] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(1276), - [anon_sym_continue] = ACTIONS(1276), - [anon_sym_goto] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1278), - [anon_sym_PLUS_PLUS] = ACTIONS(1278), - [anon_sym_sizeof] = ACTIONS(1276), - [anon_sym_offsetof] = ACTIONS(1276), - [anon_sym__Generic] = ACTIONS(1276), - [anon_sym_asm] = ACTIONS(1276), - [anon_sym___asm__] = ACTIONS(1276), - [sym_number_literal] = ACTIONS(1278), - [anon_sym_L_SQUOTE] = ACTIONS(1278), - [anon_sym_u_SQUOTE] = ACTIONS(1278), - [anon_sym_U_SQUOTE] = ACTIONS(1278), - [anon_sym_u8_SQUOTE] = ACTIONS(1278), - [anon_sym_SQUOTE] = ACTIONS(1278), - [anon_sym_L_DQUOTE] = ACTIONS(1278), - [anon_sym_u_DQUOTE] = ACTIONS(1278), - [anon_sym_U_DQUOTE] = ACTIONS(1278), - [anon_sym_u8_DQUOTE] = ACTIONS(1278), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_true] = ACTIONS(1276), - [sym_false] = ACTIONS(1276), - [anon_sym_NULL] = ACTIONS(1276), - [anon_sym_nullptr] = ACTIONS(1276), + [384] = { + [sym_identifier] = ACTIONS(1316), + [aux_sym_preproc_include_token1] = ACTIONS(1316), + [aux_sym_preproc_def_token1] = ACTIONS(1316), + [aux_sym_preproc_if_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1316), + [sym_preproc_directive] = ACTIONS(1316), + [anon_sym_LPAREN2] = ACTIONS(1318), + [anon_sym_BANG] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1318), + [anon_sym_AMP] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1316), + [anon_sym___attribute__] = ACTIONS(1316), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1318), + [anon_sym___declspec] = ACTIONS(1316), + [anon_sym___cdecl] = ACTIONS(1316), + [anon_sym___clrcall] = ACTIONS(1316), + [anon_sym___stdcall] = ACTIONS(1316), + [anon_sym___fastcall] = ACTIONS(1316), + [anon_sym___thiscall] = ACTIONS(1316), + [anon_sym___vectorcall] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_auto] = ACTIONS(1316), + [anon_sym_register] = ACTIONS(1316), + [anon_sym_inline] = ACTIONS(1316), + [anon_sym_thread_local] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_constexpr] = ACTIONS(1316), + [anon_sym_volatile] = ACTIONS(1316), + [anon_sym_restrict] = ACTIONS(1316), + [anon_sym___restrict__] = ACTIONS(1316), + [anon_sym__Atomic] = ACTIONS(1316), + [anon_sym__Noreturn] = ACTIONS(1316), + [anon_sym_noreturn] = ACTIONS(1316), + [sym_primitive_type] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_else] = ACTIONS(1316), + [anon_sym_switch] = ACTIONS(1316), + [anon_sym_case] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [anon_sym_do] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_goto] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1318), + [anon_sym_PLUS_PLUS] = ACTIONS(1318), + [anon_sym_sizeof] = ACTIONS(1316), + [anon_sym_offsetof] = ACTIONS(1316), + [anon_sym__Generic] = ACTIONS(1316), + [anon_sym_asm] = ACTIONS(1316), + [anon_sym___asm__] = ACTIONS(1316), + [sym_number_literal] = ACTIONS(1318), + [anon_sym_L_SQUOTE] = ACTIONS(1318), + [anon_sym_u_SQUOTE] = ACTIONS(1318), + [anon_sym_U_SQUOTE] = ACTIONS(1318), + [anon_sym_u8_SQUOTE] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_L_DQUOTE] = ACTIONS(1318), + [anon_sym_u_DQUOTE] = ACTIONS(1318), + [anon_sym_U_DQUOTE] = ACTIONS(1318), + [anon_sym_u8_DQUOTE] = ACTIONS(1318), + [anon_sym_DQUOTE] = ACTIONS(1318), + [sym_true] = ACTIONS(1316), + [sym_false] = ACTIONS(1316), + [anon_sym_NULL] = ACTIONS(1316), + [anon_sym_nullptr] = ACTIONS(1316), [sym_comment] = ACTIONS(3), }, - [412] = { - [sym_attribute_declaration] = STATE(439), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [385] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(1985), + [sym_attributed_statement] = STATE(1985), + [sym_labeled_statement] = STATE(1985), + [sym_expression_statement] = STATE(1985), + [sym_if_statement] = STATE(1985), + [sym_switch_statement] = STATE(1985), + [sym_case_statement] = STATE(1985), + [sym_while_statement] = STATE(1985), + [sym_do_statement] = STATE(1985), + [sym_for_statement] = STATE(1985), + [sym_return_statement] = STATE(1985), + [sym_break_statement] = STATE(1985), + [sym_continue_statement] = STATE(1985), + [sym_goto_statement] = STATE(1985), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(439), - [sym_identifier] = ACTIONS(1545), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55749,16 +53363,16 @@ 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(1005), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1150), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -55787,133 +53401,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [413] = { - [ts_builtin_sym_end] = ACTIONS(1342), - [sym_identifier] = ACTIONS(1340), - [aux_sym_preproc_include_token1] = ACTIONS(1340), - [aux_sym_preproc_def_token1] = ACTIONS(1340), - [aux_sym_preproc_if_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1340), - [sym_preproc_directive] = ACTIONS(1340), - [anon_sym_LPAREN2] = ACTIONS(1342), - [anon_sym_BANG] = ACTIONS(1342), - [anon_sym_TILDE] = ACTIONS(1342), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1340), - [anon_sym_extern] = ACTIONS(1340), - [anon_sym___attribute__] = ACTIONS(1340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1342), - [anon_sym___declspec] = ACTIONS(1340), - [anon_sym___cdecl] = ACTIONS(1340), - [anon_sym___clrcall] = ACTIONS(1340), - [anon_sym___stdcall] = ACTIONS(1340), - [anon_sym___fastcall] = ACTIONS(1340), - [anon_sym___thiscall] = ACTIONS(1340), - [anon_sym___vectorcall] = ACTIONS(1340), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_auto] = ACTIONS(1340), - [anon_sym_register] = ACTIONS(1340), - [anon_sym_inline] = ACTIONS(1340), - [anon_sym_thread_local] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_constexpr] = ACTIONS(1340), - [anon_sym_volatile] = ACTIONS(1340), - [anon_sym_restrict] = ACTIONS(1340), - [anon_sym___restrict__] = ACTIONS(1340), - [anon_sym__Atomic] = ACTIONS(1340), - [anon_sym__Noreturn] = ACTIONS(1340), - [anon_sym_noreturn] = ACTIONS(1340), - [sym_primitive_type] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_else] = ACTIONS(1340), - [anon_sym_switch] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_goto] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1342), - [anon_sym_PLUS_PLUS] = ACTIONS(1342), - [anon_sym_sizeof] = ACTIONS(1340), - [anon_sym_offsetof] = ACTIONS(1340), - [anon_sym__Generic] = ACTIONS(1340), - [anon_sym_asm] = ACTIONS(1340), - [anon_sym___asm__] = ACTIONS(1340), - [sym_number_literal] = ACTIONS(1342), - [anon_sym_L_SQUOTE] = ACTIONS(1342), - [anon_sym_u_SQUOTE] = ACTIONS(1342), - [anon_sym_U_SQUOTE] = ACTIONS(1342), - [anon_sym_u8_SQUOTE] = ACTIONS(1342), - [anon_sym_SQUOTE] = ACTIONS(1342), - [anon_sym_L_DQUOTE] = ACTIONS(1342), - [anon_sym_u_DQUOTE] = ACTIONS(1342), - [anon_sym_U_DQUOTE] = ACTIONS(1342), - [anon_sym_u8_DQUOTE] = ACTIONS(1342), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_true] = ACTIONS(1340), - [sym_false] = ACTIONS(1340), - [anon_sym_NULL] = ACTIONS(1340), - [anon_sym_nullptr] = ACTIONS(1340), - [sym_comment] = ACTIONS(3), - }, - [414] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(284), - [sym_attributed_statement] = STATE(284), - [sym_labeled_statement] = STATE(284), - [sym_expression_statement] = STATE(284), - [sym_if_statement] = STATE(284), - [sym_switch_statement] = STATE(284), - [sym_case_statement] = STATE(284), - [sym_while_statement] = STATE(284), - [sym_do_statement] = STATE(284), - [sym_for_statement] = STATE(284), - [sym_return_statement] = STATE(284), - [sym_break_statement] = STATE(284), - [sym_continue_statement] = STATE(284), - [sym_goto_statement] = STATE(284), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [386] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(188), + [sym_attributed_statement] = STATE(188), + [sym_labeled_statement] = STATE(188), + [sym_expression_statement] = STATE(188), + [sym_if_statement] = STATE(188), + [sym_switch_statement] = STATE(188), + [sym_case_statement] = STATE(188), + [sym_while_statement] = STATE(188), + [sym_do_statement] = STATE(188), + [sym_for_statement] = STATE(188), + [sym_return_statement] = STATE(188), + [sym_break_statement] = STATE(188), + [sym_continue_statement] = STATE(188), + [sym_goto_statement] = STATE(188), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55921,20 +53449,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(454), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55959,47 +53487,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [415] = { - [sym_attribute_declaration] = STATE(273), - [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(1100), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1843), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [387] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(190), + [sym_attributed_statement] = STATE(190), + [sym_labeled_statement] = STATE(190), + [sym_expression_statement] = STATE(190), + [sym_if_statement] = STATE(190), + [sym_switch_statement] = STATE(190), + [sym_case_statement] = STATE(190), + [sym_while_statement] = STATE(190), + [sym_do_statement] = STATE(190), + [sym_for_statement] = STATE(190), + [sym_return_statement] = STATE(190), + [sym_break_statement] = STATE(190), + [sym_continue_statement] = STATE(190), + [sym_goto_statement] = STATE(190), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(273), - [sym_identifier] = ACTIONS(1543), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56045,47 +53573,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [416] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(111), - [sym_attributed_statement] = STATE(111), - [sym_labeled_statement] = STATE(111), - [sym_expression_statement] = STATE(111), - [sym_if_statement] = STATE(111), - [sym_switch_statement] = STATE(111), - [sym_case_statement] = STATE(111), - [sym_while_statement] = STATE(111), - [sym_do_statement] = STATE(111), - [sym_for_statement] = STATE(111), - [sym_return_statement] = STATE(111), - [sym_break_statement] = STATE(111), - [sym_continue_statement] = STATE(111), - [sym_goto_statement] = STATE(111), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [388] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(191), + [sym_attributed_statement] = STATE(191), + [sym_labeled_statement] = STATE(191), + [sym_expression_statement] = STATE(191), + [sym_if_statement] = STATE(191), + [sym_switch_statement] = STATE(191), + [sym_case_statement] = STATE(191), + [sym_while_statement] = STATE(191), + [sym_do_statement] = STATE(191), + [sym_for_statement] = STATE(191), + [sym_return_statement] = STATE(191), + [sym_break_statement] = STATE(191), + [sym_continue_statement] = STATE(191), + [sym_goto_statement] = STATE(191), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56093,20 +53621,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(117), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56131,133 +53659,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [417] = { - [sym_identifier] = ACTIONS(1280), - [aux_sym_preproc_include_token1] = ACTIONS(1280), - [aux_sym_preproc_def_token1] = ACTIONS(1280), - [aux_sym_preproc_if_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), - [sym_preproc_directive] = ACTIONS(1280), - [anon_sym_LPAREN2] = ACTIONS(1282), - [anon_sym_BANG] = ACTIONS(1282), - [anon_sym_TILDE] = ACTIONS(1282), - [anon_sym_DASH] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(1280), - [anon_sym_STAR] = ACTIONS(1282), - [anon_sym_AMP] = ACTIONS(1282), - [anon_sym_SEMI] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1280), - [anon_sym_extern] = ACTIONS(1280), - [anon_sym___attribute__] = ACTIONS(1280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), - [anon_sym___declspec] = ACTIONS(1280), - [anon_sym___cdecl] = ACTIONS(1280), - [anon_sym___clrcall] = ACTIONS(1280), - [anon_sym___stdcall] = ACTIONS(1280), - [anon_sym___fastcall] = ACTIONS(1280), - [anon_sym___thiscall] = ACTIONS(1280), - [anon_sym___vectorcall] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = ACTIONS(1280), - [anon_sym_static] = ACTIONS(1280), - [anon_sym_auto] = ACTIONS(1280), - [anon_sym_register] = ACTIONS(1280), - [anon_sym_inline] = ACTIONS(1280), - [anon_sym_thread_local] = ACTIONS(1280), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_constexpr] = ACTIONS(1280), - [anon_sym_volatile] = ACTIONS(1280), - [anon_sym_restrict] = ACTIONS(1280), - [anon_sym___restrict__] = ACTIONS(1280), - [anon_sym__Atomic] = ACTIONS(1280), - [anon_sym__Noreturn] = ACTIONS(1280), - [anon_sym_noreturn] = ACTIONS(1280), - [sym_primitive_type] = ACTIONS(1280), - [anon_sym_enum] = ACTIONS(1280), - [anon_sym_struct] = ACTIONS(1280), - [anon_sym_union] = ACTIONS(1280), - [anon_sym_if] = ACTIONS(1280), - [anon_sym_else] = ACTIONS(1280), - [anon_sym_switch] = ACTIONS(1280), - [anon_sym_case] = ACTIONS(1280), - [anon_sym_default] = ACTIONS(1280), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(1280), - [anon_sym_for] = ACTIONS(1280), - [anon_sym_return] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1280), - [anon_sym_continue] = ACTIONS(1280), - [anon_sym_goto] = ACTIONS(1280), - [anon_sym_DASH_DASH] = ACTIONS(1282), - [anon_sym_PLUS_PLUS] = ACTIONS(1282), - [anon_sym_sizeof] = ACTIONS(1280), - [anon_sym_offsetof] = ACTIONS(1280), - [anon_sym__Generic] = ACTIONS(1280), - [anon_sym_asm] = ACTIONS(1280), - [anon_sym___asm__] = ACTIONS(1280), - [sym_number_literal] = ACTIONS(1282), - [anon_sym_L_SQUOTE] = ACTIONS(1282), - [anon_sym_u_SQUOTE] = ACTIONS(1282), - [anon_sym_U_SQUOTE] = ACTIONS(1282), - [anon_sym_u8_SQUOTE] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1282), - [anon_sym_L_DQUOTE] = ACTIONS(1282), - [anon_sym_u_DQUOTE] = ACTIONS(1282), - [anon_sym_U_DQUOTE] = ACTIONS(1282), - [anon_sym_u8_DQUOTE] = ACTIONS(1282), - [anon_sym_DQUOTE] = ACTIONS(1282), - [sym_true] = ACTIONS(1280), - [sym_false] = ACTIONS(1280), - [anon_sym_NULL] = ACTIONS(1280), - [anon_sym_nullptr] = ACTIONS(1280), - [sym_comment] = ACTIONS(3), - }, - [418] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(426), - [sym_attributed_statement] = STATE(426), - [sym_labeled_statement] = STATE(426), - [sym_expression_statement] = STATE(426), - [sym_if_statement] = STATE(426), - [sym_switch_statement] = STATE(426), - [sym_case_statement] = STATE(426), - [sym_while_statement] = STATE(426), - [sym_do_statement] = STATE(426), - [sym_for_statement] = STATE(426), - [sym_return_statement] = STATE(426), - [sym_break_statement] = STATE(426), - [sym_continue_statement] = STATE(426), - [sym_goto_statement] = STATE(426), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [389] = { + [sym_attribute_declaration] = STATE(430), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56265,20 +53707,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(454), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56303,47 +53745,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [419] = { - [sym_attribute_declaration] = STATE(333), - [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(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [390] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(194), + [sym_attributed_statement] = STATE(194), + [sym_labeled_statement] = STATE(194), + [sym_expression_statement] = STATE(194), + [sym_if_statement] = STATE(194), + [sym_switch_statement] = STATE(194), + [sym_case_statement] = STATE(194), + [sym_while_statement] = STATE(194), + [sym_do_statement] = STATE(194), + [sym_for_statement] = STATE(194), + [sym_return_statement] = STATE(194), + [sym_break_statement] = STATE(194), + [sym_continue_statement] = STATE(194), + [sym_goto_statement] = STATE(194), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56351,20 +53793,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(117), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56389,133 +53831,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [420] = { - [sym_identifier] = ACTIONS(1284), - [aux_sym_preproc_include_token1] = ACTIONS(1284), - [aux_sym_preproc_def_token1] = ACTIONS(1284), - [aux_sym_preproc_if_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), - [sym_preproc_directive] = ACTIONS(1284), - [anon_sym_LPAREN2] = ACTIONS(1286), - [anon_sym_BANG] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1284), - [anon_sym_PLUS] = ACTIONS(1284), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1284), - [anon_sym_extern] = ACTIONS(1284), - [anon_sym___attribute__] = ACTIONS(1284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), - [anon_sym___declspec] = ACTIONS(1284), - [anon_sym___cdecl] = ACTIONS(1284), - [anon_sym___clrcall] = ACTIONS(1284), - [anon_sym___stdcall] = ACTIONS(1284), - [anon_sym___fastcall] = ACTIONS(1284), - [anon_sym___thiscall] = ACTIONS(1284), - [anon_sym___vectorcall] = ACTIONS(1284), - [anon_sym_LBRACE] = ACTIONS(1286), - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = ACTIONS(1284), - [anon_sym_static] = ACTIONS(1284), - [anon_sym_auto] = ACTIONS(1284), - [anon_sym_register] = ACTIONS(1284), - [anon_sym_inline] = ACTIONS(1284), - [anon_sym_thread_local] = ACTIONS(1284), - [anon_sym_const] = ACTIONS(1284), - [anon_sym_constexpr] = ACTIONS(1284), - [anon_sym_volatile] = ACTIONS(1284), - [anon_sym_restrict] = ACTIONS(1284), - [anon_sym___restrict__] = ACTIONS(1284), - [anon_sym__Atomic] = ACTIONS(1284), - [anon_sym__Noreturn] = ACTIONS(1284), - [anon_sym_noreturn] = ACTIONS(1284), - [sym_primitive_type] = ACTIONS(1284), - [anon_sym_enum] = ACTIONS(1284), - [anon_sym_struct] = ACTIONS(1284), - [anon_sym_union] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1284), - [anon_sym_else] = ACTIONS(1284), - [anon_sym_switch] = ACTIONS(1284), - [anon_sym_case] = ACTIONS(1284), - [anon_sym_default] = ACTIONS(1284), - [anon_sym_while] = ACTIONS(1284), - [anon_sym_do] = ACTIONS(1284), - [anon_sym_for] = ACTIONS(1284), - [anon_sym_return] = ACTIONS(1284), - [anon_sym_break] = ACTIONS(1284), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1284), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_sizeof] = ACTIONS(1284), - [anon_sym_offsetof] = ACTIONS(1284), - [anon_sym__Generic] = ACTIONS(1284), - [anon_sym_asm] = ACTIONS(1284), - [anon_sym___asm__] = ACTIONS(1284), - [sym_number_literal] = ACTIONS(1286), - [anon_sym_L_SQUOTE] = ACTIONS(1286), - [anon_sym_u_SQUOTE] = ACTIONS(1286), - [anon_sym_U_SQUOTE] = ACTIONS(1286), - [anon_sym_u8_SQUOTE] = ACTIONS(1286), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_L_DQUOTE] = ACTIONS(1286), - [anon_sym_u_DQUOTE] = ACTIONS(1286), - [anon_sym_U_DQUOTE] = ACTIONS(1286), - [anon_sym_u8_DQUOTE] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_true] = ACTIONS(1284), - [sym_false] = ACTIONS(1284), - [anon_sym_NULL] = ACTIONS(1284), - [anon_sym_nullptr] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - }, - [421] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(428), - [sym_attributed_statement] = STATE(428), - [sym_labeled_statement] = STATE(428), - [sym_expression_statement] = STATE(428), - [sym_if_statement] = STATE(428), - [sym_switch_statement] = STATE(428), - [sym_case_statement] = STATE(428), - [sym_while_statement] = STATE(428), - [sym_do_statement] = STATE(428), - [sym_for_statement] = STATE(428), - [sym_return_statement] = STATE(428), - [sym_break_statement] = STATE(428), - [sym_continue_statement] = STATE(428), - [sym_goto_statement] = STATE(428), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [391] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56523,20 +53879,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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56561,47 +53917,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(112), - [sym_attributed_statement] = STATE(112), - [sym_labeled_statement] = STATE(112), - [sym_expression_statement] = STATE(112), - [sym_if_statement] = STATE(112), - [sym_switch_statement] = STATE(112), - [sym_case_statement] = STATE(112), - [sym_while_statement] = STATE(112), - [sym_do_statement] = STATE(112), - [sym_for_statement] = STATE(112), - [sym_return_statement] = STATE(112), - [sym_break_statement] = STATE(112), - [sym_continue_statement] = STATE(112), - [sym_goto_statement] = STATE(112), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [392] = { + [sym_identifier] = ACTIONS(1208), + [aux_sym_preproc_include_token1] = ACTIONS(1208), + [aux_sym_preproc_def_token1] = ACTIONS(1208), + [aux_sym_preproc_if_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1208), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1208), + [sym_preproc_directive] = ACTIONS(1208), + [anon_sym_LPAREN2] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_TILDE] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_typedef] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym___attribute__] = ACTIONS(1208), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(1208), + [anon_sym___cdecl] = ACTIONS(1208), + [anon_sym___clrcall] = ACTIONS(1208), + [anon_sym___stdcall] = ACTIONS(1208), + [anon_sym___fastcall] = ACTIONS(1208), + [anon_sym___thiscall] = ACTIONS(1208), + [anon_sym___vectorcall] = ACTIONS(1208), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_auto] = ACTIONS(1208), + [anon_sym_register] = ACTIONS(1208), + [anon_sym_inline] = ACTIONS(1208), + [anon_sym_thread_local] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_constexpr] = ACTIONS(1208), + [anon_sym_volatile] = ACTIONS(1208), + [anon_sym_restrict] = ACTIONS(1208), + [anon_sym___restrict__] = ACTIONS(1208), + [anon_sym__Atomic] = ACTIONS(1208), + [anon_sym__Noreturn] = ACTIONS(1208), + [anon_sym_noreturn] = ACTIONS(1208), + [sym_primitive_type] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_switch] = ACTIONS(1208), + [anon_sym_case] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_do] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_goto] = ACTIONS(1208), + [anon_sym_DASH_DASH] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_sizeof] = ACTIONS(1208), + [anon_sym_offsetof] = ACTIONS(1208), + [anon_sym__Generic] = ACTIONS(1208), + [anon_sym_asm] = ACTIONS(1208), + [anon_sym___asm__] = ACTIONS(1208), + [sym_number_literal] = ACTIONS(1210), + [anon_sym_L_SQUOTE] = ACTIONS(1210), + [anon_sym_u_SQUOTE] = ACTIONS(1210), + [anon_sym_U_SQUOTE] = ACTIONS(1210), + [anon_sym_u8_SQUOTE] = ACTIONS(1210), + [anon_sym_SQUOTE] = ACTIONS(1210), + [anon_sym_L_DQUOTE] = ACTIONS(1210), + [anon_sym_u_DQUOTE] = ACTIONS(1210), + [anon_sym_U_DQUOTE] = ACTIONS(1210), + [anon_sym_u8_DQUOTE] = ACTIONS(1210), + [anon_sym_DQUOTE] = ACTIONS(1210), + [sym_true] = ACTIONS(1208), + [sym_false] = ACTIONS(1208), + [anon_sym_NULL] = ACTIONS(1208), + [anon_sym_nullptr] = ACTIONS(1208), + [sym_comment] = ACTIONS(3), + }, + [393] = { + [sym_attribute_declaration] = STATE(430), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56609,20 +54051,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(117), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56647,47 +54089,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [423] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(113), - [sym_attributed_statement] = STATE(113), - [sym_labeled_statement] = STATE(113), - [sym_expression_statement] = STATE(113), - [sym_if_statement] = STATE(113), - [sym_switch_statement] = STATE(113), - [sym_case_statement] = STATE(113), - [sym_while_statement] = STATE(113), - [sym_do_statement] = STATE(113), - [sym_for_statement] = STATE(113), - [sym_return_statement] = STATE(113), - [sym_break_statement] = STATE(113), - [sym_continue_statement] = STATE(113), - [sym_goto_statement] = STATE(113), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [394] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(180), + [sym_attributed_statement] = STATE(180), + [sym_labeled_statement] = STATE(180), + [sym_expression_statement] = STATE(180), + [sym_if_statement] = STATE(180), + [sym_switch_statement] = STATE(180), + [sym_case_statement] = STATE(180), + [sym_while_statement] = STATE(180), + [sym_do_statement] = STATE(180), + [sym_for_statement] = STATE(180), + [sym_return_statement] = STATE(180), + [sym_break_statement] = STATE(180), + [sym_continue_statement] = STATE(180), + [sym_goto_statement] = STATE(180), + [sym__expression] = STATE(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56695,20 +54137,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(117), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56733,47 +54175,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(430), - [sym_attributed_statement] = STATE(430), - [sym_labeled_statement] = STATE(430), - [sym_expression_statement] = STATE(430), - [sym_if_statement] = STATE(430), - [sym_switch_statement] = STATE(430), - [sym_case_statement] = STATE(430), - [sym_while_statement] = STATE(430), - [sym_do_statement] = STATE(430), - [sym_for_statement] = STATE(430), - [sym_return_statement] = STATE(430), - [sym_break_statement] = STATE(430), - [sym_continue_statement] = STATE(430), - [sym_goto_statement] = STATE(430), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [395] = { + [sym_identifier] = ACTIONS(1220), + [aux_sym_preproc_include_token1] = ACTIONS(1220), + [aux_sym_preproc_def_token1] = ACTIONS(1220), + [aux_sym_preproc_if_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1220), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1220), + [sym_preproc_directive] = ACTIONS(1220), + [anon_sym_LPAREN2] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1220), + [anon_sym_PLUS] = ACTIONS(1220), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_typedef] = ACTIONS(1220), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym___attribute__] = ACTIONS(1220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1222), + [anon_sym___declspec] = ACTIONS(1220), + [anon_sym___cdecl] = ACTIONS(1220), + [anon_sym___clrcall] = ACTIONS(1220), + [anon_sym___stdcall] = ACTIONS(1220), + [anon_sym___fastcall] = ACTIONS(1220), + [anon_sym___thiscall] = ACTIONS(1220), + [anon_sym___vectorcall] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_auto] = ACTIONS(1220), + [anon_sym_register] = ACTIONS(1220), + [anon_sym_inline] = ACTIONS(1220), + [anon_sym_thread_local] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_constexpr] = ACTIONS(1220), + [anon_sym_volatile] = ACTIONS(1220), + [anon_sym_restrict] = ACTIONS(1220), + [anon_sym___restrict__] = ACTIONS(1220), + [anon_sym__Atomic] = ACTIONS(1220), + [anon_sym__Noreturn] = ACTIONS(1220), + [anon_sym_noreturn] = ACTIONS(1220), + [sym_primitive_type] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_else] = ACTIONS(1220), + [anon_sym_switch] = ACTIONS(1220), + [anon_sym_case] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_do] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_DASH_DASH] = ACTIONS(1222), + [anon_sym_PLUS_PLUS] = ACTIONS(1222), + [anon_sym_sizeof] = ACTIONS(1220), + [anon_sym_offsetof] = ACTIONS(1220), + [anon_sym__Generic] = ACTIONS(1220), + [anon_sym_asm] = ACTIONS(1220), + [anon_sym___asm__] = ACTIONS(1220), + [sym_number_literal] = ACTIONS(1222), + [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(1222), + [anon_sym_u_DQUOTE] = ACTIONS(1222), + [anon_sym_U_DQUOTE] = ACTIONS(1222), + [anon_sym_u8_DQUOTE] = ACTIONS(1222), + [anon_sym_DQUOTE] = ACTIONS(1222), + [sym_true] = ACTIONS(1220), + [sym_false] = ACTIONS(1220), + [anon_sym_NULL] = ACTIONS(1220), + [anon_sym_nullptr] = ACTIONS(1220), + [sym_comment] = ACTIONS(3), + }, + [396] = { + [sym_attribute_declaration] = STATE(430), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56781,20 +54309,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(454), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56819,219 +54347,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [425] = { - [sym_identifier] = ACTIONS(1288), - [aux_sym_preproc_include_token1] = ACTIONS(1288), - [aux_sym_preproc_def_token1] = ACTIONS(1288), - [aux_sym_preproc_if_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), - [sym_preproc_directive] = ACTIONS(1288), - [anon_sym_LPAREN2] = ACTIONS(1290), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_TILDE] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1288), - [anon_sym_PLUS] = ACTIONS(1288), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_SEMI] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1288), - [anon_sym___attribute__] = ACTIONS(1288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), - [anon_sym___declspec] = ACTIONS(1288), - [anon_sym___cdecl] = ACTIONS(1288), - [anon_sym___clrcall] = ACTIONS(1288), - [anon_sym___stdcall] = ACTIONS(1288), - [anon_sym___fastcall] = ACTIONS(1288), - [anon_sym___thiscall] = ACTIONS(1288), - [anon_sym___vectorcall] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1290), - [anon_sym_RBRACE] = ACTIONS(1290), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_auto] = ACTIONS(1288), - [anon_sym_register] = ACTIONS(1288), - [anon_sym_inline] = ACTIONS(1288), - [anon_sym_thread_local] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_constexpr] = ACTIONS(1288), - [anon_sym_volatile] = ACTIONS(1288), - [anon_sym_restrict] = ACTIONS(1288), - [anon_sym___restrict__] = ACTIONS(1288), - [anon_sym__Atomic] = ACTIONS(1288), - [anon_sym__Noreturn] = ACTIONS(1288), - [anon_sym_noreturn] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1290), - [anon_sym_sizeof] = ACTIONS(1288), - [anon_sym_offsetof] = ACTIONS(1288), - [anon_sym__Generic] = ACTIONS(1288), - [anon_sym_asm] = ACTIONS(1288), - [anon_sym___asm__] = ACTIONS(1288), - [sym_number_literal] = ACTIONS(1290), - [anon_sym_L_SQUOTE] = ACTIONS(1290), - [anon_sym_u_SQUOTE] = ACTIONS(1290), - [anon_sym_U_SQUOTE] = ACTIONS(1290), - [anon_sym_u8_SQUOTE] = ACTIONS(1290), - [anon_sym_SQUOTE] = ACTIONS(1290), - [anon_sym_L_DQUOTE] = ACTIONS(1290), - [anon_sym_u_DQUOTE] = ACTIONS(1290), - [anon_sym_U_DQUOTE] = ACTIONS(1290), - [anon_sym_u8_DQUOTE] = ACTIONS(1290), - [anon_sym_DQUOTE] = ACTIONS(1290), - [sym_true] = ACTIONS(1288), - [sym_false] = ACTIONS(1288), - [anon_sym_NULL] = ACTIONS(1288), - [anon_sym_nullptr] = ACTIONS(1288), - [sym_comment] = ACTIONS(3), - }, - [426] = { - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1292), - [anon_sym_switch] = ACTIONS(1292), - [anon_sym_case] = ACTIONS(1292), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_do] = ACTIONS(1292), - [anon_sym_for] = ACTIONS(1292), - [anon_sym_return] = ACTIONS(1292), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_goto] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__Generic] = ACTIONS(1292), - [anon_sym_asm] = ACTIONS(1292), - [anon_sym___asm__] = ACTIONS(1292), - [sym_number_literal] = ACTIONS(1294), - [anon_sym_L_SQUOTE] = ACTIONS(1294), - [anon_sym_u_SQUOTE] = ACTIONS(1294), - [anon_sym_U_SQUOTE] = ACTIONS(1294), - [anon_sym_u8_SQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1294), - [anon_sym_L_DQUOTE] = ACTIONS(1294), - [anon_sym_u_DQUOTE] = ACTIONS(1294), - [anon_sym_U_DQUOTE] = ACTIONS(1294), - [anon_sym_u8_DQUOTE] = ACTIONS(1294), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_true] = ACTIONS(1292), - [sym_false] = ACTIONS(1292), - [anon_sym_NULL] = ACTIONS(1292), - [anon_sym_nullptr] = ACTIONS(1292), + [397] = { + [sym_attribute_declaration] = STATE(430), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), + [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(183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(114), - [sym_attributed_statement] = STATE(114), - [sym_labeled_statement] = STATE(114), - [sym_expression_statement] = STATE(114), - [sym_if_statement] = STATE(114), - [sym_switch_statement] = STATE(114), - [sym_case_statement] = STATE(114), - [sym_while_statement] = STATE(114), - [sym_do_statement] = STATE(114), - [sym_for_statement] = STATE(114), - [sym_return_statement] = STATE(114), - [sym_break_statement] = STATE(114), - [sym_continue_statement] = STATE(114), - [sym_goto_statement] = STATE(114), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [398] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [399] = { + [sym_attribute_declaration] = STATE(306), + [sym_compound_statement] = STATE(108), + [sym_attributed_statement] = STATE(108), + [sym_labeled_statement] = STATE(108), + [sym_expression_statement] = STATE(108), + [sym_if_statement] = STATE(108), + [sym_switch_statement] = STATE(108), + [sym_case_statement] = STATE(108), + [sym_while_statement] = STATE(108), + [sym_do_statement] = STATE(108), + [sym_for_statement] = STATE(108), + [sym_return_statement] = STATE(108), + [sym_break_statement] = STATE(108), + [sym_continue_statement] = STATE(108), + [sym_goto_statement] = STATE(108), + [sym__expression] = STATE(1098), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1828), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(306), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57077,133 +54605,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [428] = { - [sym_identifier] = ACTIONS(1296), - [aux_sym_preproc_include_token1] = ACTIONS(1296), - [aux_sym_preproc_def_token1] = ACTIONS(1296), - [aux_sym_preproc_if_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), - [sym_preproc_directive] = ACTIONS(1296), - [anon_sym_LPAREN2] = ACTIONS(1298), - [anon_sym_BANG] = ACTIONS(1298), - [anon_sym_TILDE] = ACTIONS(1298), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1298), - [anon_sym_AMP] = ACTIONS(1298), - [anon_sym_SEMI] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1296), - [anon_sym_extern] = ACTIONS(1296), - [anon_sym___attribute__] = ACTIONS(1296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), - [anon_sym___declspec] = ACTIONS(1296), - [anon_sym___cdecl] = ACTIONS(1296), - [anon_sym___clrcall] = ACTIONS(1296), - [anon_sym___stdcall] = ACTIONS(1296), - [anon_sym___fastcall] = ACTIONS(1296), - [anon_sym___thiscall] = ACTIONS(1296), - [anon_sym___vectorcall] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = ACTIONS(1296), - [anon_sym_static] = ACTIONS(1296), - [anon_sym_auto] = ACTIONS(1296), - [anon_sym_register] = ACTIONS(1296), - [anon_sym_inline] = ACTIONS(1296), - [anon_sym_thread_local] = ACTIONS(1296), - [anon_sym_const] = ACTIONS(1296), - [anon_sym_constexpr] = ACTIONS(1296), - [anon_sym_volatile] = ACTIONS(1296), - [anon_sym_restrict] = ACTIONS(1296), - [anon_sym___restrict__] = ACTIONS(1296), - [anon_sym__Atomic] = ACTIONS(1296), - [anon_sym__Noreturn] = ACTIONS(1296), - [anon_sym_noreturn] = ACTIONS(1296), - [sym_primitive_type] = ACTIONS(1296), - [anon_sym_enum] = ACTIONS(1296), - [anon_sym_struct] = ACTIONS(1296), - [anon_sym_union] = ACTIONS(1296), - [anon_sym_if] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1296), - [anon_sym_switch] = ACTIONS(1296), - [anon_sym_case] = ACTIONS(1296), - [anon_sym_default] = ACTIONS(1296), - [anon_sym_while] = ACTIONS(1296), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1296), - [anon_sym_continue] = ACTIONS(1296), - [anon_sym_goto] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1298), - [anon_sym_PLUS_PLUS] = ACTIONS(1298), - [anon_sym_sizeof] = ACTIONS(1296), - [anon_sym_offsetof] = ACTIONS(1296), - [anon_sym__Generic] = ACTIONS(1296), - [anon_sym_asm] = ACTIONS(1296), - [anon_sym___asm__] = ACTIONS(1296), - [sym_number_literal] = ACTIONS(1298), - [anon_sym_L_SQUOTE] = ACTIONS(1298), - [anon_sym_u_SQUOTE] = ACTIONS(1298), - [anon_sym_U_SQUOTE] = ACTIONS(1298), - [anon_sym_u8_SQUOTE] = ACTIONS(1298), - [anon_sym_SQUOTE] = ACTIONS(1298), - [anon_sym_L_DQUOTE] = ACTIONS(1298), - [anon_sym_u_DQUOTE] = ACTIONS(1298), - [anon_sym_U_DQUOTE] = ACTIONS(1298), - [anon_sym_u8_DQUOTE] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_true] = ACTIONS(1296), - [sym_false] = ACTIONS(1296), - [anon_sym_NULL] = ACTIONS(1296), - [anon_sym_nullptr] = ACTIONS(1296), + [400] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(419), + [sym_attributed_statement] = STATE(419), + [sym_labeled_statement] = STATE(419), + [sym_expression_statement] = STATE(419), + [sym_if_statement] = STATE(419), + [sym_switch_statement] = STATE(419), + [sym_case_statement] = STATE(419), + [sym_while_statement] = STATE(419), + [sym_do_statement] = STATE(419), + [sym_for_statement] = STATE(419), + [sym_return_statement] = STATE(419), + [sym_break_statement] = STATE(419), + [sym_continue_statement] = STATE(419), + [sym_goto_statement] = STATE(419), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [429] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [401] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(204), + [sym_attributed_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_switch_statement] = STATE(204), + [sym_case_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_goto_statement] = STATE(204), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57211,20 +54739,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(454), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57249,133 +54777,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [430] = { - [sym_identifier] = ACTIONS(1300), - [aux_sym_preproc_include_token1] = ACTIONS(1300), - [aux_sym_preproc_def_token1] = ACTIONS(1300), - [aux_sym_preproc_if_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), - [sym_preproc_directive] = ACTIONS(1300), - [anon_sym_LPAREN2] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1300), - [anon_sym_PLUS] = ACTIONS(1300), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1300), - [anon_sym_extern] = ACTIONS(1300), - [anon_sym___attribute__] = ACTIONS(1300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [anon_sym___declspec] = ACTIONS(1300), - [anon_sym___cdecl] = ACTIONS(1300), - [anon_sym___clrcall] = ACTIONS(1300), - [anon_sym___stdcall] = ACTIONS(1300), - [anon_sym___fastcall] = ACTIONS(1300), - [anon_sym___thiscall] = ACTIONS(1300), - [anon_sym___vectorcall] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = ACTIONS(1300), - [anon_sym_static] = ACTIONS(1300), - [anon_sym_auto] = ACTIONS(1300), - [anon_sym_register] = ACTIONS(1300), - [anon_sym_inline] = ACTIONS(1300), - [anon_sym_thread_local] = ACTIONS(1300), - [anon_sym_const] = ACTIONS(1300), - [anon_sym_constexpr] = ACTIONS(1300), - [anon_sym_volatile] = ACTIONS(1300), - [anon_sym_restrict] = ACTIONS(1300), - [anon_sym___restrict__] = ACTIONS(1300), - [anon_sym__Atomic] = ACTIONS(1300), - [anon_sym__Noreturn] = ACTIONS(1300), - [anon_sym_noreturn] = ACTIONS(1300), - [sym_primitive_type] = ACTIONS(1300), - [anon_sym_enum] = ACTIONS(1300), - [anon_sym_struct] = ACTIONS(1300), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_if] = ACTIONS(1300), - [anon_sym_else] = ACTIONS(1300), - [anon_sym_switch] = ACTIONS(1300), - [anon_sym_case] = ACTIONS(1300), - [anon_sym_default] = ACTIONS(1300), - [anon_sym_while] = ACTIONS(1300), - [anon_sym_do] = ACTIONS(1300), - [anon_sym_for] = ACTIONS(1300), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_break] = ACTIONS(1300), - [anon_sym_continue] = ACTIONS(1300), - [anon_sym_goto] = ACTIONS(1300), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1300), - [anon_sym_offsetof] = ACTIONS(1300), - [anon_sym__Generic] = ACTIONS(1300), - [anon_sym_asm] = ACTIONS(1300), - [anon_sym___asm__] = ACTIONS(1300), - [sym_number_literal] = ACTIONS(1302), - [anon_sym_L_SQUOTE] = ACTIONS(1302), - [anon_sym_u_SQUOTE] = ACTIONS(1302), - [anon_sym_U_SQUOTE] = ACTIONS(1302), - [anon_sym_u8_SQUOTE] = ACTIONS(1302), - [anon_sym_SQUOTE] = ACTIONS(1302), - [anon_sym_L_DQUOTE] = ACTIONS(1302), - [anon_sym_u_DQUOTE] = ACTIONS(1302), - [anon_sym_U_DQUOTE] = ACTIONS(1302), - [anon_sym_u8_DQUOTE] = ACTIONS(1302), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [anon_sym_NULL] = ACTIONS(1300), - [anon_sym_nullptr] = ACTIONS(1300), + [402] = { + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token2] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), + [sym_comment] = ACTIONS(3), + }, + [403] = { + [sym_attribute_declaration] = STATE(432), + [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), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), + [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(664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [404] = { + [sym_attribute_declaration] = STATE(404), + [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(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1713), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1737), + [anon_sym_goto] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + }, + [405] = { + [sym_identifier] = ACTIONS(1228), + [aux_sym_preproc_include_token1] = ACTIONS(1228), + [aux_sym_preproc_def_token1] = ACTIONS(1228), + [aux_sym_preproc_if_token1] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1228), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1228), + [sym_preproc_directive] = ACTIONS(1228), + [anon_sym_LPAREN2] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_TILDE] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1228), + [anon_sym_PLUS] = ACTIONS(1228), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_typedef] = ACTIONS(1228), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym___attribute__] = ACTIONS(1228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1230), + [anon_sym___declspec] = ACTIONS(1228), + [anon_sym___cdecl] = ACTIONS(1228), + [anon_sym___clrcall] = ACTIONS(1228), + [anon_sym___stdcall] = ACTIONS(1228), + [anon_sym___fastcall] = ACTIONS(1228), + [anon_sym___thiscall] = ACTIONS(1228), + [anon_sym___vectorcall] = ACTIONS(1228), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_auto] = ACTIONS(1228), + [anon_sym_register] = ACTIONS(1228), + [anon_sym_inline] = ACTIONS(1228), + [anon_sym_thread_local] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_constexpr] = ACTIONS(1228), + [anon_sym_volatile] = ACTIONS(1228), + [anon_sym_restrict] = ACTIONS(1228), + [anon_sym___restrict__] = ACTIONS(1228), + [anon_sym__Atomic] = ACTIONS(1228), + [anon_sym__Noreturn] = ACTIONS(1228), + [anon_sym_noreturn] = ACTIONS(1228), + [sym_primitive_type] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_else] = ACTIONS(1228), + [anon_sym_switch] = ACTIONS(1228), + [anon_sym_case] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_do] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_goto] = ACTIONS(1228), + [anon_sym_DASH_DASH] = ACTIONS(1230), + [anon_sym_PLUS_PLUS] = ACTIONS(1230), + [anon_sym_sizeof] = ACTIONS(1228), + [anon_sym_offsetof] = ACTIONS(1228), + [anon_sym__Generic] = ACTIONS(1228), + [anon_sym_asm] = ACTIONS(1228), + [anon_sym___asm__] = ACTIONS(1228), + [sym_number_literal] = ACTIONS(1230), + [anon_sym_L_SQUOTE] = ACTIONS(1230), + [anon_sym_u_SQUOTE] = ACTIONS(1230), + [anon_sym_U_SQUOTE] = ACTIONS(1230), + [anon_sym_u8_SQUOTE] = ACTIONS(1230), + [anon_sym_SQUOTE] = ACTIONS(1230), + [anon_sym_L_DQUOTE] = ACTIONS(1230), + [anon_sym_u_DQUOTE] = ACTIONS(1230), + [anon_sym_U_DQUOTE] = ACTIONS(1230), + [anon_sym_u8_DQUOTE] = ACTIONS(1230), + [anon_sym_DQUOTE] = ACTIONS(1230), + [sym_true] = ACTIONS(1228), + [sym_false] = ACTIONS(1228), + [anon_sym_NULL] = ACTIONS(1228), + [anon_sym_nullptr] = ACTIONS(1228), [sym_comment] = ACTIONS(3), }, - [431] = { - [sym_attribute_declaration] = STATE(315), - [sym_compound_statement] = STATE(437), - [sym_attributed_statement] = STATE(437), - [sym_labeled_statement] = STATE(437), - [sym_expression_statement] = STATE(437), - [sym_if_statement] = STATE(437), - [sym_switch_statement] = STATE(437), - [sym_case_statement] = STATE(437), - [sym_while_statement] = STATE(437), - [sym_do_statement] = STATE(437), - [sym_for_statement] = STATE(437), - [sym_return_statement] = STATE(437), - [sym_break_statement] = STATE(437), - [sym_continue_statement] = STATE(437), - [sym_goto_statement] = STATE(437), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [406] = { + [sym_attribute_declaration] = STATE(311), + [sym_compound_statement] = STATE(312), + [sym_attributed_statement] = STATE(312), + [sym_labeled_statement] = STATE(312), + [sym_expression_statement] = STATE(312), + [sym_if_statement] = STATE(312), + [sym_switch_statement] = STATE(312), + [sym_case_statement] = STATE(312), + [sym_while_statement] = STATE(312), + [sym_do_statement] = STATE(312), + [sym_for_statement] = STATE(312), + [sym_return_statement] = STATE(312), + [sym_break_statement] = STATE(312), + [sym_continue_statement] = STATE(312), + [sym_goto_statement] = STATE(312), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1553), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(311), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57383,20 +55169,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(454), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_if] = ACTIONS(464), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(468), - [anon_sym_default] = ACTIONS(470), - [anon_sym_while] = ACTIONS(472), - [anon_sym_do] = ACTIONS(474), - [anon_sym_for] = ACTIONS(476), - [anon_sym_return] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_continue] = ACTIONS(482), - [anon_sym_goto] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(55), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57421,47 +55207,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [432] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(115), - [sym_attributed_statement] = STATE(115), - [sym_labeled_statement] = STATE(115), - [sym_expression_statement] = STATE(115), - [sym_if_statement] = STATE(115), - [sym_switch_statement] = STATE(115), - [sym_case_statement] = STATE(115), - [sym_while_statement] = STATE(115), - [sym_do_statement] = STATE(115), - [sym_for_statement] = STATE(115), - [sym_return_statement] = STATE(115), - [sym_break_statement] = STATE(115), - [sym_continue_statement] = STATE(115), - [sym_goto_statement] = STATE(115), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [407] = { + [sym_identifier] = ACTIONS(1232), + [aux_sym_preproc_include_token1] = ACTIONS(1232), + [aux_sym_preproc_def_token1] = ACTIONS(1232), + [aux_sym_preproc_if_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1232), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1232), + [sym_preproc_directive] = ACTIONS(1232), + [anon_sym_LPAREN2] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_typedef] = ACTIONS(1232), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym___attribute__] = ACTIONS(1232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1234), + [anon_sym___declspec] = ACTIONS(1232), + [anon_sym___cdecl] = ACTIONS(1232), + [anon_sym___clrcall] = ACTIONS(1232), + [anon_sym___stdcall] = ACTIONS(1232), + [anon_sym___fastcall] = ACTIONS(1232), + [anon_sym___thiscall] = ACTIONS(1232), + [anon_sym___vectorcall] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_auto] = ACTIONS(1232), + [anon_sym_register] = ACTIONS(1232), + [anon_sym_inline] = ACTIONS(1232), + [anon_sym_thread_local] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_constexpr] = ACTIONS(1232), + [anon_sym_volatile] = ACTIONS(1232), + [anon_sym_restrict] = ACTIONS(1232), + [anon_sym___restrict__] = ACTIONS(1232), + [anon_sym__Atomic] = ACTIONS(1232), + [anon_sym__Noreturn] = ACTIONS(1232), + [anon_sym_noreturn] = ACTIONS(1232), + [sym_primitive_type] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_else] = ACTIONS(1232), + [anon_sym_switch] = ACTIONS(1232), + [anon_sym_case] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_do] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym_DASH_DASH] = ACTIONS(1234), + [anon_sym_PLUS_PLUS] = ACTIONS(1234), + [anon_sym_sizeof] = ACTIONS(1232), + [anon_sym_offsetof] = ACTIONS(1232), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1232), + [anon_sym___asm__] = ACTIONS(1232), + [sym_number_literal] = ACTIONS(1234), + [anon_sym_L_SQUOTE] = ACTIONS(1234), + [anon_sym_u_SQUOTE] = ACTIONS(1234), + [anon_sym_U_SQUOTE] = ACTIONS(1234), + [anon_sym_u8_SQUOTE] = ACTIONS(1234), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_L_DQUOTE] = ACTIONS(1234), + [anon_sym_u_DQUOTE] = ACTIONS(1234), + [anon_sym_U_DQUOTE] = ACTIONS(1234), + [anon_sym_u8_DQUOTE] = ACTIONS(1234), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym_true] = ACTIONS(1232), + [sym_false] = ACTIONS(1232), + [anon_sym_NULL] = ACTIONS(1232), + [anon_sym_nullptr] = ACTIONS(1232), + [sym_comment] = ACTIONS(3), + }, + [408] = { + [sym_attribute_declaration] = STATE(432), + [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(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57469,20 +55341,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(117), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57507,47 +55379,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [433] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(116), - [sym_attributed_statement] = STATE(116), - [sym_labeled_statement] = STATE(116), - [sym_expression_statement] = STATE(116), - [sym_if_statement] = STATE(116), - [sym_switch_statement] = STATE(116), - [sym_case_statement] = STATE(116), - [sym_while_statement] = STATE(116), - [sym_do_statement] = STATE(116), - [sym_for_statement] = STATE(116), - [sym_return_statement] = STATE(116), - [sym_break_statement] = STATE(116), - [sym_continue_statement] = STATE(116), - [sym_goto_statement] = STATE(116), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [409] = { + [sym_identifier] = ACTIONS(1236), + [aux_sym_preproc_include_token1] = ACTIONS(1236), + [aux_sym_preproc_def_token1] = ACTIONS(1236), + [aux_sym_preproc_if_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1236), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1236), + [sym_preproc_directive] = ACTIONS(1236), + [anon_sym_LPAREN2] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_TILDE] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_typedef] = ACTIONS(1236), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym___attribute__] = ACTIONS(1236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1238), + [anon_sym___declspec] = ACTIONS(1236), + [anon_sym___cdecl] = ACTIONS(1236), + [anon_sym___clrcall] = ACTIONS(1236), + [anon_sym___stdcall] = ACTIONS(1236), + [anon_sym___fastcall] = ACTIONS(1236), + [anon_sym___thiscall] = ACTIONS(1236), + [anon_sym___vectorcall] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_auto] = ACTIONS(1236), + [anon_sym_register] = ACTIONS(1236), + [anon_sym_inline] = ACTIONS(1236), + [anon_sym_thread_local] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_constexpr] = ACTIONS(1236), + [anon_sym_volatile] = ACTIONS(1236), + [anon_sym_restrict] = ACTIONS(1236), + [anon_sym___restrict__] = ACTIONS(1236), + [anon_sym__Atomic] = ACTIONS(1236), + [anon_sym__Noreturn] = ACTIONS(1236), + [anon_sym_noreturn] = ACTIONS(1236), + [sym_primitive_type] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_else] = ACTIONS(1236), + [anon_sym_switch] = ACTIONS(1236), + [anon_sym_case] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_do] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_goto] = ACTIONS(1236), + [anon_sym_DASH_DASH] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1238), + [anon_sym_sizeof] = ACTIONS(1236), + [anon_sym_offsetof] = ACTIONS(1236), + [anon_sym__Generic] = ACTIONS(1236), + [anon_sym_asm] = ACTIONS(1236), + [anon_sym___asm__] = ACTIONS(1236), + [sym_number_literal] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1238), + [anon_sym_u_SQUOTE] = ACTIONS(1238), + [anon_sym_U_SQUOTE] = ACTIONS(1238), + [anon_sym_u8_SQUOTE] = ACTIONS(1238), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_L_DQUOTE] = ACTIONS(1238), + [anon_sym_u_DQUOTE] = ACTIONS(1238), + [anon_sym_U_DQUOTE] = ACTIONS(1238), + [anon_sym_u8_DQUOTE] = ACTIONS(1238), + [anon_sym_DQUOTE] = ACTIONS(1238), + [sym_true] = ACTIONS(1236), + [sym_false] = ACTIONS(1236), + [anon_sym_NULL] = ACTIONS(1236), + [anon_sym_nullptr] = ACTIONS(1236), + [sym_comment] = ACTIONS(3), + }, + [410] = { + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1248), + [aux_sym_preproc_def_token1] = ACTIONS(1248), + [aux_sym_preproc_if_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1248), + [sym_preproc_directive] = ACTIONS(1248), + [anon_sym_LPAREN2] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_TILDE] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_typedef] = ACTIONS(1248), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym___attribute__] = ACTIONS(1248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1250), + [anon_sym___declspec] = ACTIONS(1248), + [anon_sym___cdecl] = ACTIONS(1248), + [anon_sym___clrcall] = ACTIONS(1248), + [anon_sym___stdcall] = ACTIONS(1248), + [anon_sym___fastcall] = ACTIONS(1248), + [anon_sym___thiscall] = ACTIONS(1248), + [anon_sym___vectorcall] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_auto] = ACTIONS(1248), + [anon_sym_register] = ACTIONS(1248), + [anon_sym_inline] = ACTIONS(1248), + [anon_sym_thread_local] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_constexpr] = ACTIONS(1248), + [anon_sym_volatile] = ACTIONS(1248), + [anon_sym_restrict] = ACTIONS(1248), + [anon_sym___restrict__] = ACTIONS(1248), + [anon_sym__Atomic] = ACTIONS(1248), + [anon_sym__Noreturn] = ACTIONS(1248), + [anon_sym_noreturn] = ACTIONS(1248), + [sym_primitive_type] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_else] = ACTIONS(1248), + [anon_sym_switch] = ACTIONS(1248), + [anon_sym_case] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_do] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_goto] = ACTIONS(1248), + [anon_sym_DASH_DASH] = ACTIONS(1250), + [anon_sym_PLUS_PLUS] = ACTIONS(1250), + [anon_sym_sizeof] = ACTIONS(1248), + [anon_sym_offsetof] = ACTIONS(1248), + [anon_sym__Generic] = ACTIONS(1248), + [anon_sym_asm] = ACTIONS(1248), + [anon_sym___asm__] = ACTIONS(1248), + [sym_number_literal] = ACTIONS(1250), + [anon_sym_L_SQUOTE] = ACTIONS(1250), + [anon_sym_u_SQUOTE] = ACTIONS(1250), + [anon_sym_U_SQUOTE] = ACTIONS(1250), + [anon_sym_u8_SQUOTE] = ACTIONS(1250), + [anon_sym_SQUOTE] = ACTIONS(1250), + [anon_sym_L_DQUOTE] = ACTIONS(1250), + [anon_sym_u_DQUOTE] = ACTIONS(1250), + [anon_sym_U_DQUOTE] = ACTIONS(1250), + [anon_sym_u8_DQUOTE] = ACTIONS(1250), + [anon_sym_DQUOTE] = ACTIONS(1250), + [sym_true] = ACTIONS(1248), + [sym_false] = ACTIONS(1248), + [anon_sym_NULL] = ACTIONS(1248), + [anon_sym_nullptr] = ACTIONS(1248), + [sym_comment] = ACTIONS(3), + }, + [411] = { + [sym_attribute_declaration] = STATE(432), + [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(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57555,20 +55599,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(117), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57593,47 +55637,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [434] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(117), - [sym_attributed_statement] = STATE(117), - [sym_labeled_statement] = STATE(117), - [sym_expression_statement] = STATE(117), - [sym_if_statement] = STATE(117), - [sym_switch_statement] = STATE(117), - [sym_case_statement] = STATE(117), - [sym_while_statement] = STATE(117), - [sym_do_statement] = STATE(117), - [sym_for_statement] = STATE(117), - [sym_return_statement] = STATE(117), - [sym_break_statement] = STATE(117), - [sym_continue_statement] = STATE(117), - [sym_goto_statement] = STATE(117), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [412] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(225), + [sym_attributed_statement] = STATE(225), + [sym_labeled_statement] = STATE(225), + [sym_expression_statement] = STATE(225), + [sym_if_statement] = STATE(225), + [sym_switch_statement] = STATE(225), + [sym_case_statement] = STATE(225), + [sym_while_statement] = STATE(225), + [sym_do_statement] = STATE(225), + [sym_for_statement] = STATE(225), + [sym_return_statement] = STATE(225), + [sym_break_statement] = STATE(225), + [sym_continue_statement] = STATE(225), + [sym_goto_statement] = STATE(225), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57641,20 +55685,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(117), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57679,47 +55723,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [435] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(118), - [sym_attributed_statement] = STATE(118), - [sym_labeled_statement] = STATE(118), - [sym_expression_statement] = STATE(118), - [sym_if_statement] = STATE(118), - [sym_switch_statement] = STATE(118), - [sym_case_statement] = STATE(118), - [sym_while_statement] = STATE(118), - [sym_do_statement] = STATE(118), - [sym_for_statement] = STATE(118), - [sym_return_statement] = STATE(118), - [sym_break_statement] = STATE(118), - [sym_continue_statement] = STATE(118), - [sym_goto_statement] = STATE(118), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [413] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(451), + [sym_attributed_statement] = STATE(451), + [sym_labeled_statement] = STATE(451), + [sym_expression_statement] = STATE(451), + [sym_if_statement] = STATE(451), + [sym_switch_statement] = STATE(451), + [sym_case_statement] = STATE(451), + [sym_while_statement] = STATE(451), + [sym_do_statement] = STATE(451), + [sym_for_statement] = STATE(451), + [sym_return_statement] = STATE(451), + [sym_break_statement] = STATE(451), + [sym_continue_statement] = STATE(451), + [sym_goto_statement] = STATE(451), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57727,20 +55771,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(117), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57765,47 +55809,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_attribute_declaration] = STATE(333), - [sym_compound_statement] = STATE(119), - [sym_attributed_statement] = STATE(119), - [sym_labeled_statement] = STATE(119), - [sym_expression_statement] = STATE(119), - [sym_if_statement] = STATE(119), - [sym_switch_statement] = STATE(119), - [sym_case_statement] = STATE(119), - [sym_while_statement] = STATE(119), - [sym_do_statement] = STATE(119), - [sym_for_statement] = STATE(119), - [sym_return_statement] = STATE(119), - [sym_break_statement] = STATE(119), - [sym_continue_statement] = STATE(119), - [sym_goto_statement] = STATE(119), - [sym__expression] = STATE(1121), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1966), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [414] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(450), + [sym_attributed_statement] = STATE(450), + [sym_labeled_statement] = STATE(450), + [sym_expression_statement] = STATE(450), + [sym_if_statement] = STATE(450), + [sym_switch_statement] = STATE(450), + [sym_case_statement] = STATE(450), + [sym_while_statement] = STATE(450), + [sym_do_statement] = STATE(450), + [sym_for_statement] = STATE(450), + [sym_return_statement] = STATE(450), + [sym_break_statement] = STATE(450), + [sym_continue_statement] = STATE(450), + [sym_goto_statement] = STATE(450), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(1639), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57813,20 +55857,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(117), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_if] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(131), - [anon_sym_while] = ACTIONS(133), - [anon_sym_do] = ACTIONS(135), - [anon_sym_for] = ACTIONS(137), - [anon_sym_return] = ACTIONS(139), - [anon_sym_break] = ACTIONS(141), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_goto] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57851,133 +55895,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [437] = { - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [aux_sym_preproc_if_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), - [sym_preproc_directive] = ACTIONS(1304), - [anon_sym_LPAREN2] = ACTIONS(1306), - [anon_sym_BANG] = ACTIONS(1306), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1306), - [anon_sym_AMP] = ACTIONS(1306), - [anon_sym_SEMI] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), - [anon_sym___declspec] = ACTIONS(1304), - [anon_sym___cdecl] = ACTIONS(1304), - [anon_sym___clrcall] = ACTIONS(1304), - [anon_sym___stdcall] = ACTIONS(1304), - [anon_sym___fastcall] = ACTIONS(1304), - [anon_sym___thiscall] = ACTIONS(1304), - [anon_sym___vectorcall] = ACTIONS(1304), - [anon_sym_LBRACE] = ACTIONS(1306), - [anon_sym_RBRACE] = ACTIONS(1306), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1306), - [anon_sym_PLUS_PLUS] = ACTIONS(1306), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [sym_number_literal] = ACTIONS(1306), - [anon_sym_L_SQUOTE] = ACTIONS(1306), - [anon_sym_u_SQUOTE] = ACTIONS(1306), - [anon_sym_U_SQUOTE] = ACTIONS(1306), - [anon_sym_u8_SQUOTE] = ACTIONS(1306), - [anon_sym_SQUOTE] = ACTIONS(1306), - [anon_sym_L_DQUOTE] = ACTIONS(1306), - [anon_sym_u_DQUOTE] = ACTIONS(1306), - [anon_sym_U_DQUOTE] = ACTIONS(1306), - [anon_sym_u8_DQUOTE] = ACTIONS(1306), - [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - }, - [438] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(528), - [sym_attributed_statement] = STATE(528), - [sym_labeled_statement] = STATE(528), - [sym_expression_statement] = STATE(528), - [sym_if_statement] = STATE(528), - [sym_switch_statement] = STATE(528), - [sym_case_statement] = STATE(528), - [sym_while_statement] = STATE(528), - [sym_do_statement] = STATE(528), - [sym_for_statement] = STATE(528), - [sym_return_statement] = STATE(528), - [sym_break_statement] = STATE(528), - [sym_continue_statement] = STATE(528), - [sym_goto_statement] = STATE(528), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [415] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57985,20 +55943,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(454), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -58023,47 +55981,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [439] = { - [sym_attribute_declaration] = STATE(321), - [sym_compound_statement] = STATE(323), - [sym_attributed_statement] = STATE(323), - [sym_labeled_statement] = STATE(323), - [sym_expression_statement] = STATE(323), - [sym_if_statement] = STATE(323), - [sym_switch_statement] = STATE(323), - [sym_case_statement] = STATE(323), - [sym_while_statement] = STATE(323), - [sym_do_statement] = STATE(323), - [sym_for_statement] = STATE(323), - [sym_return_statement] = STATE(323), - [sym_break_statement] = STATE(323), - [sym_continue_statement] = STATE(323), - [sym_goto_statement] = STATE(323), - [sym__expression] = STATE(1086), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1842), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [416] = { + [sym_attribute_declaration] = STATE(406), + [sym_compound_statement] = STATE(289), + [sym_attributed_statement] = STATE(289), + [sym_labeled_statement] = STATE(289), + [sym_expression_statement] = STATE(289), + [sym_if_statement] = STATE(289), + [sym_switch_statement] = STATE(289), + [sym_case_statement] = STATE(289), + [sym_while_statement] = STATE(289), + [sym_do_statement] = STATE(289), + [sym_for_statement] = STATE(289), + [sym_return_statement] = STATE(289), + [sym_break_statement] = STATE(289), + [sym_continue_statement] = STATE(289), + [sym_goto_statement] = STATE(289), + [sym__expression] = STATE(1060), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(321), - [sym_identifier] = ACTIONS(1545), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(406), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58071,7 +56029,7 @@ 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(1005), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), [anon_sym_if] = ACTIONS(55), @@ -58109,47 +56067,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [440] = { - [sym_attribute_declaration] = STATE(272), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [417] = { + [ts_builtin_sym_end] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1320), + [aux_sym_preproc_include_token1] = ACTIONS(1320), + [aux_sym_preproc_def_token1] = ACTIONS(1320), + [aux_sym_preproc_if_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), + [sym_preproc_directive] = ACTIONS(1320), + [anon_sym_LPAREN2] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_TILDE] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1320), + [anon_sym___attribute__] = ACTIONS(1320), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1322), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___cdecl] = ACTIONS(1320), + [anon_sym___clrcall] = ACTIONS(1320), + [anon_sym___stdcall] = ACTIONS(1320), + [anon_sym___fastcall] = ACTIONS(1320), + [anon_sym___thiscall] = ACTIONS(1320), + [anon_sym___vectorcall] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1322), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = ACTIONS(1320), + [anon_sym_static] = ACTIONS(1320), + [anon_sym_auto] = ACTIONS(1320), + [anon_sym_register] = ACTIONS(1320), + [anon_sym_inline] = ACTIONS(1320), + [anon_sym_thread_local] = ACTIONS(1320), + [anon_sym_const] = ACTIONS(1320), + [anon_sym_constexpr] = ACTIONS(1320), + [anon_sym_volatile] = ACTIONS(1320), + [anon_sym_restrict] = ACTIONS(1320), + [anon_sym___restrict__] = ACTIONS(1320), + [anon_sym__Atomic] = ACTIONS(1320), + [anon_sym__Noreturn] = ACTIONS(1320), + [anon_sym_noreturn] = ACTIONS(1320), + [sym_primitive_type] = ACTIONS(1320), + [anon_sym_enum] = ACTIONS(1320), + [anon_sym_struct] = ACTIONS(1320), + [anon_sym_union] = ACTIONS(1320), + [anon_sym_if] = ACTIONS(1320), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_switch] = ACTIONS(1320), + [anon_sym_case] = ACTIONS(1320), + [anon_sym_default] = ACTIONS(1320), + [anon_sym_while] = ACTIONS(1320), + [anon_sym_do] = ACTIONS(1320), + [anon_sym_for] = ACTIONS(1320), + [anon_sym_return] = ACTIONS(1320), + [anon_sym_break] = ACTIONS(1320), + [anon_sym_continue] = ACTIONS(1320), + [anon_sym_goto] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1322), + [anon_sym_sizeof] = ACTIONS(1320), + [anon_sym_offsetof] = ACTIONS(1320), + [anon_sym__Generic] = ACTIONS(1320), + [anon_sym_asm] = ACTIONS(1320), + [anon_sym___asm__] = ACTIONS(1320), + [sym_number_literal] = ACTIONS(1322), + [anon_sym_L_SQUOTE] = ACTIONS(1322), + [anon_sym_u_SQUOTE] = ACTIONS(1322), + [anon_sym_U_SQUOTE] = ACTIONS(1322), + [anon_sym_u8_SQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_L_DQUOTE] = ACTIONS(1322), + [anon_sym_u_DQUOTE] = ACTIONS(1322), + [anon_sym_U_DQUOTE] = ACTIONS(1322), + [anon_sym_u8_DQUOTE] = ACTIONS(1322), + [anon_sym_DQUOTE] = ACTIONS(1322), + [sym_true] = ACTIONS(1320), + [sym_false] = ACTIONS(1320), + [anon_sym_NULL] = ACTIONS(1320), + [anon_sym_nullptr] = ACTIONS(1320), + [sym_comment] = ACTIONS(3), + }, + [418] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(402), + [sym_attributed_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_expression_statement] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_case_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_goto_statement] = STATE(402), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58157,20 +56201,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(454), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -58195,47 +56239,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_attribute_declaration] = STATE(272), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [419] = { + [sym_identifier] = ACTIONS(1256), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1256), + [aux_sym_preproc_if_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1256), + [sym_preproc_directive] = ACTIONS(1256), + [anon_sym_LPAREN2] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(1258), + [anon_sym_TILDE] = ACTIONS(1258), + [anon_sym_DASH] = ACTIONS(1256), + [anon_sym_PLUS] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1258), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1256), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym___attribute__] = ACTIONS(1256), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1258), + [anon_sym___declspec] = ACTIONS(1256), + [anon_sym___cdecl] = ACTIONS(1256), + [anon_sym___clrcall] = ACTIONS(1256), + [anon_sym___stdcall] = ACTIONS(1256), + [anon_sym___fastcall] = ACTIONS(1256), + [anon_sym___thiscall] = ACTIONS(1256), + [anon_sym___vectorcall] = ACTIONS(1256), + [anon_sym_LBRACE] = ACTIONS(1258), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_auto] = ACTIONS(1256), + [anon_sym_register] = ACTIONS(1256), + [anon_sym_inline] = ACTIONS(1256), + [anon_sym_thread_local] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_constexpr] = ACTIONS(1256), + [anon_sym_volatile] = ACTIONS(1256), + [anon_sym_restrict] = ACTIONS(1256), + [anon_sym___restrict__] = ACTIONS(1256), + [anon_sym__Atomic] = ACTIONS(1256), + [anon_sym__Noreturn] = ACTIONS(1256), + [anon_sym_noreturn] = ACTIONS(1256), + [sym_primitive_type] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_else] = ACTIONS(1256), + [anon_sym_switch] = ACTIONS(1256), + [anon_sym_case] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_do] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_goto] = ACTIONS(1256), + [anon_sym_DASH_DASH] = ACTIONS(1258), + [anon_sym_PLUS_PLUS] = ACTIONS(1258), + [anon_sym_sizeof] = ACTIONS(1256), + [anon_sym_offsetof] = ACTIONS(1256), + [anon_sym__Generic] = ACTIONS(1256), + [anon_sym_asm] = ACTIONS(1256), + [anon_sym___asm__] = ACTIONS(1256), + [sym_number_literal] = ACTIONS(1258), + [anon_sym_L_SQUOTE] = ACTIONS(1258), + [anon_sym_u_SQUOTE] = ACTIONS(1258), + [anon_sym_U_SQUOTE] = ACTIONS(1258), + [anon_sym_u8_SQUOTE] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_L_DQUOTE] = ACTIONS(1258), + [anon_sym_u_DQUOTE] = ACTIONS(1258), + [anon_sym_U_DQUOTE] = ACTIONS(1258), + [anon_sym_u8_DQUOTE] = ACTIONS(1258), + [anon_sym_DQUOTE] = ACTIONS(1258), + [sym_true] = ACTIONS(1256), + [sym_false] = ACTIONS(1256), + [anon_sym_NULL] = ACTIONS(1256), + [anon_sym_nullptr] = ACTIONS(1256), + [sym_comment] = ACTIONS(3), + }, + [420] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(260), + [sym_attributed_statement] = STATE(260), + [sym_labeled_statement] = STATE(260), + [sym_expression_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_switch_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_do_statement] = STATE(260), + [sym_for_statement] = STATE(260), + [sym_return_statement] = STATE(260), + [sym_break_statement] = STATE(260), + [sym_continue_statement] = STATE(260), + [sym_goto_statement] = STATE(260), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58243,20 +56373,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(454), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -58281,47 +56411,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [442] = { - [sym_attribute_declaration] = STATE(272), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [421] = { + [sym_attribute_declaration] = STATE(432), + [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(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58329,20 +56459,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(454), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -58367,133 +56497,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [443] = { - [sym_attribute_declaration] = STATE(443), - [sym_compound_statement] = STATE(323), - [sym_attributed_statement] = STATE(323), - [sym_labeled_statement] = STATE(323), - [sym_expression_statement] = STATE(323), - [sym_if_statement] = STATE(323), - [sym_switch_statement] = STATE(323), - [sym_case_statement] = STATE(323), - [sym_while_statement] = STATE(323), - [sym_do_statement] = STATE(323), - [sym_for_statement] = STATE(323), - [sym_return_statement] = STATE(323), - [sym_break_statement] = STATE(323), - [sym_continue_statement] = STATE(323), - [sym_goto_statement] = STATE(323), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(443), - [sym_identifier] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1459), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_switch] = ACTIONS(1609), - [anon_sym_case] = ACTIONS(1731), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1740), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1630), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_goto] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_sizeof] = ACTIONS(1516), - [anon_sym_offsetof] = ACTIONS(1519), - [anon_sym__Generic] = ACTIONS(1522), - [anon_sym_asm] = ACTIONS(1525), - [anon_sym___asm__] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1528), - [anon_sym_L_SQUOTE] = ACTIONS(1531), - [anon_sym_u_SQUOTE] = ACTIONS(1531), - [anon_sym_U_SQUOTE] = ACTIONS(1531), - [anon_sym_u8_SQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_L_DQUOTE] = ACTIONS(1534), - [anon_sym_u_DQUOTE] = ACTIONS(1534), - [anon_sym_U_DQUOTE] = ACTIONS(1534), - [anon_sym_u8_DQUOTE] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [anon_sym_NULL] = ACTIONS(1540), - [anon_sym_nullptr] = ACTIONS(1540), - [sym_comment] = ACTIONS(3), - }, - [444] = { - [sym_attribute_declaration] = STATE(272), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [422] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(268), + [sym_attributed_statement] = STATE(268), + [sym_labeled_statement] = STATE(268), + [sym_expression_statement] = STATE(268), + [sym_if_statement] = STATE(268), + [sym_switch_statement] = STATE(268), + [sym_case_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_return_statement] = STATE(268), + [sym_break_statement] = STATE(268), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(268), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58501,20 +56545,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(454), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -58539,47 +56583,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [445] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(239), - [sym_attributed_statement] = STATE(239), - [sym_labeled_statement] = STATE(239), - [sym_expression_statement] = STATE(239), - [sym_if_statement] = STATE(239), - [sym_switch_statement] = STATE(239), - [sym_case_statement] = STATE(239), - [sym_while_statement] = STATE(239), - [sym_do_statement] = STATE(239), - [sym_for_statement] = STATE(239), - [sym_return_statement] = STATE(239), - [sym_break_statement] = STATE(239), - [sym_continue_statement] = STATE(239), - [sym_goto_statement] = STATE(239), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [423] = { + [sym_attribute_declaration] = STATE(432), + [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(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58587,20 +56631,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(454), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -58625,47 +56669,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [446] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [424] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(279), + [sym_attributed_statement] = STATE(279), + [sym_labeled_statement] = STATE(279), + [sym_expression_statement] = STATE(279), + [sym_if_statement] = STATE(279), + [sym_switch_statement] = STATE(279), + [sym_case_statement] = STATE(279), + [sym_while_statement] = STATE(279), + [sym_do_statement] = STATE(279), + [sym_for_statement] = STATE(279), + [sym_return_statement] = STATE(279), + [sym_break_statement] = STATE(279), + [sym_continue_statement] = STATE(279), + [sym_goto_statement] = STATE(279), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58673,20 +56717,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(454), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -58711,47 +56755,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [447] = { - [sym_attribute_declaration] = STATE(272), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [425] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(280), + [sym_attributed_statement] = STATE(280), + [sym_labeled_statement] = STATE(280), + [sym_expression_statement] = STATE(280), + [sym_if_statement] = STATE(280), + [sym_switch_statement] = STATE(280), + [sym_case_statement] = STATE(280), + [sym_while_statement] = STATE(280), + [sym_do_statement] = STATE(280), + [sym_for_statement] = STATE(280), + [sym_return_statement] = STATE(280), + [sym_break_statement] = STATE(280), + [sym_continue_statement] = STATE(280), + [sym_goto_statement] = STATE(280), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), + [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(664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [426] = { + [sym_attribute_declaration] = STATE(432), + [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(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58759,20 +56889,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(454), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -58797,133 +56927,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [448] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [449] = { - [sym_attribute_declaration] = STATE(272), - [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(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [427] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(282), + [sym_attributed_statement] = STATE(282), + [sym_labeled_statement] = STATE(282), + [sym_expression_statement] = STATE(282), + [sym_if_statement] = STATE(282), + [sym_switch_statement] = STATE(282), + [sym_case_statement] = STATE(282), + [sym_while_statement] = STATE(282), + [sym_do_statement] = STATE(282), + [sym_for_statement] = STATE(282), + [sym_return_statement] = STATE(282), + [sym_break_statement] = STATE(282), + [sym_continue_statement] = STATE(282), + [sym_goto_statement] = STATE(282), + [sym__expression] = STATE(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58931,20 +56975,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(454), + [anon_sym_SEMI] = ACTIONS(664), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -58969,47 +57013,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [450] = { - [sym_attribute_declaration] = STATE(272), - [sym_compound_statement] = STATE(257), - [sym_attributed_statement] = STATE(257), - [sym_labeled_statement] = STATE(257), - [sym_expression_statement] = STATE(257), - [sym_if_statement] = STATE(257), - [sym_switch_statement] = STATE(257), - [sym_case_statement] = STATE(257), - [sym_while_statement] = STATE(257), - [sym_do_statement] = STATE(257), - [sym_for_statement] = STATE(257), - [sym_return_statement] = STATE(257), - [sym_break_statement] = STATE(257), - [sym_continue_statement] = STATE(257), - [sym_goto_statement] = STATE(257), - [sym__expression] = STATE(1053), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1946), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [428] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(447), + [sym_attributed_statement] = STATE(447), + [sym_labeled_statement] = STATE(447), + [sym_expression_statement] = STATE(447), + [sym_if_statement] = STATE(447), + [sym_switch_statement] = STATE(447), + [sym_case_statement] = STATE(447), + [sym_while_statement] = STATE(447), + [sym_do_statement] = STATE(447), + [sym_for_statement] = STATE(447), + [sym_return_statement] = STATE(447), + [sym_break_statement] = STATE(447), + [sym_continue_statement] = STATE(447), + [sym_goto_statement] = STATE(447), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [aux_sym_attributed_declarator_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1547), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59019,18 +57063,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1549), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1140), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1142), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -59052,2311 +57096,1992 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(149), [sym_false] = ACTIONS(149), [anon_sym_NULL] = ACTIONS(95), - [anon_sym_nullptr] = ACTIONS(95), - [sym_comment] = ACTIONS(3), - }, - [451] = { - [ts_builtin_sym_end] = ACTIONS(1346), - [sym_identifier] = ACTIONS(1344), - [aux_sym_preproc_include_token1] = ACTIONS(1344), - [aux_sym_preproc_def_token1] = ACTIONS(1344), - [aux_sym_preproc_if_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1344), - [sym_preproc_directive] = ACTIONS(1344), - [anon_sym_LPAREN2] = ACTIONS(1346), - [anon_sym_BANG] = ACTIONS(1346), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1344), - [anon_sym_STAR] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1346), - [anon_sym_SEMI] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1344), - [anon_sym_extern] = ACTIONS(1344), - [anon_sym___attribute__] = ACTIONS(1344), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1346), - [anon_sym___declspec] = ACTIONS(1344), - [anon_sym___cdecl] = ACTIONS(1344), - [anon_sym___clrcall] = ACTIONS(1344), - [anon_sym___stdcall] = ACTIONS(1344), - [anon_sym___fastcall] = ACTIONS(1344), - [anon_sym___thiscall] = ACTIONS(1344), - [anon_sym___vectorcall] = ACTIONS(1344), - [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = ACTIONS(1344), - [anon_sym_static] = ACTIONS(1344), - [anon_sym_auto] = ACTIONS(1344), - [anon_sym_register] = ACTIONS(1344), - [anon_sym_inline] = ACTIONS(1344), - [anon_sym_thread_local] = ACTIONS(1344), - [anon_sym_const] = ACTIONS(1344), - [anon_sym_constexpr] = ACTIONS(1344), - [anon_sym_volatile] = ACTIONS(1344), - [anon_sym_restrict] = ACTIONS(1344), - [anon_sym___restrict__] = ACTIONS(1344), - [anon_sym__Atomic] = ACTIONS(1344), - [anon_sym__Noreturn] = ACTIONS(1344), - [anon_sym_noreturn] = ACTIONS(1344), - [sym_primitive_type] = ACTIONS(1344), - [anon_sym_enum] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1344), - [anon_sym_union] = ACTIONS(1344), - [anon_sym_if] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [anon_sym_switch] = ACTIONS(1344), - [anon_sym_case] = ACTIONS(1344), - [anon_sym_default] = ACTIONS(1344), - [anon_sym_while] = ACTIONS(1344), - [anon_sym_do] = ACTIONS(1344), - [anon_sym_for] = ACTIONS(1344), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1344), - [anon_sym_continue] = ACTIONS(1344), - [anon_sym_goto] = ACTIONS(1344), - [anon_sym_DASH_DASH] = ACTIONS(1346), - [anon_sym_PLUS_PLUS] = ACTIONS(1346), - [anon_sym_sizeof] = ACTIONS(1344), - [anon_sym_offsetof] = ACTIONS(1344), - [anon_sym__Generic] = ACTIONS(1344), - [anon_sym_asm] = ACTIONS(1344), - [anon_sym___asm__] = ACTIONS(1344), - [sym_number_literal] = ACTIONS(1346), - [anon_sym_L_SQUOTE] = ACTIONS(1346), - [anon_sym_u_SQUOTE] = ACTIONS(1346), - [anon_sym_U_SQUOTE] = ACTIONS(1346), - [anon_sym_u8_SQUOTE] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1346), - [anon_sym_L_DQUOTE] = ACTIONS(1346), - [anon_sym_u_DQUOTE] = ACTIONS(1346), - [anon_sym_U_DQUOTE] = ACTIONS(1346), - [anon_sym_u8_DQUOTE] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_true] = ACTIONS(1344), - [sym_false] = ACTIONS(1344), - [anon_sym_NULL] = ACTIONS(1344), - [anon_sym_nullptr] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - }, - [452] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - }, - [453] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - }, - [454] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token2] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - }, - [455] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [456] = { - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token2] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [429] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(446), + [sym_attributed_statement] = STATE(446), + [sym_labeled_statement] = STATE(446), + [sym_expression_statement] = STATE(446), + [sym_if_statement] = STATE(446), + [sym_switch_statement] = STATE(446), + [sym_case_statement] = STATE(446), + [sym_while_statement] = STATE(446), + [sym_do_statement] = STATE(446), + [sym_for_statement] = STATE(446), + [sym_return_statement] = STATE(446), + [sym_break_statement] = STATE(446), + [sym_continue_statement] = STATE(446), + [sym_goto_statement] = STATE(446), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [457] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [430] = { + [sym_attribute_declaration] = STATE(374), + [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(1093), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1746), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(1657), + [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(183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_if] = ACTIONS(191), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_default] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_return] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_continue] = ACTIONS(209), + [anon_sym_goto] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [458] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [431] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(1831), + [sym_attributed_statement] = STATE(1831), + [sym_labeled_statement] = STATE(1831), + [sym_expression_statement] = STATE(1831), + [sym_if_statement] = STATE(1831), + [sym_switch_statement] = STATE(1831), + [sym_case_statement] = STATE(1831), + [sym_while_statement] = STATE(1831), + [sym_do_statement] = STATE(1831), + [sym_for_statement] = STATE(1831), + [sym_return_statement] = STATE(1831), + [sym_break_statement] = STATE(1831), + [sym_continue_statement] = STATE(1831), + [sym_goto_statement] = STATE(1831), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(69), + [anon_sym_break] = ACTIONS(71), + [anon_sym_continue] = ACTIONS(73), + [anon_sym_goto] = ACTIONS(75), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [459] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym_offsetof] = ACTIONS(1418), - [anon_sym__Generic] = ACTIONS(1418), - [anon_sym_asm] = ACTIONS(1418), - [anon_sym___asm__] = ACTIONS(1418), - [sym_number_literal] = ACTIONS(1420), - [anon_sym_L_SQUOTE] = ACTIONS(1420), - [anon_sym_u_SQUOTE] = ACTIONS(1420), - [anon_sym_U_SQUOTE] = ACTIONS(1420), - [anon_sym_u8_SQUOTE] = ACTIONS(1420), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_L_DQUOTE] = ACTIONS(1420), - [anon_sym_u_DQUOTE] = ACTIONS(1420), - [anon_sym_U_DQUOTE] = ACTIONS(1420), - [anon_sym_u8_DQUOTE] = ACTIONS(1420), - [anon_sym_DQUOTE] = ACTIONS(1420), - [sym_true] = ACTIONS(1418), - [sym_false] = ACTIONS(1418), - [anon_sym_NULL] = ACTIONS(1418), - [anon_sym_nullptr] = ACTIONS(1418), + [432] = { + [sym_attribute_declaration] = STATE(404), + [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(1119), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1963), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1456), + [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(664), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(670), + [anon_sym_if] = ACTIONS(672), + [anon_sym_switch] = ACTIONS(674), + [anon_sym_case] = ACTIONS(676), + [anon_sym_default] = ACTIONS(678), + [anon_sym_while] = ACTIONS(680), + [anon_sym_do] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_return] = ACTIONS(686), + [anon_sym_break] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(692), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [460] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [433] = { + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, - [461] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), + [434] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(444), + [sym_attributed_statement] = STATE(444), + [sym_labeled_statement] = STATE(444), + [sym_expression_statement] = STATE(444), + [sym_if_statement] = STATE(444), + [sym_switch_statement] = STATE(444), + [sym_case_statement] = STATE(444), + [sym_while_statement] = STATE(444), + [sym_do_statement] = STATE(444), + [sym_for_statement] = STATE(444), + [sym_return_statement] = STATE(444), + [sym_break_statement] = STATE(444), + [sym_continue_statement] = STATE(444), + [sym_goto_statement] = STATE(444), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [462] = { - [sym_identifier] = ACTIONS(1422), - [aux_sym_preproc_include_token1] = ACTIONS(1422), - [aux_sym_preproc_def_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token1] = ACTIONS(1422), - [aux_sym_preproc_if_token2] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), - [sym_preproc_directive] = ACTIONS(1422), - [anon_sym_LPAREN2] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym___attribute__] = ACTIONS(1422), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), - [anon_sym___declspec] = ACTIONS(1422), - [anon_sym___cdecl] = ACTIONS(1422), - [anon_sym___clrcall] = ACTIONS(1422), - [anon_sym___stdcall] = ACTIONS(1422), - [anon_sym___fastcall] = ACTIONS(1422), - [anon_sym___thiscall] = ACTIONS(1422), - [anon_sym___vectorcall] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_auto] = ACTIONS(1422), - [anon_sym_register] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_thread_local] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_constexpr] = ACTIONS(1422), - [anon_sym_volatile] = ACTIONS(1422), - [anon_sym_restrict] = ACTIONS(1422), - [anon_sym___restrict__] = ACTIONS(1422), - [anon_sym__Atomic] = ACTIONS(1422), - [anon_sym__Noreturn] = ACTIONS(1422), - [anon_sym_noreturn] = ACTIONS(1422), - [sym_primitive_type] = ACTIONS(1422), - [anon_sym_enum] = ACTIONS(1422), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_union] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_do] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_goto] = ACTIONS(1422), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_sizeof] = ACTIONS(1422), - [anon_sym_offsetof] = ACTIONS(1422), - [anon_sym__Generic] = ACTIONS(1422), - [anon_sym_asm] = ACTIONS(1422), - [anon_sym___asm__] = ACTIONS(1422), - [sym_number_literal] = ACTIONS(1424), - [anon_sym_L_SQUOTE] = ACTIONS(1424), - [anon_sym_u_SQUOTE] = ACTIONS(1424), - [anon_sym_U_SQUOTE] = ACTIONS(1424), - [anon_sym_u8_SQUOTE] = ACTIONS(1424), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_L_DQUOTE] = ACTIONS(1424), - [anon_sym_u_DQUOTE] = ACTIONS(1424), - [anon_sym_U_DQUOTE] = ACTIONS(1424), - [anon_sym_u8_DQUOTE] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1424), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [anon_sym_NULL] = ACTIONS(1422), - [anon_sym_nullptr] = ACTIONS(1422), + [435] = { + [sym_identifier] = ACTIONS(1264), + [aux_sym_preproc_include_token1] = ACTIONS(1264), + [aux_sym_preproc_def_token1] = ACTIONS(1264), + [aux_sym_preproc_if_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1264), + [sym_preproc_directive] = ACTIONS(1264), + [anon_sym_LPAREN2] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_TILDE] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1264), + [anon_sym_PLUS] = ACTIONS(1264), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1264), + [anon_sym_extern] = ACTIONS(1264), + [anon_sym___attribute__] = ACTIONS(1264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1266), + [anon_sym___declspec] = ACTIONS(1264), + [anon_sym___cdecl] = ACTIONS(1264), + [anon_sym___clrcall] = ACTIONS(1264), + [anon_sym___stdcall] = ACTIONS(1264), + [anon_sym___fastcall] = ACTIONS(1264), + [anon_sym___thiscall] = ACTIONS(1264), + [anon_sym___vectorcall] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_auto] = ACTIONS(1264), + [anon_sym_register] = ACTIONS(1264), + [anon_sym_inline] = ACTIONS(1264), + [anon_sym_thread_local] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_constexpr] = ACTIONS(1264), + [anon_sym_volatile] = ACTIONS(1264), + [anon_sym_restrict] = ACTIONS(1264), + [anon_sym___restrict__] = ACTIONS(1264), + [anon_sym__Atomic] = ACTIONS(1264), + [anon_sym__Noreturn] = ACTIONS(1264), + [anon_sym_noreturn] = ACTIONS(1264), + [sym_primitive_type] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_else] = ACTIONS(1264), + [anon_sym_switch] = ACTIONS(1264), + [anon_sym_case] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [anon_sym_do] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_goto] = ACTIONS(1264), + [anon_sym_DASH_DASH] = ACTIONS(1266), + [anon_sym_PLUS_PLUS] = ACTIONS(1266), + [anon_sym_sizeof] = ACTIONS(1264), + [anon_sym_offsetof] = ACTIONS(1264), + [anon_sym__Generic] = ACTIONS(1264), + [anon_sym_asm] = ACTIONS(1264), + [anon_sym___asm__] = ACTIONS(1264), + [sym_number_literal] = ACTIONS(1266), + [anon_sym_L_SQUOTE] = ACTIONS(1266), + [anon_sym_u_SQUOTE] = ACTIONS(1266), + [anon_sym_U_SQUOTE] = ACTIONS(1266), + [anon_sym_u8_SQUOTE] = ACTIONS(1266), + [anon_sym_SQUOTE] = ACTIONS(1266), + [anon_sym_L_DQUOTE] = ACTIONS(1266), + [anon_sym_u_DQUOTE] = ACTIONS(1266), + [anon_sym_U_DQUOTE] = ACTIONS(1266), + [anon_sym_u8_DQUOTE] = ACTIONS(1266), + [anon_sym_DQUOTE] = ACTIONS(1266), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [anon_sym_NULL] = ACTIONS(1264), + [anon_sym_nullptr] = ACTIONS(1264), [sym_comment] = ACTIONS(3), }, - [463] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token2] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [436] = { + [sym_identifier] = ACTIONS(1308), + [aux_sym_preproc_include_token1] = ACTIONS(1308), + [aux_sym_preproc_def_token1] = ACTIONS(1308), + [aux_sym_preproc_if_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1308), + [sym_preproc_directive] = ACTIONS(1308), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PLUS] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [anon_sym___declspec] = ACTIONS(1308), + [anon_sym___cdecl] = ACTIONS(1308), + [anon_sym___clrcall] = ACTIONS(1308), + [anon_sym___stdcall] = ACTIONS(1308), + [anon_sym___fastcall] = ACTIONS(1308), + [anon_sym___thiscall] = ACTIONS(1308), + [anon_sym___vectorcall] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = ACTIONS(1308), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_auto] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1308), + [anon_sym_constexpr] = ACTIONS(1308), + [anon_sym_volatile] = ACTIONS(1308), + [anon_sym_restrict] = ACTIONS(1308), + [anon_sym___restrict__] = ACTIONS(1308), + [anon_sym__Atomic] = ACTIONS(1308), + [anon_sym__Noreturn] = ACTIONS(1308), + [anon_sym_noreturn] = ACTIONS(1308), + [sym_primitive_type] = ACTIONS(1308), + [anon_sym_enum] = ACTIONS(1308), + [anon_sym_struct] = ACTIONS(1308), + [anon_sym_union] = ACTIONS(1308), + [anon_sym_if] = ACTIONS(1308), + [anon_sym_else] = ACTIONS(1308), + [anon_sym_switch] = ACTIONS(1308), + [anon_sym_case] = ACTIONS(1308), + [anon_sym_default] = ACTIONS(1308), + [anon_sym_while] = ACTIONS(1308), + [anon_sym_do] = ACTIONS(1308), + [anon_sym_for] = ACTIONS(1308), + [anon_sym_return] = ACTIONS(1308), + [anon_sym_break] = ACTIONS(1308), + [anon_sym_continue] = ACTIONS(1308), + [anon_sym_goto] = ACTIONS(1308), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1308), + [anon_sym_offsetof] = ACTIONS(1308), + [anon_sym__Generic] = ACTIONS(1308), + [anon_sym_asm] = ACTIONS(1308), + [anon_sym___asm__] = ACTIONS(1308), + [sym_number_literal] = ACTIONS(1310), + [anon_sym_L_SQUOTE] = ACTIONS(1310), + [anon_sym_u_SQUOTE] = ACTIONS(1310), + [anon_sym_U_SQUOTE] = ACTIONS(1310), + [anon_sym_u8_SQUOTE] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_L_DQUOTE] = ACTIONS(1310), + [anon_sym_u_DQUOTE] = ACTIONS(1310), + [anon_sym_U_DQUOTE] = ACTIONS(1310), + [anon_sym_u8_DQUOTE] = ACTIONS(1310), + [anon_sym_DQUOTE] = ACTIONS(1310), + [sym_true] = ACTIONS(1308), + [sym_false] = ACTIONS(1308), + [anon_sym_NULL] = ACTIONS(1308), + [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [464] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [437] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(436), + [sym_attributed_statement] = STATE(436), + [sym_labeled_statement] = STATE(436), + [sym_expression_statement] = STATE(436), + [sym_if_statement] = STATE(436), + [sym_switch_statement] = STATE(436), + [sym_case_statement] = STATE(436), + [sym_while_statement] = STATE(436), + [sym_do_statement] = STATE(436), + [sym_for_statement] = STATE(436), + [sym_return_statement] = STATE(436), + [sym_break_statement] = STATE(436), + [sym_continue_statement] = STATE(436), + [sym_goto_statement] = STATE(436), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [465] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [438] = { + [sym_identifier] = ACTIONS(1304), + [aux_sym_preproc_include_token1] = ACTIONS(1304), + [aux_sym_preproc_def_token1] = ACTIONS(1304), + [aux_sym_preproc_if_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1304), + [sym_preproc_directive] = ACTIONS(1304), + [anon_sym_LPAREN2] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_TILDE] = ACTIONS(1306), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1304), + [anon_sym___attribute__] = ACTIONS(1304), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1306), + [anon_sym___declspec] = ACTIONS(1304), + [anon_sym___cdecl] = ACTIONS(1304), + [anon_sym___clrcall] = ACTIONS(1304), + [anon_sym___stdcall] = ACTIONS(1304), + [anon_sym___fastcall] = ACTIONS(1304), + [anon_sym___thiscall] = ACTIONS(1304), + [anon_sym___vectorcall] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1306), + [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1304), + [anon_sym_auto] = ACTIONS(1304), + [anon_sym_register] = ACTIONS(1304), + [anon_sym_inline] = ACTIONS(1304), + [anon_sym_thread_local] = ACTIONS(1304), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_constexpr] = ACTIONS(1304), + [anon_sym_volatile] = ACTIONS(1304), + [anon_sym_restrict] = ACTIONS(1304), + [anon_sym___restrict__] = ACTIONS(1304), + [anon_sym__Atomic] = ACTIONS(1304), + [anon_sym__Noreturn] = ACTIONS(1304), + [anon_sym_noreturn] = ACTIONS(1304), + [sym_primitive_type] = ACTIONS(1304), + [anon_sym_enum] = ACTIONS(1304), + [anon_sym_struct] = ACTIONS(1304), + [anon_sym_union] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1304), + [anon_sym_else] = ACTIONS(1304), + [anon_sym_switch] = ACTIONS(1304), + [anon_sym_case] = ACTIONS(1304), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1304), + [anon_sym_do] = ACTIONS(1304), + [anon_sym_for] = ACTIONS(1304), + [anon_sym_return] = ACTIONS(1304), + [anon_sym_break] = ACTIONS(1304), + [anon_sym_continue] = ACTIONS(1304), + [anon_sym_goto] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1306), + [anon_sym_PLUS_PLUS] = ACTIONS(1306), + [anon_sym_sizeof] = ACTIONS(1304), + [anon_sym_offsetof] = ACTIONS(1304), + [anon_sym__Generic] = ACTIONS(1304), + [anon_sym_asm] = ACTIONS(1304), + [anon_sym___asm__] = ACTIONS(1304), + [sym_number_literal] = ACTIONS(1306), + [anon_sym_L_SQUOTE] = ACTIONS(1306), + [anon_sym_u_SQUOTE] = ACTIONS(1306), + [anon_sym_U_SQUOTE] = ACTIONS(1306), + [anon_sym_u8_SQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_L_DQUOTE] = ACTIONS(1306), + [anon_sym_u_DQUOTE] = ACTIONS(1306), + [anon_sym_U_DQUOTE] = ACTIONS(1306), + [anon_sym_u8_DQUOTE] = ACTIONS(1306), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [anon_sym_NULL] = ACTIONS(1304), + [anon_sym_nullptr] = ACTIONS(1304), [sym_comment] = ACTIONS(3), }, - [466] = { - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [439] = { + [sym_identifier] = ACTIONS(1300), + [aux_sym_preproc_include_token1] = ACTIONS(1300), + [aux_sym_preproc_def_token1] = ACTIONS(1300), + [aux_sym_preproc_if_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1300), + [sym_preproc_directive] = ACTIONS(1300), + [anon_sym_LPAREN2] = ACTIONS(1302), + [anon_sym_BANG] = ACTIONS(1302), + [anon_sym_TILDE] = ACTIONS(1302), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1302), + [anon_sym_AMP] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1300), + [anon_sym___attribute__] = ACTIONS(1300), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), + [anon_sym___declspec] = ACTIONS(1300), + [anon_sym___cdecl] = ACTIONS(1300), + [anon_sym___clrcall] = ACTIONS(1300), + [anon_sym___stdcall] = ACTIONS(1300), + [anon_sym___fastcall] = ACTIONS(1300), + [anon_sym___thiscall] = ACTIONS(1300), + [anon_sym___vectorcall] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1302), + [anon_sym_RBRACE] = ACTIONS(1302), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = ACTIONS(1300), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_auto] = ACTIONS(1300), + [anon_sym_register] = ACTIONS(1300), + [anon_sym_inline] = ACTIONS(1300), + [anon_sym_thread_local] = ACTIONS(1300), + [anon_sym_const] = ACTIONS(1300), + [anon_sym_constexpr] = ACTIONS(1300), + [anon_sym_volatile] = ACTIONS(1300), + [anon_sym_restrict] = ACTIONS(1300), + [anon_sym___restrict__] = ACTIONS(1300), + [anon_sym__Atomic] = ACTIONS(1300), + [anon_sym__Noreturn] = ACTIONS(1300), + [anon_sym_noreturn] = ACTIONS(1300), + [sym_primitive_type] = ACTIONS(1300), + [anon_sym_enum] = ACTIONS(1300), + [anon_sym_struct] = ACTIONS(1300), + [anon_sym_union] = ACTIONS(1300), + [anon_sym_if] = ACTIONS(1300), + [anon_sym_else] = ACTIONS(1300), + [anon_sym_switch] = ACTIONS(1300), + [anon_sym_case] = ACTIONS(1300), + [anon_sym_default] = ACTIONS(1300), + [anon_sym_while] = ACTIONS(1300), + [anon_sym_do] = ACTIONS(1300), + [anon_sym_for] = ACTIONS(1300), + [anon_sym_return] = ACTIONS(1300), + [anon_sym_break] = ACTIONS(1300), + [anon_sym_continue] = ACTIONS(1300), + [anon_sym_goto] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1302), + [anon_sym_PLUS_PLUS] = ACTIONS(1302), + [anon_sym_sizeof] = ACTIONS(1300), + [anon_sym_offsetof] = ACTIONS(1300), + [anon_sym__Generic] = ACTIONS(1300), + [anon_sym_asm] = ACTIONS(1300), + [anon_sym___asm__] = ACTIONS(1300), + [sym_number_literal] = ACTIONS(1302), + [anon_sym_L_SQUOTE] = ACTIONS(1302), + [anon_sym_u_SQUOTE] = ACTIONS(1302), + [anon_sym_U_SQUOTE] = ACTIONS(1302), + [anon_sym_u8_SQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_L_DQUOTE] = ACTIONS(1302), + [anon_sym_u_DQUOTE] = ACTIONS(1302), + [anon_sym_U_DQUOTE] = ACTIONS(1302), + [anon_sym_u8_DQUOTE] = ACTIONS(1302), + [anon_sym_DQUOTE] = ACTIONS(1302), + [sym_true] = ACTIONS(1300), + [sym_false] = ACTIONS(1300), + [anon_sym_NULL] = ACTIONS(1300), + [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [467] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [440] = { + [sym_identifier] = ACTIONS(1296), + [aux_sym_preproc_include_token1] = ACTIONS(1296), + [aux_sym_preproc_def_token1] = ACTIONS(1296), + [aux_sym_preproc_if_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1296), + [sym_preproc_directive] = ACTIONS(1296), + [anon_sym_LPAREN2] = ACTIONS(1298), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_DASH] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1296), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_SEMI] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1296), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym___attribute__] = ACTIONS(1296), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1298), + [anon_sym___declspec] = ACTIONS(1296), + [anon_sym___cdecl] = ACTIONS(1296), + [anon_sym___clrcall] = ACTIONS(1296), + [anon_sym___stdcall] = ACTIONS(1296), + [anon_sym___fastcall] = ACTIONS(1296), + [anon_sym___thiscall] = ACTIONS(1296), + [anon_sym___vectorcall] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_auto] = ACTIONS(1296), + [anon_sym_register] = ACTIONS(1296), + [anon_sym_inline] = ACTIONS(1296), + [anon_sym_thread_local] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_constexpr] = ACTIONS(1296), + [anon_sym_volatile] = ACTIONS(1296), + [anon_sym_restrict] = ACTIONS(1296), + [anon_sym___restrict__] = ACTIONS(1296), + [anon_sym__Atomic] = ACTIONS(1296), + [anon_sym__Noreturn] = ACTIONS(1296), + [anon_sym_noreturn] = ACTIONS(1296), + [sym_primitive_type] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_else] = ACTIONS(1296), + [anon_sym_switch] = ACTIONS(1296), + [anon_sym_case] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_do] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_goto] = ACTIONS(1296), + [anon_sym_DASH_DASH] = ACTIONS(1298), + [anon_sym_PLUS_PLUS] = ACTIONS(1298), + [anon_sym_sizeof] = ACTIONS(1296), + [anon_sym_offsetof] = ACTIONS(1296), + [anon_sym__Generic] = ACTIONS(1296), + [anon_sym_asm] = ACTIONS(1296), + [anon_sym___asm__] = ACTIONS(1296), + [sym_number_literal] = ACTIONS(1298), + [anon_sym_L_SQUOTE] = ACTIONS(1298), + [anon_sym_u_SQUOTE] = ACTIONS(1298), + [anon_sym_U_SQUOTE] = ACTIONS(1298), + [anon_sym_u8_SQUOTE] = ACTIONS(1298), + [anon_sym_SQUOTE] = ACTIONS(1298), + [anon_sym_L_DQUOTE] = ACTIONS(1298), + [anon_sym_u_DQUOTE] = ACTIONS(1298), + [anon_sym_U_DQUOTE] = ACTIONS(1298), + [anon_sym_u8_DQUOTE] = ACTIONS(1298), + [anon_sym_DQUOTE] = ACTIONS(1298), + [sym_true] = ACTIONS(1296), + [sym_false] = ACTIONS(1296), + [anon_sym_NULL] = ACTIONS(1296), + [anon_sym_nullptr] = ACTIONS(1296), [sym_comment] = ACTIONS(3), }, - [468] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [441] = { + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1292), + [anon_sym_switch] = ACTIONS(1292), + [anon_sym_case] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_do] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_goto] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__Generic] = ACTIONS(1292), + [anon_sym_asm] = ACTIONS(1292), + [anon_sym___asm__] = ACTIONS(1292), + [sym_number_literal] = ACTIONS(1294), + [anon_sym_L_SQUOTE] = ACTIONS(1294), + [anon_sym_u_SQUOTE] = ACTIONS(1294), + [anon_sym_U_SQUOTE] = ACTIONS(1294), + [anon_sym_u8_SQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_L_DQUOTE] = ACTIONS(1294), + [anon_sym_u_DQUOTE] = ACTIONS(1294), + [anon_sym_U_DQUOTE] = ACTIONS(1294), + [anon_sym_u8_DQUOTE] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), + [anon_sym_NULL] = ACTIONS(1292), + [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [469] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [442] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(438), + [sym_attributed_statement] = STATE(438), + [sym_labeled_statement] = STATE(438), + [sym_expression_statement] = STATE(438), + [sym_if_statement] = STATE(438), + [sym_switch_statement] = STATE(438), + [sym_case_statement] = STATE(438), + [sym_while_statement] = STATE(438), + [sym_do_statement] = STATE(438), + [sym_for_statement] = STATE(438), + [sym_return_statement] = STATE(438), + [sym_break_statement] = STATE(438), + [sym_continue_statement] = STATE(438), + [sym_goto_statement] = STATE(438), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [470] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [443] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(439), + [sym_attributed_statement] = STATE(439), + [sym_labeled_statement] = STATE(439), + [sym_expression_statement] = STATE(439), + [sym_if_statement] = STATE(439), + [sym_switch_statement] = STATE(439), + [sym_case_statement] = STATE(439), + [sym_while_statement] = STATE(439), + [sym_do_statement] = STATE(439), + [sym_for_statement] = STATE(439), + [sym_return_statement] = STATE(439), + [sym_break_statement] = STATE(439), + [sym_continue_statement] = STATE(439), + [sym_goto_statement] = STATE(439), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [471] = { - [sym_identifier] = ACTIONS(1426), - [aux_sym_preproc_include_token1] = ACTIONS(1426), - [aux_sym_preproc_def_token1] = ACTIONS(1426), - [aux_sym_preproc_if_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), - [sym_preproc_directive] = ACTIONS(1426), - [anon_sym_LPAREN2] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym___attribute__] = ACTIONS(1426), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), - [anon_sym___declspec] = ACTIONS(1426), - [anon_sym___cdecl] = ACTIONS(1426), - [anon_sym___clrcall] = ACTIONS(1426), - [anon_sym___stdcall] = ACTIONS(1426), - [anon_sym___fastcall] = ACTIONS(1426), - [anon_sym___thiscall] = ACTIONS(1426), - [anon_sym___vectorcall] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_auto] = ACTIONS(1426), - [anon_sym_register] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_thread_local] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1426), - [anon_sym_constexpr] = ACTIONS(1426), - [anon_sym_volatile] = ACTIONS(1426), - [anon_sym_restrict] = ACTIONS(1426), - [anon_sym___restrict__] = ACTIONS(1426), - [anon_sym__Atomic] = ACTIONS(1426), - [anon_sym__Noreturn] = ACTIONS(1426), - [anon_sym_noreturn] = ACTIONS(1426), - [sym_primitive_type] = ACTIONS(1426), - [anon_sym_enum] = ACTIONS(1426), - [anon_sym_struct] = ACTIONS(1426), - [anon_sym_union] = ACTIONS(1426), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_while] = ACTIONS(1426), - [anon_sym_do] = ACTIONS(1426), - [anon_sym_for] = ACTIONS(1426), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_goto] = ACTIONS(1426), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_sizeof] = ACTIONS(1426), - [anon_sym_offsetof] = ACTIONS(1426), - [anon_sym__Generic] = ACTIONS(1426), - [anon_sym_asm] = ACTIONS(1426), - [anon_sym___asm__] = ACTIONS(1426), - [sym_number_literal] = ACTIONS(1428), - [anon_sym_L_SQUOTE] = ACTIONS(1428), - [anon_sym_u_SQUOTE] = ACTIONS(1428), - [anon_sym_U_SQUOTE] = ACTIONS(1428), - [anon_sym_u8_SQUOTE] = ACTIONS(1428), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_L_DQUOTE] = ACTIONS(1428), - [anon_sym_u_DQUOTE] = ACTIONS(1428), - [anon_sym_U_DQUOTE] = ACTIONS(1428), - [anon_sym_u8_DQUOTE] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1428), - [sym_true] = ACTIONS(1426), - [sym_false] = ACTIONS(1426), - [anon_sym_NULL] = ACTIONS(1426), - [anon_sym_nullptr] = ACTIONS(1426), + [444] = { + [sym_identifier] = ACTIONS(1288), + [aux_sym_preproc_include_token1] = ACTIONS(1288), + [aux_sym_preproc_def_token1] = ACTIONS(1288), + [aux_sym_preproc_if_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1288), + [sym_preproc_directive] = ACTIONS(1288), + [anon_sym_LPAREN2] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_TILDE] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1288), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym___attribute__] = ACTIONS(1288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(1288), + [anon_sym___cdecl] = ACTIONS(1288), + [anon_sym___clrcall] = ACTIONS(1288), + [anon_sym___stdcall] = ACTIONS(1288), + [anon_sym___fastcall] = ACTIONS(1288), + [anon_sym___thiscall] = ACTIONS(1288), + [anon_sym___vectorcall] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_auto] = ACTIONS(1288), + [anon_sym_register] = ACTIONS(1288), + [anon_sym_inline] = ACTIONS(1288), + [anon_sym_thread_local] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_constexpr] = ACTIONS(1288), + [anon_sym_volatile] = ACTIONS(1288), + [anon_sym_restrict] = ACTIONS(1288), + [anon_sym___restrict__] = ACTIONS(1288), + [anon_sym__Atomic] = ACTIONS(1288), + [anon_sym__Noreturn] = ACTIONS(1288), + [anon_sym_noreturn] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(1290), + [anon_sym_PLUS_PLUS] = ACTIONS(1290), + [anon_sym_sizeof] = ACTIONS(1288), + [anon_sym_offsetof] = ACTIONS(1288), + [anon_sym__Generic] = ACTIONS(1288), + [anon_sym_asm] = ACTIONS(1288), + [anon_sym___asm__] = ACTIONS(1288), + [sym_number_literal] = ACTIONS(1290), + [anon_sym_L_SQUOTE] = ACTIONS(1290), + [anon_sym_u_SQUOTE] = ACTIONS(1290), + [anon_sym_U_SQUOTE] = ACTIONS(1290), + [anon_sym_u8_SQUOTE] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1290), + [anon_sym_L_DQUOTE] = ACTIONS(1290), + [anon_sym_u_DQUOTE] = ACTIONS(1290), + [anon_sym_U_DQUOTE] = ACTIONS(1290), + [anon_sym_u8_DQUOTE] = ACTIONS(1290), + [anon_sym_DQUOTE] = ACTIONS(1290), + [sym_true] = ACTIONS(1288), + [sym_false] = ACTIONS(1288), + [anon_sym_NULL] = ACTIONS(1288), + [anon_sym_nullptr] = ACTIONS(1288), [sym_comment] = ACTIONS(3), }, - [472] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [445] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(440), + [sym_attributed_statement] = STATE(440), + [sym_labeled_statement] = STATE(440), + [sym_expression_statement] = STATE(440), + [sym_if_statement] = STATE(440), + [sym_switch_statement] = STATE(440), + [sym_case_statement] = STATE(440), + [sym_while_statement] = STATE(440), + [sym_do_statement] = STATE(440), + [sym_for_statement] = STATE(440), + [sym_return_statement] = STATE(440), + [sym_break_statement] = STATE(440), + [sym_continue_statement] = STATE(440), + [sym_goto_statement] = STATE(440), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [473] = { - [sym_identifier] = ACTIONS(1348), - [aux_sym_preproc_include_token1] = ACTIONS(1348), - [aux_sym_preproc_def_token1] = ACTIONS(1348), - [aux_sym_preproc_if_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), - [sym_preproc_directive] = ACTIONS(1348), - [anon_sym_LPAREN2] = ACTIONS(1350), - [anon_sym_BANG] = ACTIONS(1350), - [anon_sym_TILDE] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_PLUS] = ACTIONS(1348), - [anon_sym_STAR] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym___attribute__] = ACTIONS(1348), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), - [anon_sym___declspec] = ACTIONS(1348), - [anon_sym___cdecl] = ACTIONS(1348), - [anon_sym___clrcall] = ACTIONS(1348), - [anon_sym___stdcall] = ACTIONS(1348), - [anon_sym___fastcall] = ACTIONS(1348), - [anon_sym___thiscall] = ACTIONS(1348), - [anon_sym___vectorcall] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1350), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = ACTIONS(1348), - [anon_sym_static] = ACTIONS(1348), - [anon_sym_auto] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_inline] = ACTIONS(1348), - [anon_sym_thread_local] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_constexpr] = ACTIONS(1348), - [anon_sym_volatile] = ACTIONS(1348), - [anon_sym_restrict] = ACTIONS(1348), - [anon_sym___restrict__] = ACTIONS(1348), - [anon_sym__Atomic] = ACTIONS(1348), - [anon_sym__Noreturn] = ACTIONS(1348), - [anon_sym_noreturn] = ACTIONS(1348), - [sym_primitive_type] = ACTIONS(1348), - [anon_sym_enum] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1348), - [anon_sym_union] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_switch] = ACTIONS(1348), - [anon_sym_case] = ACTIONS(1348), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1350), - [anon_sym_PLUS_PLUS] = ACTIONS(1350), - [anon_sym_sizeof] = ACTIONS(1348), - [anon_sym_offsetof] = ACTIONS(1348), - [anon_sym__Generic] = ACTIONS(1348), - [anon_sym_asm] = ACTIONS(1348), - [anon_sym___asm__] = ACTIONS(1348), - [sym_number_literal] = ACTIONS(1350), - [anon_sym_L_SQUOTE] = ACTIONS(1350), - [anon_sym_u_SQUOTE] = ACTIONS(1350), - [anon_sym_U_SQUOTE] = ACTIONS(1350), - [anon_sym_u8_SQUOTE] = ACTIONS(1350), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_L_DQUOTE] = ACTIONS(1350), - [anon_sym_u_DQUOTE] = ACTIONS(1350), - [anon_sym_U_DQUOTE] = ACTIONS(1350), - [anon_sym_u8_DQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_true] = ACTIONS(1348), - [sym_false] = ACTIONS(1348), - [anon_sym_NULL] = ACTIONS(1348), - [anon_sym_nullptr] = ACTIONS(1348), + [446] = { + [sym_identifier] = ACTIONS(1284), + [aux_sym_preproc_include_token1] = ACTIONS(1284), + [aux_sym_preproc_def_token1] = ACTIONS(1284), + [aux_sym_preproc_if_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), + [sym_preproc_directive] = ACTIONS(1284), + [anon_sym_LPAREN2] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_TILDE] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym___attribute__] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1286), + [anon_sym___declspec] = ACTIONS(1284), + [anon_sym___cdecl] = ACTIONS(1284), + [anon_sym___clrcall] = ACTIONS(1284), + [anon_sym___stdcall] = ACTIONS(1284), + [anon_sym___fastcall] = ACTIONS(1284), + [anon_sym___thiscall] = ACTIONS(1284), + [anon_sym___vectorcall] = ACTIONS(1284), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_auto] = ACTIONS(1284), + [anon_sym_register] = ACTIONS(1284), + [anon_sym_inline] = ACTIONS(1284), + [anon_sym_thread_local] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_constexpr] = ACTIONS(1284), + [anon_sym_volatile] = ACTIONS(1284), + [anon_sym_restrict] = ACTIONS(1284), + [anon_sym___restrict__] = ACTIONS(1284), + [anon_sym__Atomic] = ACTIONS(1284), + [anon_sym__Noreturn] = ACTIONS(1284), + [anon_sym_noreturn] = ACTIONS(1284), + [sym_primitive_type] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1284), + [anon_sym_switch] = ACTIONS(1284), + [anon_sym_case] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_do] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_goto] = ACTIONS(1284), + [anon_sym_DASH_DASH] = ACTIONS(1286), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_sizeof] = ACTIONS(1284), + [anon_sym_offsetof] = ACTIONS(1284), + [anon_sym__Generic] = ACTIONS(1284), + [anon_sym_asm] = ACTIONS(1284), + [anon_sym___asm__] = ACTIONS(1284), + [sym_number_literal] = ACTIONS(1286), + [anon_sym_L_SQUOTE] = ACTIONS(1286), + [anon_sym_u_SQUOTE] = ACTIONS(1286), + [anon_sym_U_SQUOTE] = ACTIONS(1286), + [anon_sym_u8_SQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [anon_sym_L_DQUOTE] = ACTIONS(1286), + [anon_sym_u_DQUOTE] = ACTIONS(1286), + [anon_sym_U_DQUOTE] = ACTIONS(1286), + [anon_sym_u8_DQUOTE] = ACTIONS(1286), + [anon_sym_DQUOTE] = ACTIONS(1286), + [sym_true] = ACTIONS(1284), + [sym_false] = ACTIONS(1284), + [anon_sym_NULL] = ACTIONS(1284), + [anon_sym_nullptr] = ACTIONS(1284), [sym_comment] = ACTIONS(3), }, - [474] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [447] = { + [sym_identifier] = ACTIONS(1280), + [aux_sym_preproc_include_token1] = ACTIONS(1280), + [aux_sym_preproc_def_token1] = ACTIONS(1280), + [aux_sym_preproc_if_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), + [sym_preproc_directive] = ACTIONS(1280), + [anon_sym_LPAREN2] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1280), + [anon_sym_PLUS] = ACTIONS(1280), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1280), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(1280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1282), + [anon_sym___declspec] = ACTIONS(1280), + [anon_sym___cdecl] = ACTIONS(1280), + [anon_sym___clrcall] = ACTIONS(1280), + [anon_sym___stdcall] = ACTIONS(1280), + [anon_sym___fastcall] = ACTIONS(1280), + [anon_sym___thiscall] = ACTIONS(1280), + [anon_sym___vectorcall] = ACTIONS(1280), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_auto] = ACTIONS(1280), + [anon_sym_register] = ACTIONS(1280), + [anon_sym_inline] = ACTIONS(1280), + [anon_sym_thread_local] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_constexpr] = ACTIONS(1280), + [anon_sym_volatile] = ACTIONS(1280), + [anon_sym_restrict] = ACTIONS(1280), + [anon_sym___restrict__] = ACTIONS(1280), + [anon_sym__Atomic] = ACTIONS(1280), + [anon_sym__Noreturn] = ACTIONS(1280), + [anon_sym_noreturn] = ACTIONS(1280), + [sym_primitive_type] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_else] = ACTIONS(1280), + [anon_sym_switch] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_do] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_goto] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1282), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_sizeof] = ACTIONS(1280), + [anon_sym_offsetof] = ACTIONS(1280), + [anon_sym__Generic] = ACTIONS(1280), + [anon_sym_asm] = ACTIONS(1280), + [anon_sym___asm__] = ACTIONS(1280), + [sym_number_literal] = ACTIONS(1282), + [anon_sym_L_SQUOTE] = ACTIONS(1282), + [anon_sym_u_SQUOTE] = ACTIONS(1282), + [anon_sym_U_SQUOTE] = ACTIONS(1282), + [anon_sym_u8_SQUOTE] = ACTIONS(1282), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_L_DQUOTE] = ACTIONS(1282), + [anon_sym_u_DQUOTE] = ACTIONS(1282), + [anon_sym_U_DQUOTE] = ACTIONS(1282), + [anon_sym_u8_DQUOTE] = ACTIONS(1282), + [anon_sym_DQUOTE] = ACTIONS(1282), + [sym_true] = ACTIONS(1280), + [sym_false] = ACTIONS(1280), + [anon_sym_NULL] = ACTIONS(1280), + [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [475] = { - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token2] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [448] = { + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1200), + [aux_sym_preproc_include_token1] = ACTIONS(1200), + [aux_sym_preproc_def_token1] = ACTIONS(1200), + [aux_sym_preproc_if_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1200), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1200), + [sym_preproc_directive] = ACTIONS(1200), + [anon_sym_LPAREN2] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_TILDE] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(1200), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_typedef] = ACTIONS(1200), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym___attribute__] = ACTIONS(1200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1202), + [anon_sym___declspec] = ACTIONS(1200), + [anon_sym___cdecl] = ACTIONS(1200), + [anon_sym___clrcall] = ACTIONS(1200), + [anon_sym___stdcall] = ACTIONS(1200), + [anon_sym___fastcall] = ACTIONS(1200), + [anon_sym___thiscall] = ACTIONS(1200), + [anon_sym___vectorcall] = ACTIONS(1200), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_auto] = ACTIONS(1200), + [anon_sym_register] = ACTIONS(1200), + [anon_sym_inline] = ACTIONS(1200), + [anon_sym_thread_local] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_constexpr] = ACTIONS(1200), + [anon_sym_volatile] = ACTIONS(1200), + [anon_sym_restrict] = ACTIONS(1200), + [anon_sym___restrict__] = ACTIONS(1200), + [anon_sym__Atomic] = ACTIONS(1200), + [anon_sym__Noreturn] = ACTIONS(1200), + [anon_sym_noreturn] = ACTIONS(1200), + [sym_primitive_type] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_else] = ACTIONS(1200), + [anon_sym_switch] = ACTIONS(1200), + [anon_sym_case] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_do] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_goto] = ACTIONS(1200), + [anon_sym_DASH_DASH] = ACTIONS(1202), + [anon_sym_PLUS_PLUS] = ACTIONS(1202), + [anon_sym_sizeof] = ACTIONS(1200), + [anon_sym_offsetof] = ACTIONS(1200), + [anon_sym__Generic] = ACTIONS(1200), + [anon_sym_asm] = ACTIONS(1200), + [anon_sym___asm__] = ACTIONS(1200), + [sym_number_literal] = ACTIONS(1202), + [anon_sym_L_SQUOTE] = ACTIONS(1202), + [anon_sym_u_SQUOTE] = ACTIONS(1202), + [anon_sym_U_SQUOTE] = ACTIONS(1202), + [anon_sym_u8_SQUOTE] = ACTIONS(1202), + [anon_sym_SQUOTE] = ACTIONS(1202), + [anon_sym_L_DQUOTE] = ACTIONS(1202), + [anon_sym_u_DQUOTE] = ACTIONS(1202), + [anon_sym_U_DQUOTE] = ACTIONS(1202), + [anon_sym_u8_DQUOTE] = ACTIONS(1202), + [anon_sym_DQUOTE] = ACTIONS(1202), + [sym_true] = ACTIONS(1200), + [sym_false] = ACTIONS(1200), + [anon_sym_NULL] = ACTIONS(1200), + [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, - [476] = { - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token2] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), + [449] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(441), + [sym_attributed_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(1076), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1778), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_if] = ACTIONS(464), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_default] = ACTIONS(470), + [anon_sym_while] = ACTIONS(472), + [anon_sym_do] = ACTIONS(474), + [anon_sym_for] = ACTIONS(476), + [anon_sym_return] = ACTIONS(478), + [anon_sym_break] = ACTIONS(480), + [anon_sym_continue] = ACTIONS(482), + [anon_sym_goto] = ACTIONS(484), + [anon_sym_DASH_DASH] = ACTIONS(77), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [sym_number_literal] = ACTIONS(147), + [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(149), + [sym_false] = ACTIONS(149), + [anon_sym_NULL] = ACTIONS(95), + [anon_sym_nullptr] = ACTIONS(95), + [sym_comment] = ACTIONS(3), + }, + [450] = { + [sym_identifier] = ACTIONS(1276), + [aux_sym_preproc_include_token1] = ACTIONS(1276), + [aux_sym_preproc_def_token1] = ACTIONS(1276), + [aux_sym_preproc_if_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1276), + [sym_preproc_directive] = ACTIONS(1276), + [anon_sym_LPAREN2] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1276), + [anon_sym_PLUS] = ACTIONS(1276), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1276), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym___attribute__] = ACTIONS(1276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1278), + [anon_sym___declspec] = ACTIONS(1276), + [anon_sym___cdecl] = ACTIONS(1276), + [anon_sym___clrcall] = ACTIONS(1276), + [anon_sym___stdcall] = ACTIONS(1276), + [anon_sym___fastcall] = ACTIONS(1276), + [anon_sym___thiscall] = ACTIONS(1276), + [anon_sym___vectorcall] = ACTIONS(1276), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_auto] = ACTIONS(1276), + [anon_sym_register] = ACTIONS(1276), + [anon_sym_inline] = ACTIONS(1276), + [anon_sym_thread_local] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_constexpr] = ACTIONS(1276), + [anon_sym_volatile] = ACTIONS(1276), + [anon_sym_restrict] = ACTIONS(1276), + [anon_sym___restrict__] = ACTIONS(1276), + [anon_sym__Atomic] = ACTIONS(1276), + [anon_sym__Noreturn] = ACTIONS(1276), + [anon_sym_noreturn] = ACTIONS(1276), + [sym_primitive_type] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_else] = ACTIONS(1276), + [anon_sym_switch] = ACTIONS(1276), + [anon_sym_case] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_goto] = ACTIONS(1276), + [anon_sym_DASH_DASH] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1278), + [anon_sym_sizeof] = ACTIONS(1276), + [anon_sym_offsetof] = ACTIONS(1276), + [anon_sym__Generic] = ACTIONS(1276), + [anon_sym_asm] = ACTIONS(1276), + [anon_sym___asm__] = ACTIONS(1276), + [sym_number_literal] = ACTIONS(1278), + [anon_sym_L_SQUOTE] = ACTIONS(1278), + [anon_sym_u_SQUOTE] = ACTIONS(1278), + [anon_sym_U_SQUOTE] = ACTIONS(1278), + [anon_sym_u8_SQUOTE] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1278), + [anon_sym_L_DQUOTE] = ACTIONS(1278), + [anon_sym_u_DQUOTE] = ACTIONS(1278), + [anon_sym_U_DQUOTE] = ACTIONS(1278), + [anon_sym_u8_DQUOTE] = ACTIONS(1278), + [anon_sym_DQUOTE] = ACTIONS(1278), + [sym_true] = ACTIONS(1276), + [sym_false] = ACTIONS(1276), + [anon_sym_NULL] = ACTIONS(1276), + [anon_sym_nullptr] = ACTIONS(1276), [sym_comment] = ACTIONS(3), }, - [477] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [451] = { + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_if_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1272), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1272), + [sym_preproc_directive] = ACTIONS(1272), + [anon_sym_LPAREN2] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1272), + [anon_sym_extern] = ACTIONS(1272), + [anon_sym___attribute__] = ACTIONS(1272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1274), + [anon_sym___declspec] = ACTIONS(1272), + [anon_sym___cdecl] = ACTIONS(1272), + [anon_sym___clrcall] = ACTIONS(1272), + [anon_sym___stdcall] = ACTIONS(1272), + [anon_sym___fastcall] = ACTIONS(1272), + [anon_sym___thiscall] = ACTIONS(1272), + [anon_sym___vectorcall] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = ACTIONS(1272), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_auto] = ACTIONS(1272), + [anon_sym_register] = ACTIONS(1272), + [anon_sym_inline] = ACTIONS(1272), + [anon_sym_thread_local] = ACTIONS(1272), + [anon_sym_const] = ACTIONS(1272), + [anon_sym_constexpr] = ACTIONS(1272), + [anon_sym_volatile] = ACTIONS(1272), + [anon_sym_restrict] = ACTIONS(1272), + [anon_sym___restrict__] = ACTIONS(1272), + [anon_sym__Atomic] = ACTIONS(1272), + [anon_sym__Noreturn] = ACTIONS(1272), + [anon_sym_noreturn] = ACTIONS(1272), + [sym_primitive_type] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = ACTIONS(1272), + [anon_sym_switch] = ACTIONS(1272), + [anon_sym_case] = ACTIONS(1272), + [anon_sym_default] = ACTIONS(1272), + [anon_sym_while] = ACTIONS(1272), + [anon_sym_do] = ACTIONS(1272), + [anon_sym_for] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_continue] = ACTIONS(1272), + [anon_sym_goto] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1274), + [anon_sym_PLUS_PLUS] = ACTIONS(1274), + [anon_sym_sizeof] = ACTIONS(1272), + [anon_sym_offsetof] = ACTIONS(1272), + [anon_sym__Generic] = ACTIONS(1272), + [anon_sym_asm] = ACTIONS(1272), + [anon_sym___asm__] = ACTIONS(1272), + [sym_number_literal] = ACTIONS(1274), + [anon_sym_L_SQUOTE] = ACTIONS(1274), + [anon_sym_u_SQUOTE] = ACTIONS(1274), + [anon_sym_U_SQUOTE] = ACTIONS(1274), + [anon_sym_u8_SQUOTE] = ACTIONS(1274), + [anon_sym_SQUOTE] = ACTIONS(1274), + [anon_sym_L_DQUOTE] = ACTIONS(1274), + [anon_sym_u_DQUOTE] = ACTIONS(1274), + [anon_sym_U_DQUOTE] = ACTIONS(1274), + [anon_sym_u8_DQUOTE] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1274), + [sym_true] = ACTIONS(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [478] = { + [452] = { [sym_identifier] = ACTIONS(1356), [aux_sym_preproc_include_token1] = ACTIONS(1356), [aux_sym_preproc_def_token1] = ACTIONS(1356), [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token2] = ACTIONS(1356), [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), [sym_preproc_directive] = ACTIONS(1356), @@ -61380,6 +59105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1356), [anon_sym___vectorcall] = ACTIONS(1356), [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1358), [anon_sym_signed] = ACTIONS(1356), [anon_sym_unsigned] = ACTIONS(1356), [anon_sym_long] = ACTIONS(1356), @@ -61436,96 +59162,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [479] = { - [sym_identifier] = ACTIONS(1364), - [aux_sym_preproc_include_token1] = ACTIONS(1364), - [aux_sym_preproc_def_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token1] = ACTIONS(1364), - [aux_sym_preproc_if_token2] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), - [sym_preproc_directive] = ACTIONS(1364), - [anon_sym_LPAREN2] = ACTIONS(1366), - [anon_sym_BANG] = ACTIONS(1366), - [anon_sym_TILDE] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1364), - [anon_sym_PLUS] = ACTIONS(1364), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), + [453] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, - [480] = { + [454] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), + [sym_comment] = ACTIONS(3), + }, + [455] = { [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), [aux_sym_preproc_def_token1] = ACTIONS(1418), [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), [sym_preproc_directive] = ACTIONS(1418), @@ -61549,7 +59361,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1418), [anon_sym___vectorcall] = ACTIONS(1418), [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), [anon_sym_signed] = ACTIONS(1418), [anon_sym_unsigned] = ACTIONS(1418), [anon_sym_long] = ACTIONS(1418), @@ -61606,266 +59417,437 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [481] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [456] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token2] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + }, + [457] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token2] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), + [sym_comment] = ACTIONS(3), + }, + [458] = { + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token2] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, - [482] = { - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), + [459] = { + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token2] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), [sym_comment] = ACTIONS(3), }, - [483] = { - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_SEMI] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [460] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token2] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), [sym_comment] = ACTIONS(3), }, - [484] = { + [461] = { [sym_identifier] = ACTIONS(1364), [aux_sym_preproc_include_token1] = ACTIONS(1364), [aux_sym_preproc_def_token1] = ACTIONS(1364), [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token2] = ACTIONS(1364), [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), [sym_preproc_directive] = ACTIONS(1364), @@ -61876,417 +59858,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1364), [anon_sym_STAR] = ACTIONS(1366), [anon_sym_AMP] = ACTIONS(1366), - [anon_sym_SEMI] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1364), - [anon_sym_extern] = ACTIONS(1364), - [anon_sym___attribute__] = ACTIONS(1364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), - [anon_sym___declspec] = ACTIONS(1364), - [anon_sym___cdecl] = ACTIONS(1364), - [anon_sym___clrcall] = ACTIONS(1364), - [anon_sym___stdcall] = ACTIONS(1364), - [anon_sym___fastcall] = ACTIONS(1364), - [anon_sym___thiscall] = ACTIONS(1364), - [anon_sym___vectorcall] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = ACTIONS(1364), - [anon_sym_static] = ACTIONS(1364), - [anon_sym_auto] = ACTIONS(1364), - [anon_sym_register] = ACTIONS(1364), - [anon_sym_inline] = ACTIONS(1364), - [anon_sym_thread_local] = ACTIONS(1364), - [anon_sym_const] = ACTIONS(1364), - [anon_sym_constexpr] = ACTIONS(1364), - [anon_sym_volatile] = ACTIONS(1364), - [anon_sym_restrict] = ACTIONS(1364), - [anon_sym___restrict__] = ACTIONS(1364), - [anon_sym__Atomic] = ACTIONS(1364), - [anon_sym__Noreturn] = ACTIONS(1364), - [anon_sym_noreturn] = ACTIONS(1364), - [sym_primitive_type] = ACTIONS(1364), - [anon_sym_enum] = ACTIONS(1364), - [anon_sym_struct] = ACTIONS(1364), - [anon_sym_union] = ACTIONS(1364), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_switch] = ACTIONS(1364), - [anon_sym_case] = ACTIONS(1364), - [anon_sym_default] = ACTIONS(1364), - [anon_sym_while] = ACTIONS(1364), - [anon_sym_do] = ACTIONS(1364), - [anon_sym_for] = ACTIONS(1364), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_break] = ACTIONS(1364), - [anon_sym_continue] = ACTIONS(1364), - [anon_sym_goto] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1366), - [anon_sym_PLUS_PLUS] = ACTIONS(1366), - [anon_sym_sizeof] = ACTIONS(1364), - [anon_sym_offsetof] = ACTIONS(1364), - [anon_sym__Generic] = ACTIONS(1364), - [anon_sym_asm] = ACTIONS(1364), - [anon_sym___asm__] = ACTIONS(1364), - [sym_number_literal] = ACTIONS(1366), - [anon_sym_L_SQUOTE] = ACTIONS(1366), - [anon_sym_u_SQUOTE] = ACTIONS(1366), - [anon_sym_U_SQUOTE] = ACTIONS(1366), - [anon_sym_u8_SQUOTE] = ACTIONS(1366), - [anon_sym_SQUOTE] = ACTIONS(1366), - [anon_sym_L_DQUOTE] = ACTIONS(1366), - [anon_sym_u_DQUOTE] = ACTIONS(1366), - [anon_sym_U_DQUOTE] = ACTIONS(1366), - [anon_sym_u8_DQUOTE] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1366), - [sym_true] = ACTIONS(1364), - [sym_false] = ACTIONS(1364), - [anon_sym_NULL] = ACTIONS(1364), - [anon_sym_nullptr] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - }, - [485] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - }, - [486] = { - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - }, - [487] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - }, - [488] = { - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token2] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_goto] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym_offsetof] = ACTIONS(1398), - [anon_sym__Generic] = ACTIONS(1398), - [anon_sym_asm] = ACTIONS(1398), - [anon_sym___asm__] = ACTIONS(1398), - [sym_number_literal] = ACTIONS(1400), - [anon_sym_L_SQUOTE] = ACTIONS(1400), - [anon_sym_u_SQUOTE] = ACTIONS(1400), - [anon_sym_U_SQUOTE] = ACTIONS(1400), - [anon_sym_u8_SQUOTE] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1400), - [anon_sym_L_DQUOTE] = ACTIONS(1400), - [anon_sym_u_DQUOTE] = ACTIONS(1400), - [anon_sym_U_DQUOTE] = ACTIONS(1400), - [anon_sym_u8_DQUOTE] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1400), - [sym_true] = ACTIONS(1398), - [sym_false] = ACTIONS(1398), - [anon_sym_NULL] = ACTIONS(1398), - [anon_sym_nullptr] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [489] = { + [462] = { [sym_identifier] = ACTIONS(1360), [aux_sym_preproc_include_token1] = ACTIONS(1360), [aux_sym_preproc_def_token1] = ACTIONS(1360), @@ -62371,7 +60012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [490] = { + [463] = { [sym_identifier] = ACTIONS(1352), [aux_sym_preproc_include_token1] = ACTIONS(1352), [aux_sym_preproc_def_token1] = ACTIONS(1352), @@ -62456,7 +60097,687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [491] = { + [464] = { + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token2] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + }, + [465] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + }, + [466] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym_offsetof] = ACTIONS(1422), + [anon_sym__Generic] = ACTIONS(1422), + [anon_sym_asm] = ACTIONS(1422), + [anon_sym___asm__] = ACTIONS(1422), + [sym_number_literal] = ACTIONS(1424), + [anon_sym_L_SQUOTE] = ACTIONS(1424), + [anon_sym_u_SQUOTE] = ACTIONS(1424), + [anon_sym_U_SQUOTE] = ACTIONS(1424), + [anon_sym_u8_SQUOTE] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1424), + [anon_sym_L_DQUOTE] = ACTIONS(1424), + [anon_sym_u_DQUOTE] = ACTIONS(1424), + [anon_sym_U_DQUOTE] = ACTIONS(1424), + [anon_sym_u8_DQUOTE] = ACTIONS(1424), + [anon_sym_DQUOTE] = ACTIONS(1424), + [sym_true] = ACTIONS(1422), + [sym_false] = ACTIONS(1422), + [anon_sym_NULL] = ACTIONS(1422), + [anon_sym_nullptr] = ACTIONS(1422), + [sym_comment] = ACTIONS(3), + }, + [467] = { + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token2] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), + [sym_comment] = ACTIONS(3), + }, + [468] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token2] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [469] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + }, + [470] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + }, + [471] = { + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token2] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + }, + [472] = { [sym_identifier] = ACTIONS(1348), [aux_sym_preproc_include_token1] = ACTIONS(1348), [aux_sym_preproc_def_token1] = ACTIONS(1348), @@ -62541,430 +60862,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [492] = { - [sym_identifier] = ACTIONS(1410), - [aux_sym_preproc_include_token1] = ACTIONS(1410), - [aux_sym_preproc_def_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token1] = ACTIONS(1410), - [aux_sym_preproc_if_token2] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), - [sym_preproc_directive] = ACTIONS(1410), - [anon_sym_LPAREN2] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1412), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym_offsetof] = ACTIONS(1410), - [anon_sym__Generic] = ACTIONS(1410), - [anon_sym_asm] = ACTIONS(1410), - [anon_sym___asm__] = ACTIONS(1410), - [sym_number_literal] = ACTIONS(1412), - [anon_sym_L_SQUOTE] = ACTIONS(1412), - [anon_sym_u_SQUOTE] = ACTIONS(1412), - [anon_sym_U_SQUOTE] = ACTIONS(1412), - [anon_sym_u8_SQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_L_DQUOTE] = ACTIONS(1412), - [anon_sym_u_DQUOTE] = ACTIONS(1412), - [anon_sym_U_DQUOTE] = ACTIONS(1412), - [anon_sym_u8_DQUOTE] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1412), - [sym_true] = ACTIONS(1410), - [sym_false] = ACTIONS(1410), - [anon_sym_NULL] = ACTIONS(1410), - [anon_sym_nullptr] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - }, - [493] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), - [sym_comment] = ACTIONS(3), - }, - [494] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [473] = { + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token2] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [495] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym_offsetof] = ACTIONS(1406), - [anon_sym__Generic] = ACTIONS(1406), - [anon_sym_asm] = ACTIONS(1406), - [anon_sym___asm__] = ACTIONS(1406), - [sym_number_literal] = ACTIONS(1408), - [anon_sym_L_SQUOTE] = ACTIONS(1408), - [anon_sym_u_SQUOTE] = ACTIONS(1408), - [anon_sym_U_SQUOTE] = ACTIONS(1408), - [anon_sym_u8_SQUOTE] = ACTIONS(1408), - [anon_sym_SQUOTE] = ACTIONS(1408), - [anon_sym_L_DQUOTE] = ACTIONS(1408), - [anon_sym_u_DQUOTE] = ACTIONS(1408), - [anon_sym_U_DQUOTE] = ACTIONS(1408), - [anon_sym_u8_DQUOTE] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1408), - [sym_true] = ACTIONS(1406), - [sym_false] = ACTIONS(1406), - [anon_sym_NULL] = ACTIONS(1406), - [anon_sym_nullptr] = ACTIONS(1406), + [474] = { + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token2] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, - [496] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym_offsetof] = ACTIONS(1414), - [anon_sym__Generic] = ACTIONS(1414), - [anon_sym_asm] = ACTIONS(1414), - [anon_sym___asm__] = ACTIONS(1414), - [sym_number_literal] = ACTIONS(1416), - [anon_sym_L_SQUOTE] = ACTIONS(1416), - [anon_sym_u_SQUOTE] = ACTIONS(1416), - [anon_sym_U_SQUOTE] = ACTIONS(1416), - [anon_sym_u8_SQUOTE] = ACTIONS(1416), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_L_DQUOTE] = ACTIONS(1416), - [anon_sym_u_DQUOTE] = ACTIONS(1416), - [anon_sym_U_DQUOTE] = ACTIONS(1416), - [anon_sym_u8_DQUOTE] = ACTIONS(1416), - [anon_sym_DQUOTE] = ACTIONS(1416), - [sym_true] = ACTIONS(1414), - [sym_false] = ACTIONS(1414), - [anon_sym_NULL] = ACTIONS(1414), - [anon_sym_nullptr] = ACTIONS(1414), + [475] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [497] = { - [ts_builtin_sym_end] = ACTIONS(1412), + [476] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym_offsetof] = ACTIONS(1426), + [anon_sym__Generic] = ACTIONS(1426), + [anon_sym_asm] = ACTIONS(1426), + [anon_sym___asm__] = ACTIONS(1426), + [sym_number_literal] = ACTIONS(1428), + [anon_sym_L_SQUOTE] = ACTIONS(1428), + [anon_sym_u_SQUOTE] = ACTIONS(1428), + [anon_sym_U_SQUOTE] = ACTIONS(1428), + [anon_sym_u8_SQUOTE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_L_DQUOTE] = ACTIONS(1428), + [anon_sym_u_DQUOTE] = ACTIONS(1428), + [anon_sym_U_DQUOTE] = ACTIONS(1428), + [anon_sym_u8_DQUOTE] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [sym_true] = ACTIONS(1426), + [sym_false] = ACTIONS(1426), + [anon_sym_NULL] = ACTIONS(1426), + [anon_sym_nullptr] = ACTIONS(1426), + [sym_comment] = ACTIONS(3), + }, + [477] = { [sym_identifier] = ACTIONS(1410), [aux_sym_preproc_include_token1] = ACTIONS(1410), [aux_sym_preproc_def_token1] = ACTIONS(1410), @@ -62979,6 +61217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1410), [anon_sym_STAR] = ACTIONS(1412), [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1412), [anon_sym_typedef] = ACTIONS(1410), [anon_sym_extern] = ACTIONS(1410), [anon_sym___attribute__] = ACTIONS(1410), @@ -62991,6 +61230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1410), [anon_sym___vectorcall] = ACTIONS(1410), [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), [anon_sym_signed] = ACTIONS(1410), [anon_sym_unsigned] = ACTIONS(1410), [anon_sym_long] = ACTIONS(1410), @@ -63047,8 +61287,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [498] = { - [ts_builtin_sym_end] = ACTIONS(1396), + [478] = { + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), + [sym_comment] = ACTIONS(3), + }, + [479] = { + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_switch] = ACTIONS(1398), + [anon_sym_case] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_do] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_goto] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym_offsetof] = ACTIONS(1398), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1398), + [anon_sym___asm__] = ACTIONS(1398), + [sym_number_literal] = ACTIONS(1400), + [anon_sym_L_SQUOTE] = ACTIONS(1400), + [anon_sym_u_SQUOTE] = ACTIONS(1400), + [anon_sym_U_SQUOTE] = ACTIONS(1400), + [anon_sym_u8_SQUOTE] = ACTIONS(1400), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_L_DQUOTE] = ACTIONS(1400), + [anon_sym_u_DQUOTE] = ACTIONS(1400), + [anon_sym_U_DQUOTE] = ACTIONS(1400), + [anon_sym_u8_DQUOTE] = ACTIONS(1400), + [anon_sym_DQUOTE] = ACTIONS(1400), + [sym_true] = ACTIONS(1398), + [sym_false] = ACTIONS(1398), + [anon_sym_NULL] = ACTIONS(1398), + [anon_sym_nullptr] = ACTIONS(1398), + [sym_comment] = ACTIONS(3), + }, + [480] = { [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), [aux_sym_preproc_def_token1] = ACTIONS(1394), @@ -63063,6 +61472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1394), [anon_sym_STAR] = ACTIONS(1396), [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), [anon_sym_typedef] = ACTIONS(1394), [anon_sym_extern] = ACTIONS(1394), [anon_sym___attribute__] = ACTIONS(1394), @@ -63075,6 +61485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1394), [anon_sym___vectorcall] = ACTIONS(1394), [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), [anon_sym_signed] = ACTIONS(1394), [anon_sym_unsigned] = ACTIONS(1394), [anon_sym_long] = ACTIONS(1394), @@ -63131,344 +61542,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [499] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [aux_sym_preproc_if_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), - [sym_preproc_directive] = ACTIONS(1356), - [anon_sym_LPAREN2] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1358), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1356), - [anon_sym_extern] = ACTIONS(1356), - [anon_sym___attribute__] = ACTIONS(1356), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), - [anon_sym___declspec] = ACTIONS(1356), - [anon_sym___cdecl] = ACTIONS(1356), - [anon_sym___clrcall] = ACTIONS(1356), - [anon_sym___stdcall] = ACTIONS(1356), - [anon_sym___fastcall] = ACTIONS(1356), - [anon_sym___thiscall] = ACTIONS(1356), - [anon_sym___vectorcall] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_auto] = ACTIONS(1356), - [anon_sym_register] = ACTIONS(1356), - [anon_sym_inline] = ACTIONS(1356), - [anon_sym_thread_local] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_constexpr] = ACTIONS(1356), - [anon_sym_volatile] = ACTIONS(1356), - [anon_sym_restrict] = ACTIONS(1356), - [anon_sym___restrict__] = ACTIONS(1356), - [anon_sym__Atomic] = ACTIONS(1356), - [anon_sym__Noreturn] = ACTIONS(1356), - [anon_sym_noreturn] = ACTIONS(1356), - [sym_primitive_type] = ACTIONS(1356), - [anon_sym_enum] = ACTIONS(1356), - [anon_sym_struct] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_switch] = ACTIONS(1356), - [anon_sym_case] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_do] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_goto] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1358), - [anon_sym_sizeof] = ACTIONS(1356), - [anon_sym_offsetof] = ACTIONS(1356), - [anon_sym__Generic] = ACTIONS(1356), - [anon_sym_asm] = ACTIONS(1356), - [anon_sym___asm__] = ACTIONS(1356), - [sym_number_literal] = ACTIONS(1358), - [anon_sym_L_SQUOTE] = ACTIONS(1358), - [anon_sym_u_SQUOTE] = ACTIONS(1358), - [anon_sym_U_SQUOTE] = ACTIONS(1358), - [anon_sym_u8_SQUOTE] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1358), - [anon_sym_L_DQUOTE] = ACTIONS(1358), - [anon_sym_u_DQUOTE] = ACTIONS(1358), - [anon_sym_U_DQUOTE] = ACTIONS(1358), - [anon_sym_u8_DQUOTE] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_true] = ACTIONS(1356), - [sym_false] = ACTIONS(1356), - [anon_sym_NULL] = ACTIONS(1356), - [anon_sym_nullptr] = ACTIONS(1356), + [481] = { + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + }, + [482] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym_offsetof] = ACTIONS(1418), + [anon_sym__Generic] = ACTIONS(1418), + [anon_sym_asm] = ACTIONS(1418), + [anon_sym___asm__] = ACTIONS(1418), + [sym_number_literal] = ACTIONS(1420), + [anon_sym_L_SQUOTE] = ACTIONS(1420), + [anon_sym_u_SQUOTE] = ACTIONS(1420), + [anon_sym_U_SQUOTE] = ACTIONS(1420), + [anon_sym_u8_SQUOTE] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1420), + [anon_sym_L_DQUOTE] = ACTIONS(1420), + [anon_sym_u_DQUOTE] = ACTIONS(1420), + [anon_sym_U_DQUOTE] = ACTIONS(1420), + [anon_sym_u8_DQUOTE] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1420), + [sym_true] = ACTIONS(1418), + [sym_false] = ACTIONS(1418), + [anon_sym_NULL] = ACTIONS(1418), + [anon_sym_nullptr] = ACTIONS(1418), + [sym_comment] = ACTIONS(3), + }, + [483] = { + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [500] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [484] = { + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [501] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [485] = { + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), [sym_comment] = ACTIONS(3), }, - [502] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [aux_sym_preproc_include_token1] = ACTIONS(1745), - [aux_sym_preproc_def_token1] = ACTIONS(1745), - [aux_sym_preproc_if_token1] = ACTIONS(1745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1745), - [sym_preproc_directive] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_TILDE] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_typedef] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym___attribute__] = ACTIONS(1745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1743), - [anon_sym___declspec] = ACTIONS(1745), - [anon_sym___cdecl] = ACTIONS(1745), - [anon_sym___clrcall] = ACTIONS(1745), - [anon_sym___stdcall] = ACTIONS(1745), - [anon_sym___fastcall] = ACTIONS(1745), - [anon_sym___thiscall] = ACTIONS(1745), - [anon_sym___vectorcall] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_signed] = ACTIONS(1745), - [anon_sym_unsigned] = ACTIONS(1745), - [anon_sym_long] = ACTIONS(1745), - [anon_sym_short] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_auto] = ACTIONS(1745), - [anon_sym_register] = ACTIONS(1745), - [anon_sym_inline] = ACTIONS(1745), - [anon_sym_thread_local] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_constexpr] = ACTIONS(1745), - [anon_sym_volatile] = ACTIONS(1745), - [anon_sym_restrict] = ACTIONS(1745), - [anon_sym___restrict__] = ACTIONS(1745), - [anon_sym__Atomic] = ACTIONS(1745), - [anon_sym__Noreturn] = ACTIONS(1745), - [anon_sym_noreturn] = ACTIONS(1745), - [sym_primitive_type] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_switch] = ACTIONS(1745), - [anon_sym_case] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_goto] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1743), - [anon_sym_sizeof] = ACTIONS(1745), - [anon_sym_offsetof] = ACTIONS(1745), - [anon_sym__Generic] = ACTIONS(1745), - [anon_sym_asm] = ACTIONS(1745), - [anon_sym___asm__] = ACTIONS(1745), - [sym_number_literal] = ACTIONS(1743), - [anon_sym_L_SQUOTE] = ACTIONS(1743), - [anon_sym_u_SQUOTE] = ACTIONS(1743), - [anon_sym_U_SQUOTE] = ACTIONS(1743), - [anon_sym_u8_SQUOTE] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1743), - [anon_sym_L_DQUOTE] = ACTIONS(1743), - [anon_sym_u_DQUOTE] = ACTIONS(1743), - [anon_sym_U_DQUOTE] = ACTIONS(1743), - [anon_sym_u8_DQUOTE] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [sym_true] = ACTIONS(1745), - [sym_false] = ACTIONS(1745), - [anon_sym_NULL] = ACTIONS(1745), - [anon_sym_nullptr] = ACTIONS(1745), + [486] = { + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), [sym_comment] = ACTIONS(3), }, - [503] = { - [ts_builtin_sym_end] = ACTIONS(1350), + [487] = { + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + }, + [488] = { [sym_identifier] = ACTIONS(1348), [aux_sym_preproc_include_token1] = ACTIONS(1348), [aux_sym_preproc_def_token1] = ACTIONS(1348), @@ -63483,6 +62152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1348), [anon_sym_STAR] = ACTIONS(1350), [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), [anon_sym_typedef] = ACTIONS(1348), [anon_sym_extern] = ACTIONS(1348), [anon_sym___attribute__] = ACTIONS(1348), @@ -63495,6 +62165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1348), [anon_sym___vectorcall] = ACTIONS(1348), [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), [anon_sym_signed] = ACTIONS(1348), [anon_sym_unsigned] = ACTIONS(1348), [anon_sym_long] = ACTIONS(1348), @@ -63551,91 +62222,516 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [504] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [489] = { + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [490] = { + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), + [sym_comment] = ACTIONS(3), + }, + [491] = { + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + }, + [492] = { + [sym_identifier] = ACTIONS(1364), + [aux_sym_preproc_include_token1] = ACTIONS(1364), + [aux_sym_preproc_def_token1] = ACTIONS(1364), + [aux_sym_preproc_if_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1364), + [sym_preproc_directive] = ACTIONS(1364), + [anon_sym_LPAREN2] = ACTIONS(1366), + [anon_sym_BANG] = ACTIONS(1366), + [anon_sym_TILDE] = ACTIONS(1366), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1366), + [anon_sym_AMP] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym___attribute__] = ACTIONS(1364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1366), + [anon_sym___declspec] = ACTIONS(1364), + [anon_sym___cdecl] = ACTIONS(1364), + [anon_sym___clrcall] = ACTIONS(1364), + [anon_sym___stdcall] = ACTIONS(1364), + [anon_sym___fastcall] = ACTIONS(1364), + [anon_sym___thiscall] = ACTIONS(1364), + [anon_sym___vectorcall] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = ACTIONS(1364), + [anon_sym_static] = ACTIONS(1364), + [anon_sym_auto] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_inline] = ACTIONS(1364), + [anon_sym_thread_local] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [anon_sym_constexpr] = ACTIONS(1364), + [anon_sym_volatile] = ACTIONS(1364), + [anon_sym_restrict] = ACTIONS(1364), + [anon_sym___restrict__] = ACTIONS(1364), + [anon_sym__Atomic] = ACTIONS(1364), + [anon_sym__Noreturn] = ACTIONS(1364), + [anon_sym_noreturn] = ACTIONS(1364), + [sym_primitive_type] = ACTIONS(1364), + [anon_sym_enum] = ACTIONS(1364), + [anon_sym_struct] = ACTIONS(1364), + [anon_sym_union] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_switch] = ACTIONS(1364), + [anon_sym_case] = ACTIONS(1364), + [anon_sym_default] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_goto] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1366), + [anon_sym_PLUS_PLUS] = ACTIONS(1366), + [anon_sym_sizeof] = ACTIONS(1364), + [anon_sym_offsetof] = ACTIONS(1364), + [anon_sym__Generic] = ACTIONS(1364), + [anon_sym_asm] = ACTIONS(1364), + [anon_sym___asm__] = ACTIONS(1364), + [sym_number_literal] = ACTIONS(1366), + [anon_sym_L_SQUOTE] = ACTIONS(1366), + [anon_sym_u_SQUOTE] = ACTIONS(1366), + [anon_sym_U_SQUOTE] = ACTIONS(1366), + [anon_sym_u8_SQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_L_DQUOTE] = ACTIONS(1366), + [anon_sym_u_DQUOTE] = ACTIONS(1366), + [anon_sym_U_DQUOTE] = ACTIONS(1366), + [anon_sym_u8_DQUOTE] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym_true] = ACTIONS(1364), + [sym_false] = ACTIONS(1364), + [anon_sym_NULL] = ACTIONS(1364), + [anon_sym_nullptr] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + }, + [493] = { + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + }, + [494] = { + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym_offsetof] = ACTIONS(1430), + [anon_sym__Generic] = ACTIONS(1430), + [anon_sym_asm] = ACTIONS(1430), + [anon_sym___asm__] = ACTIONS(1430), + [sym_number_literal] = ACTIONS(1432), + [anon_sym_L_SQUOTE] = ACTIONS(1432), + [anon_sym_u_SQUOTE] = ACTIONS(1432), + [anon_sym_U_SQUOTE] = ACTIONS(1432), + [anon_sym_u8_SQUOTE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_L_DQUOTE] = ACTIONS(1432), + [anon_sym_u_DQUOTE] = ACTIONS(1432), + [anon_sym_U_DQUOTE] = ACTIONS(1432), + [anon_sym_u8_DQUOTE] = ACTIONS(1432), + [anon_sym_DQUOTE] = ACTIONS(1432), + [sym_true] = ACTIONS(1430), + [sym_false] = ACTIONS(1430), + [anon_sym_NULL] = ACTIONS(1430), + [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [505] = { + [495] = { [ts_builtin_sym_end] = ACTIONS(1428), [sym_identifier] = ACTIONS(1426), [aux_sym_preproc_include_token1] = ACTIONS(1426), @@ -63719,175 +62815,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [506] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym_offsetof] = ACTIONS(1402), - [anon_sym__Generic] = ACTIONS(1402), - [anon_sym_asm] = ACTIONS(1402), - [anon_sym___asm__] = ACTIONS(1402), - [sym_number_literal] = ACTIONS(1404), - [anon_sym_L_SQUOTE] = ACTIONS(1404), - [anon_sym_u_SQUOTE] = ACTIONS(1404), - [anon_sym_U_SQUOTE] = ACTIONS(1404), - [anon_sym_u8_SQUOTE] = ACTIONS(1404), - [anon_sym_SQUOTE] = ACTIONS(1404), - [anon_sym_L_DQUOTE] = ACTIONS(1404), - [anon_sym_u_DQUOTE] = ACTIONS(1404), - [anon_sym_U_DQUOTE] = ACTIONS(1404), - [anon_sym_u8_DQUOTE] = ACTIONS(1404), - [anon_sym_DQUOTE] = ACTIONS(1404), - [sym_true] = ACTIONS(1402), - [sym_false] = ACTIONS(1402), - [anon_sym_NULL] = ACTIONS(1402), - [anon_sym_nullptr] = ACTIONS(1402), - [sym_comment] = ACTIONS(3), - }, - [507] = { - [ts_builtin_sym_end] = ACTIONS(1354), - [sym_identifier] = ACTIONS(1352), - [aux_sym_preproc_include_token1] = ACTIONS(1352), - [aux_sym_preproc_def_token1] = ACTIONS(1352), - [aux_sym_preproc_if_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), - [sym_preproc_directive] = ACTIONS(1352), - [anon_sym_LPAREN2] = ACTIONS(1354), - [anon_sym_BANG] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1354), - [anon_sym_AMP] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1352), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym___attribute__] = ACTIONS(1352), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), - [anon_sym___declspec] = ACTIONS(1352), - [anon_sym___cdecl] = ACTIONS(1352), - [anon_sym___clrcall] = ACTIONS(1352), - [anon_sym___stdcall] = ACTIONS(1352), - [anon_sym___fastcall] = ACTIONS(1352), - [anon_sym___thiscall] = ACTIONS(1352), - [anon_sym___vectorcall] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_thread_local] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_constexpr] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym___restrict__] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym__Noreturn] = ACTIONS(1352), - [anon_sym_noreturn] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [anon_sym_if] = ACTIONS(1352), - [anon_sym_switch] = ACTIONS(1352), - [anon_sym_case] = ACTIONS(1352), - [anon_sym_default] = ACTIONS(1352), - [anon_sym_while] = ACTIONS(1352), - [anon_sym_do] = ACTIONS(1352), - [anon_sym_for] = ACTIONS(1352), - [anon_sym_return] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1352), - [anon_sym_continue] = ACTIONS(1352), - [anon_sym_goto] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1354), - [anon_sym_PLUS_PLUS] = ACTIONS(1354), - [anon_sym_sizeof] = ACTIONS(1352), - [anon_sym_offsetof] = ACTIONS(1352), - [anon_sym__Generic] = ACTIONS(1352), - [anon_sym_asm] = ACTIONS(1352), - [anon_sym___asm__] = ACTIONS(1352), - [sym_number_literal] = ACTIONS(1354), - [anon_sym_L_SQUOTE] = ACTIONS(1354), - [anon_sym_u_SQUOTE] = ACTIONS(1354), - [anon_sym_U_SQUOTE] = ACTIONS(1354), - [anon_sym_u8_SQUOTE] = ACTIONS(1354), - [anon_sym_SQUOTE] = ACTIONS(1354), - [anon_sym_L_DQUOTE] = ACTIONS(1354), - [anon_sym_u_DQUOTE] = ACTIONS(1354), - [anon_sym_U_DQUOTE] = ACTIONS(1354), - [anon_sym_u8_DQUOTE] = ACTIONS(1354), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_true] = ACTIONS(1352), - [sym_false] = ACTIONS(1352), - [anon_sym_NULL] = ACTIONS(1352), - [anon_sym_nullptr] = ACTIONS(1352), + [496] = { + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1384), + [aux_sym_preproc_include_token1] = ACTIONS(1384), + [aux_sym_preproc_def_token1] = ACTIONS(1384), + [aux_sym_preproc_if_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1384), + [sym_preproc_directive] = ACTIONS(1384), + [anon_sym_LPAREN2] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1386), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym___attribute__] = ACTIONS(1384), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1386), + [anon_sym___declspec] = ACTIONS(1384), + [anon_sym___cdecl] = ACTIONS(1384), + [anon_sym___clrcall] = ACTIONS(1384), + [anon_sym___stdcall] = ACTIONS(1384), + [anon_sym___fastcall] = ACTIONS(1384), + [anon_sym___thiscall] = ACTIONS(1384), + [anon_sym___vectorcall] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_auto] = ACTIONS(1384), + [anon_sym_register] = ACTIONS(1384), + [anon_sym_inline] = ACTIONS(1384), + [anon_sym_thread_local] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [sym_primitive_type] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_switch] = ACTIONS(1384), + [anon_sym_case] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_do] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_goto] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1384), + [anon_sym_offsetof] = ACTIONS(1384), + [anon_sym__Generic] = ACTIONS(1384), + [anon_sym_asm] = ACTIONS(1384), + [anon_sym___asm__] = ACTIONS(1384), + [sym_number_literal] = ACTIONS(1386), + [anon_sym_L_SQUOTE] = ACTIONS(1386), + [anon_sym_u_SQUOTE] = ACTIONS(1386), + [anon_sym_U_SQUOTE] = ACTIONS(1386), + [anon_sym_u8_SQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_L_DQUOTE] = ACTIONS(1386), + [anon_sym_u_DQUOTE] = ACTIONS(1386), + [anon_sym_U_DQUOTE] = ACTIONS(1386), + [anon_sym_u8_DQUOTE] = ACTIONS(1386), + [anon_sym_DQUOTE] = ACTIONS(1386), + [sym_true] = ACTIONS(1384), + [sym_false] = ACTIONS(1384), + [anon_sym_NULL] = ACTIONS(1384), + [anon_sym_nullptr] = ACTIONS(1384), [sym_comment] = ACTIONS(3), }, - [508] = { + [497] = { [ts_builtin_sym_end] = ACTIONS(1424), [sym_identifier] = ACTIONS(1422), [aux_sym_preproc_include_token1] = ACTIONS(1422), @@ -63971,91 +62983,595 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, - [509] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [498] = { + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1376), + [aux_sym_preproc_include_token1] = ACTIONS(1376), + [aux_sym_preproc_def_token1] = ACTIONS(1376), + [aux_sym_preproc_if_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1376), + [sym_preproc_directive] = ACTIONS(1376), + [anon_sym_LPAREN2] = ACTIONS(1378), + [anon_sym_BANG] = ACTIONS(1378), + [anon_sym_TILDE] = ACTIONS(1378), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1378), + [anon_sym_AMP] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym___attribute__] = ACTIONS(1376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1378), + [anon_sym___declspec] = ACTIONS(1376), + [anon_sym___cdecl] = ACTIONS(1376), + [anon_sym___clrcall] = ACTIONS(1376), + [anon_sym___stdcall] = ACTIONS(1376), + [anon_sym___fastcall] = ACTIONS(1376), + [anon_sym___thiscall] = ACTIONS(1376), + [anon_sym___vectorcall] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = ACTIONS(1376), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_auto] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_inline] = ACTIONS(1376), + [anon_sym_thread_local] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_constexpr] = ACTIONS(1376), + [anon_sym_volatile] = ACTIONS(1376), + [anon_sym_restrict] = ACTIONS(1376), + [anon_sym___restrict__] = ACTIONS(1376), + [anon_sym__Atomic] = ACTIONS(1376), + [anon_sym__Noreturn] = ACTIONS(1376), + [anon_sym_noreturn] = ACTIONS(1376), + [sym_primitive_type] = ACTIONS(1376), + [anon_sym_enum] = ACTIONS(1376), + [anon_sym_struct] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_switch] = ACTIONS(1376), + [anon_sym_case] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_goto] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1378), + [anon_sym_PLUS_PLUS] = ACTIONS(1378), + [anon_sym_sizeof] = ACTIONS(1376), + [anon_sym_offsetof] = ACTIONS(1376), + [anon_sym__Generic] = ACTIONS(1376), + [anon_sym_asm] = ACTIONS(1376), + [anon_sym___asm__] = ACTIONS(1376), + [sym_number_literal] = ACTIONS(1378), + [anon_sym_L_SQUOTE] = ACTIONS(1378), + [anon_sym_u_SQUOTE] = ACTIONS(1378), + [anon_sym_U_SQUOTE] = ACTIONS(1378), + [anon_sym_u8_SQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_L_DQUOTE] = ACTIONS(1378), + [anon_sym_u_DQUOTE] = ACTIONS(1378), + [anon_sym_U_DQUOTE] = ACTIONS(1378), + [anon_sym_u8_DQUOTE] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1378), + [sym_true] = ACTIONS(1376), + [sym_false] = ACTIONS(1376), + [anon_sym_NULL] = ACTIONS(1376), + [anon_sym_nullptr] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + }, + [499] = { + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1380), + [aux_sym_preproc_include_token1] = ACTIONS(1380), + [aux_sym_preproc_def_token1] = ACTIONS(1380), + [aux_sym_preproc_if_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1380), + [sym_preproc_directive] = ACTIONS(1380), + [anon_sym_LPAREN2] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym___attribute__] = ACTIONS(1380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1382), + [anon_sym___declspec] = ACTIONS(1380), + [anon_sym___cdecl] = ACTIONS(1380), + [anon_sym___clrcall] = ACTIONS(1380), + [anon_sym___stdcall] = ACTIONS(1380), + [anon_sym___fastcall] = ACTIONS(1380), + [anon_sym___thiscall] = ACTIONS(1380), + [anon_sym___vectorcall] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym_thread_local] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_constexpr] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym___restrict__] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym__Noreturn] = ACTIONS(1380), + [anon_sym_noreturn] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_switch] = ACTIONS(1380), + [anon_sym_case] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_do] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_goto] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1382), + [anon_sym_PLUS_PLUS] = ACTIONS(1382), + [anon_sym_sizeof] = ACTIONS(1380), + [anon_sym_offsetof] = ACTIONS(1380), + [anon_sym__Generic] = ACTIONS(1380), + [anon_sym_asm] = ACTIONS(1380), + [anon_sym___asm__] = ACTIONS(1380), + [sym_number_literal] = ACTIONS(1382), + [anon_sym_L_SQUOTE] = ACTIONS(1382), + [anon_sym_u_SQUOTE] = ACTIONS(1382), + [anon_sym_U_SQUOTE] = ACTIONS(1382), + [anon_sym_u8_SQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_L_DQUOTE] = ACTIONS(1382), + [anon_sym_u_DQUOTE] = ACTIONS(1382), + [anon_sym_U_DQUOTE] = ACTIONS(1382), + [anon_sym_u8_DQUOTE] = ACTIONS(1382), + [anon_sym_DQUOTE] = ACTIONS(1382), + [sym_true] = ACTIONS(1380), + [sym_false] = ACTIONS(1380), + [anon_sym_NULL] = ACTIONS(1380), + [anon_sym_nullptr] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + }, + [500] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_switch] = ACTIONS(1406), + [anon_sym_case] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_do] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_goto] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym_offsetof] = ACTIONS(1406), + [anon_sym__Generic] = ACTIONS(1406), + [anon_sym_asm] = ACTIONS(1406), + [anon_sym___asm__] = ACTIONS(1406), + [sym_number_literal] = ACTIONS(1408), + [anon_sym_L_SQUOTE] = ACTIONS(1408), + [anon_sym_u_SQUOTE] = ACTIONS(1408), + [anon_sym_U_SQUOTE] = ACTIONS(1408), + [anon_sym_u8_SQUOTE] = ACTIONS(1408), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_L_DQUOTE] = ACTIONS(1408), + [anon_sym_u_DQUOTE] = ACTIONS(1408), + [anon_sym_U_DQUOTE] = ACTIONS(1408), + [anon_sym_u8_DQUOTE] = ACTIONS(1408), + [anon_sym_DQUOTE] = ACTIONS(1408), + [sym_true] = ACTIONS(1406), + [sym_false] = ACTIONS(1406), + [anon_sym_NULL] = ACTIONS(1406), + [anon_sym_nullptr] = ACTIONS(1406), + [sym_comment] = ACTIONS(3), + }, + [501] = { + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1388), + [aux_sym_preproc_include_token1] = ACTIONS(1388), + [aux_sym_preproc_def_token1] = ACTIONS(1388), + [aux_sym_preproc_if_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1388), + [sym_preproc_directive] = ACTIONS(1388), + [anon_sym_LPAREN2] = ACTIONS(1390), + [anon_sym_BANG] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1390), + [anon_sym_AMP] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym___attribute__] = ACTIONS(1388), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1390), + [anon_sym___declspec] = ACTIONS(1388), + [anon_sym___cdecl] = ACTIONS(1388), + [anon_sym___clrcall] = ACTIONS(1388), + [anon_sym___stdcall] = ACTIONS(1388), + [anon_sym___fastcall] = ACTIONS(1388), + [anon_sym___thiscall] = ACTIONS(1388), + [anon_sym___vectorcall] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_auto] = ACTIONS(1388), + [anon_sym_register] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym_thread_local] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_constexpr] = ACTIONS(1388), + [anon_sym_volatile] = ACTIONS(1388), + [anon_sym_restrict] = ACTIONS(1388), + [anon_sym___restrict__] = ACTIONS(1388), + [anon_sym__Atomic] = ACTIONS(1388), + [anon_sym__Noreturn] = ACTIONS(1388), + [anon_sym_noreturn] = ACTIONS(1388), + [sym_primitive_type] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_goto] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1390), + [anon_sym_sizeof] = ACTIONS(1388), + [anon_sym_offsetof] = ACTIONS(1388), + [anon_sym__Generic] = ACTIONS(1388), + [anon_sym_asm] = ACTIONS(1388), + [anon_sym___asm__] = ACTIONS(1388), + [sym_number_literal] = ACTIONS(1390), + [anon_sym_L_SQUOTE] = ACTIONS(1390), + [anon_sym_u_SQUOTE] = ACTIONS(1390), + [anon_sym_U_SQUOTE] = ACTIONS(1390), + [anon_sym_u8_SQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_L_DQUOTE] = ACTIONS(1390), + [anon_sym_u_DQUOTE] = ACTIONS(1390), + [anon_sym_U_DQUOTE] = ACTIONS(1390), + [anon_sym_u8_DQUOTE] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_true] = ACTIONS(1388), + [sym_false] = ACTIONS(1388), + [anon_sym_NULL] = ACTIONS(1388), + [anon_sym_nullptr] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + }, + [502] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym_offsetof] = ACTIONS(1414), + [anon_sym__Generic] = ACTIONS(1414), + [anon_sym_asm] = ACTIONS(1414), + [anon_sym___asm__] = ACTIONS(1414), + [sym_number_literal] = ACTIONS(1416), + [anon_sym_L_SQUOTE] = ACTIONS(1416), + [anon_sym_u_SQUOTE] = ACTIONS(1416), + [anon_sym_U_SQUOTE] = ACTIONS(1416), + [anon_sym_u8_SQUOTE] = ACTIONS(1416), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_L_DQUOTE] = ACTIONS(1416), + [anon_sym_u_DQUOTE] = ACTIONS(1416), + [anon_sym_U_DQUOTE] = ACTIONS(1416), + [anon_sym_u8_DQUOTE] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(1416), + [sym_true] = ACTIONS(1414), + [sym_false] = ACTIONS(1414), + [anon_sym_NULL] = ACTIONS(1414), + [anon_sym_nullptr] = ACTIONS(1414), + [sym_comment] = ACTIONS(3), + }, + [503] = { + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [aux_sym_preproc_if_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1352), + [sym_preproc_directive] = ACTIONS(1352), + [anon_sym_LPAREN2] = ACTIONS(1354), + [anon_sym_BANG] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1354), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1354), + [anon_sym___declspec] = ACTIONS(1352), + [anon_sym___cdecl] = ACTIONS(1352), + [anon_sym___clrcall] = ACTIONS(1352), + [anon_sym___stdcall] = ACTIONS(1352), + [anon_sym___fastcall] = ACTIONS(1352), + [anon_sym___thiscall] = ACTIONS(1352), + [anon_sym___vectorcall] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1354), + [anon_sym_PLUS_PLUS] = ACTIONS(1354), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [sym_number_literal] = ACTIONS(1354), + [anon_sym_L_SQUOTE] = ACTIONS(1354), + [anon_sym_u_SQUOTE] = ACTIONS(1354), + [anon_sym_U_SQUOTE] = ACTIONS(1354), + [anon_sym_u8_SQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_L_DQUOTE] = ACTIONS(1354), + [anon_sym_u_DQUOTE] = ACTIONS(1354), + [anon_sym_U_DQUOTE] = ACTIONS(1354), + [anon_sym_u8_DQUOTE] = ACTIONS(1354), + [anon_sym_DQUOTE] = ACTIONS(1354), + [sym_true] = ACTIONS(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), + [sym_comment] = ACTIONS(3), + }, + [504] = { + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [510] = { + [505] = { [ts_builtin_sym_end] = ACTIONS(1420), [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), @@ -64139,91 +63655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [511] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1430), - [aux_sym_preproc_include_token1] = ACTIONS(1430), - [aux_sym_preproc_def_token1] = ACTIONS(1430), - [aux_sym_preproc_if_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), - [sym_preproc_directive] = ACTIONS(1430), - [anon_sym_LPAREN2] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym___attribute__] = ACTIONS(1430), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), - [anon_sym___declspec] = ACTIONS(1430), - [anon_sym___cdecl] = ACTIONS(1430), - [anon_sym___clrcall] = ACTIONS(1430), - [anon_sym___stdcall] = ACTIONS(1430), - [anon_sym___fastcall] = ACTIONS(1430), - [anon_sym___thiscall] = ACTIONS(1430), - [anon_sym___vectorcall] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_auto] = ACTIONS(1430), - [anon_sym_register] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_thread_local] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1430), - [anon_sym_constexpr] = ACTIONS(1430), - [anon_sym_volatile] = ACTIONS(1430), - [anon_sym_restrict] = ACTIONS(1430), - [anon_sym___restrict__] = ACTIONS(1430), - [anon_sym__Atomic] = ACTIONS(1430), - [anon_sym__Noreturn] = ACTIONS(1430), - [anon_sym_noreturn] = ACTIONS(1430), - [sym_primitive_type] = ACTIONS(1430), - [anon_sym_enum] = ACTIONS(1430), - [anon_sym_struct] = ACTIONS(1430), - [anon_sym_union] = ACTIONS(1430), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1430), - [anon_sym_do] = ACTIONS(1430), - [anon_sym_for] = ACTIONS(1430), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_goto] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_sizeof] = ACTIONS(1430), - [anon_sym_offsetof] = ACTIONS(1430), - [anon_sym__Generic] = ACTIONS(1430), - [anon_sym_asm] = ACTIONS(1430), - [anon_sym___asm__] = ACTIONS(1430), - [sym_number_literal] = ACTIONS(1432), - [anon_sym_L_SQUOTE] = ACTIONS(1432), - [anon_sym_u_SQUOTE] = ACTIONS(1432), - [anon_sym_U_SQUOTE] = ACTIONS(1432), - [anon_sym_u8_SQUOTE] = ACTIONS(1432), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_L_DQUOTE] = ACTIONS(1432), - [anon_sym_u_DQUOTE] = ACTIONS(1432), - [anon_sym_U_DQUOTE] = ACTIONS(1432), - [anon_sym_u8_DQUOTE] = ACTIONS(1432), - [anon_sym_DQUOTE] = ACTIONS(1432), - [sym_true] = ACTIONS(1430), - [sym_false] = ACTIONS(1430), - [anon_sym_NULL] = ACTIONS(1430), - [anon_sym_nullptr] = ACTIONS(1430), - [sym_comment] = ACTIONS(3), - }, - [512] = { + [506] = { [ts_builtin_sym_end] = ACTIONS(1400), [sym_identifier] = ACTIONS(1398), [aux_sym_preproc_include_token1] = ACTIONS(1398), @@ -64307,175 +63739,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1398), [sym_comment] = ACTIONS(3), }, - [513] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_identifier] = ACTIONS(1360), - [aux_sym_preproc_include_token1] = ACTIONS(1360), - [aux_sym_preproc_def_token1] = ACTIONS(1360), - [aux_sym_preproc_if_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), - [sym_preproc_directive] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1362), - [anon_sym_TILDE] = ACTIONS(1362), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym___attribute__] = ACTIONS(1360), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), - [anon_sym___declspec] = ACTIONS(1360), - [anon_sym___cdecl] = ACTIONS(1360), - [anon_sym___clrcall] = ACTIONS(1360), - [anon_sym___stdcall] = ACTIONS(1360), - [anon_sym___fastcall] = ACTIONS(1360), - [anon_sym___thiscall] = ACTIONS(1360), - [anon_sym___vectorcall] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1362), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_auto] = ACTIONS(1360), - [anon_sym_register] = ACTIONS(1360), - [anon_sym_inline] = ACTIONS(1360), - [anon_sym_thread_local] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_constexpr] = ACTIONS(1360), - [anon_sym_volatile] = ACTIONS(1360), - [anon_sym_restrict] = ACTIONS(1360), - [anon_sym___restrict__] = ACTIONS(1360), - [anon_sym__Atomic] = ACTIONS(1360), - [anon_sym__Noreturn] = ACTIONS(1360), - [anon_sym_noreturn] = ACTIONS(1360), - [sym_primitive_type] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_switch] = ACTIONS(1360), - [anon_sym_case] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_do] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_goto] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1362), - [anon_sym_PLUS_PLUS] = ACTIONS(1362), - [anon_sym_sizeof] = ACTIONS(1360), - [anon_sym_offsetof] = ACTIONS(1360), - [anon_sym__Generic] = ACTIONS(1360), - [anon_sym_asm] = ACTIONS(1360), - [anon_sym___asm__] = ACTIONS(1360), - [sym_number_literal] = ACTIONS(1362), - [anon_sym_L_SQUOTE] = ACTIONS(1362), - [anon_sym_u_SQUOTE] = ACTIONS(1362), - [anon_sym_U_SQUOTE] = ACTIONS(1362), - [anon_sym_u8_SQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1362), - [anon_sym_L_DQUOTE] = ACTIONS(1362), - [anon_sym_u_DQUOTE] = ACTIONS(1362), - [anon_sym_U_DQUOTE] = ACTIONS(1362), - [anon_sym_u8_DQUOTE] = ACTIONS(1362), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_true] = ACTIONS(1360), - [sym_false] = ACTIONS(1360), - [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), + [507] = { + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_switch] = ACTIONS(1402), + [anon_sym_case] = ACTIONS(1402), + [anon_sym_default] = ACTIONS(1402), + [anon_sym_while] = ACTIONS(1402), + [anon_sym_do] = ACTIONS(1402), + [anon_sym_for] = ACTIONS(1402), + [anon_sym_return] = ACTIONS(1402), + [anon_sym_break] = ACTIONS(1402), + [anon_sym_continue] = ACTIONS(1402), + [anon_sym_goto] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym_offsetof] = ACTIONS(1402), + [anon_sym__Generic] = ACTIONS(1402), + [anon_sym_asm] = ACTIONS(1402), + [anon_sym___asm__] = ACTIONS(1402), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1404), + [anon_sym_u_SQUOTE] = ACTIONS(1404), + [anon_sym_U_SQUOTE] = ACTIONS(1404), + [anon_sym_u8_SQUOTE] = ACTIONS(1404), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_L_DQUOTE] = ACTIONS(1404), + [anon_sym_u_DQUOTE] = ACTIONS(1404), + [anon_sym_U_DQUOTE] = ACTIONS(1404), + [anon_sym_u8_DQUOTE] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_true] = ACTIONS(1402), + [sym_false] = ACTIONS(1402), + [anon_sym_NULL] = ACTIONS(1402), + [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [514] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [508] = { + [ts_builtin_sym_end] = ACTIONS(1743), + [sym_identifier] = ACTIONS(1745), + [aux_sym_preproc_include_token1] = ACTIONS(1745), + [aux_sym_preproc_def_token1] = ACTIONS(1745), + [aux_sym_preproc_if_token1] = ACTIONS(1745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1745), + [sym_preproc_directive] = ACTIONS(1745), + [anon_sym_LPAREN2] = ACTIONS(1743), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1745), + [anon_sym_STAR] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_typedef] = ACTIONS(1745), + [anon_sym_extern] = ACTIONS(1745), + [anon_sym___attribute__] = ACTIONS(1745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1743), + [anon_sym___declspec] = ACTIONS(1745), + [anon_sym___cdecl] = ACTIONS(1745), + [anon_sym___clrcall] = ACTIONS(1745), + [anon_sym___stdcall] = ACTIONS(1745), + [anon_sym___fastcall] = ACTIONS(1745), + [anon_sym___thiscall] = ACTIONS(1745), + [anon_sym___vectorcall] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_signed] = ACTIONS(1745), + [anon_sym_unsigned] = ACTIONS(1745), + [anon_sym_long] = ACTIONS(1745), + [anon_sym_short] = ACTIONS(1745), + [anon_sym_static] = ACTIONS(1745), + [anon_sym_auto] = ACTIONS(1745), + [anon_sym_register] = ACTIONS(1745), + [anon_sym_inline] = ACTIONS(1745), + [anon_sym_thread_local] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_constexpr] = ACTIONS(1745), + [anon_sym_volatile] = ACTIONS(1745), + [anon_sym_restrict] = ACTIONS(1745), + [anon_sym___restrict__] = ACTIONS(1745), + [anon_sym__Atomic] = ACTIONS(1745), + [anon_sym__Noreturn] = ACTIONS(1745), + [anon_sym_noreturn] = ACTIONS(1745), + [sym_primitive_type] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_switch] = ACTIONS(1745), + [anon_sym_case] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1745), + [anon_sym_do] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_goto] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1743), + [anon_sym_PLUS_PLUS] = ACTIONS(1743), + [anon_sym_sizeof] = ACTIONS(1745), + [anon_sym_offsetof] = ACTIONS(1745), + [anon_sym__Generic] = ACTIONS(1745), + [anon_sym_asm] = ACTIONS(1745), + [anon_sym___asm__] = ACTIONS(1745), + [sym_number_literal] = ACTIONS(1743), + [anon_sym_L_SQUOTE] = ACTIONS(1743), + [anon_sym_u_SQUOTE] = ACTIONS(1743), + [anon_sym_U_SQUOTE] = ACTIONS(1743), + [anon_sym_u8_SQUOTE] = ACTIONS(1743), + [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_L_DQUOTE] = ACTIONS(1743), + [anon_sym_u_DQUOTE] = ACTIONS(1743), + [anon_sym_U_DQUOTE] = ACTIONS(1743), + [anon_sym_u8_DQUOTE] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1743), + [sym_true] = ACTIONS(1745), + [sym_false] = ACTIONS(1745), + [anon_sym_NULL] = ACTIONS(1745), + [anon_sym_nullptr] = ACTIONS(1745), [sym_comment] = ACTIONS(3), }, - [515] = { + [509] = { + [ts_builtin_sym_end] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1368), + [aux_sym_preproc_include_token1] = ACTIONS(1368), + [aux_sym_preproc_def_token1] = ACTIONS(1368), + [aux_sym_preproc_if_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1368), + [sym_preproc_directive] = ACTIONS(1368), + [anon_sym_LPAREN2] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1370), + [anon_sym_AMP] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1368), + [anon_sym___attribute__] = ACTIONS(1368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1370), + [anon_sym___declspec] = ACTIONS(1368), + [anon_sym___cdecl] = ACTIONS(1368), + [anon_sym___clrcall] = ACTIONS(1368), + [anon_sym___stdcall] = ACTIONS(1368), + [anon_sym___fastcall] = ACTIONS(1368), + [anon_sym___thiscall] = ACTIONS(1368), + [anon_sym___vectorcall] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1370), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1368), + [anon_sym_auto] = ACTIONS(1368), + [anon_sym_register] = ACTIONS(1368), + [anon_sym_inline] = ACTIONS(1368), + [anon_sym_thread_local] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_constexpr] = ACTIONS(1368), + [anon_sym_volatile] = ACTIONS(1368), + [anon_sym_restrict] = ACTIONS(1368), + [anon_sym___restrict__] = ACTIONS(1368), + [anon_sym__Atomic] = ACTIONS(1368), + [anon_sym__Noreturn] = ACTIONS(1368), + [anon_sym_noreturn] = ACTIONS(1368), + [sym_primitive_type] = ACTIONS(1368), + [anon_sym_enum] = ACTIONS(1368), + [anon_sym_struct] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_if] = ACTIONS(1368), + [anon_sym_switch] = ACTIONS(1368), + [anon_sym_case] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_while] = ACTIONS(1368), + [anon_sym_do] = ACTIONS(1368), + [anon_sym_for] = ACTIONS(1368), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1368), + [anon_sym_continue] = ACTIONS(1368), + [anon_sym_goto] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1370), + [anon_sym_sizeof] = ACTIONS(1368), + [anon_sym_offsetof] = ACTIONS(1368), + [anon_sym__Generic] = ACTIONS(1368), + [anon_sym_asm] = ACTIONS(1368), + [anon_sym___asm__] = ACTIONS(1368), + [sym_number_literal] = ACTIONS(1370), + [anon_sym_L_SQUOTE] = ACTIONS(1370), + [anon_sym_u_SQUOTE] = ACTIONS(1370), + [anon_sym_U_SQUOTE] = ACTIONS(1370), + [anon_sym_u8_SQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_L_DQUOTE] = ACTIONS(1370), + [anon_sym_u_DQUOTE] = ACTIONS(1370), + [anon_sym_U_DQUOTE] = ACTIONS(1370), + [anon_sym_u8_DQUOTE] = ACTIONS(1370), + [anon_sym_DQUOTE] = ACTIONS(1370), + [sym_true] = ACTIONS(1368), + [sym_false] = ACTIONS(1368), + [anon_sym_NULL] = ACTIONS(1368), + [anon_sym_nullptr] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + }, + [510] = { + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1348), + [aux_sym_preproc_include_token1] = ACTIONS(1348), + [aux_sym_preproc_def_token1] = ACTIONS(1348), + [aux_sym_preproc_if_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1348), + [sym_preproc_directive] = ACTIONS(1348), + [anon_sym_LPAREN2] = ACTIONS(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1348), + [anon_sym___attribute__] = ACTIONS(1348), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [anon_sym___declspec] = ACTIONS(1348), + [anon_sym___cdecl] = ACTIONS(1348), + [anon_sym___clrcall] = ACTIONS(1348), + [anon_sym___stdcall] = ACTIONS(1348), + [anon_sym___fastcall] = ACTIONS(1348), + [anon_sym___thiscall] = ACTIONS(1348), + [anon_sym___vectorcall] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = ACTIONS(1348), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_auto] = ACTIONS(1348), + [anon_sym_register] = ACTIONS(1348), + [anon_sym_inline] = ACTIONS(1348), + [anon_sym_thread_local] = ACTIONS(1348), + [anon_sym_const] = ACTIONS(1348), + [anon_sym_constexpr] = ACTIONS(1348), + [anon_sym_volatile] = ACTIONS(1348), + [anon_sym_restrict] = ACTIONS(1348), + [anon_sym___restrict__] = ACTIONS(1348), + [anon_sym__Atomic] = ACTIONS(1348), + [anon_sym__Noreturn] = ACTIONS(1348), + [anon_sym_noreturn] = ACTIONS(1348), + [sym_primitive_type] = ACTIONS(1348), + [anon_sym_enum] = ACTIONS(1348), + [anon_sym_struct] = ACTIONS(1348), + [anon_sym_union] = ACTIONS(1348), + [anon_sym_if] = ACTIONS(1348), + [anon_sym_switch] = ACTIONS(1348), + [anon_sym_case] = ACTIONS(1348), + [anon_sym_default] = ACTIONS(1348), + [anon_sym_while] = ACTIONS(1348), + [anon_sym_do] = ACTIONS(1348), + [anon_sym_for] = ACTIONS(1348), + [anon_sym_return] = ACTIONS(1348), + [anon_sym_break] = ACTIONS(1348), + [anon_sym_continue] = ACTIONS(1348), + [anon_sym_goto] = ACTIONS(1348), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1348), + [anon_sym_offsetof] = ACTIONS(1348), + [anon_sym__Generic] = ACTIONS(1348), + [anon_sym_asm] = ACTIONS(1348), + [anon_sym___asm__] = ACTIONS(1348), + [sym_number_literal] = ACTIONS(1350), + [anon_sym_L_SQUOTE] = ACTIONS(1350), + [anon_sym_u_SQUOTE] = ACTIONS(1350), + [anon_sym_U_SQUOTE] = ACTIONS(1350), + [anon_sym_u8_SQUOTE] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_L_DQUOTE] = ACTIONS(1350), + [anon_sym_u_DQUOTE] = ACTIONS(1350), + [anon_sym_U_DQUOTE] = ACTIONS(1350), + [anon_sym_u8_DQUOTE] = ACTIONS(1350), + [anon_sym_DQUOTE] = ACTIONS(1350), + [sym_true] = ACTIONS(1348), + [sym_false] = ACTIONS(1348), + [anon_sym_NULL] = ACTIONS(1348), + [anon_sym_nullptr] = ACTIONS(1348), + [sym_comment] = ACTIONS(3), + }, + [511] = { + [ts_builtin_sym_end] = ACTIONS(1374), + [sym_identifier] = ACTIONS(1372), + [aux_sym_preproc_include_token1] = ACTIONS(1372), + [aux_sym_preproc_def_token1] = ACTIONS(1372), + [aux_sym_preproc_if_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1372), + [sym_preproc_directive] = ACTIONS(1372), + [anon_sym_LPAREN2] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1372), + [anon_sym___attribute__] = ACTIONS(1372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1374), + [anon_sym___declspec] = ACTIONS(1372), + [anon_sym___cdecl] = ACTIONS(1372), + [anon_sym___clrcall] = ACTIONS(1372), + [anon_sym___stdcall] = ACTIONS(1372), + [anon_sym___fastcall] = ACTIONS(1372), + [anon_sym___thiscall] = ACTIONS(1372), + [anon_sym___vectorcall] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = ACTIONS(1372), + [anon_sym_static] = ACTIONS(1372), + [anon_sym_auto] = ACTIONS(1372), + [anon_sym_register] = ACTIONS(1372), + [anon_sym_inline] = ACTIONS(1372), + [anon_sym_thread_local] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_constexpr] = ACTIONS(1372), + [anon_sym_volatile] = ACTIONS(1372), + [anon_sym_restrict] = ACTIONS(1372), + [anon_sym___restrict__] = ACTIONS(1372), + [anon_sym__Atomic] = ACTIONS(1372), + [anon_sym__Noreturn] = ACTIONS(1372), + [anon_sym_noreturn] = ACTIONS(1372), + [sym_primitive_type] = ACTIONS(1372), + [anon_sym_enum] = ACTIONS(1372), + [anon_sym_struct] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_if] = ACTIONS(1372), + [anon_sym_switch] = ACTIONS(1372), + [anon_sym_case] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_while] = ACTIONS(1372), + [anon_sym_do] = ACTIONS(1372), + [anon_sym_for] = ACTIONS(1372), + [anon_sym_return] = ACTIONS(1372), + [anon_sym_break] = ACTIONS(1372), + [anon_sym_continue] = ACTIONS(1372), + [anon_sym_goto] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1374), + [anon_sym_PLUS_PLUS] = ACTIONS(1374), + [anon_sym_sizeof] = ACTIONS(1372), + [anon_sym_offsetof] = ACTIONS(1372), + [anon_sym__Generic] = ACTIONS(1372), + [anon_sym_asm] = ACTIONS(1372), + [anon_sym___asm__] = ACTIONS(1372), + [sym_number_literal] = ACTIONS(1374), + [anon_sym_L_SQUOTE] = ACTIONS(1374), + [anon_sym_u_SQUOTE] = ACTIONS(1374), + [anon_sym_U_SQUOTE] = ACTIONS(1374), + [anon_sym_u8_SQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_L_DQUOTE] = ACTIONS(1374), + [anon_sym_u_DQUOTE] = ACTIONS(1374), + [anon_sym_U_DQUOTE] = ACTIONS(1374), + [anon_sym_u8_DQUOTE] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [sym_true] = ACTIONS(1372), + [sym_false] = ACTIONS(1372), + [anon_sym_NULL] = ACTIONS(1372), + [anon_sym_nullptr] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + }, + [512] = { [ts_builtin_sym_end] = ACTIONS(1366), [sym_identifier] = ACTIONS(1364), [aux_sym_preproc_include_token1] = ACTIONS(1364), @@ -64559,40 +64243,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, + [513] = { + [ts_builtin_sym_end] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1356), + [aux_sym_preproc_include_token1] = ACTIONS(1356), + [aux_sym_preproc_def_token1] = ACTIONS(1356), + [aux_sym_preproc_if_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1356), + [sym_preproc_directive] = ACTIONS(1356), + [anon_sym_LPAREN2] = ACTIONS(1358), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_TILDE] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym___attribute__] = ACTIONS(1356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1358), + [anon_sym___declspec] = ACTIONS(1356), + [anon_sym___cdecl] = ACTIONS(1356), + [anon_sym___clrcall] = ACTIONS(1356), + [anon_sym___stdcall] = ACTIONS(1356), + [anon_sym___fastcall] = ACTIONS(1356), + [anon_sym___thiscall] = ACTIONS(1356), + [anon_sym___vectorcall] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1358), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_auto] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_inline] = ACTIONS(1356), + [anon_sym_thread_local] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_constexpr] = ACTIONS(1356), + [anon_sym_volatile] = ACTIONS(1356), + [anon_sym_restrict] = ACTIONS(1356), + [anon_sym___restrict__] = ACTIONS(1356), + [anon_sym__Atomic] = ACTIONS(1356), + [anon_sym__Noreturn] = ACTIONS(1356), + [anon_sym_noreturn] = ACTIONS(1356), + [sym_primitive_type] = ACTIONS(1356), + [anon_sym_enum] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_goto] = ACTIONS(1356), + [anon_sym_DASH_DASH] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1358), + [anon_sym_sizeof] = ACTIONS(1356), + [anon_sym_offsetof] = ACTIONS(1356), + [anon_sym__Generic] = ACTIONS(1356), + [anon_sym_asm] = ACTIONS(1356), + [anon_sym___asm__] = ACTIONS(1356), + [sym_number_literal] = ACTIONS(1358), + [anon_sym_L_SQUOTE] = ACTIONS(1358), + [anon_sym_u_SQUOTE] = ACTIONS(1358), + [anon_sym_U_SQUOTE] = ACTIONS(1358), + [anon_sym_u8_SQUOTE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_L_DQUOTE] = ACTIONS(1358), + [anon_sym_u_DQUOTE] = ACTIONS(1358), + [anon_sym_U_DQUOTE] = ACTIONS(1358), + [anon_sym_u8_DQUOTE] = ACTIONS(1358), + [anon_sym_DQUOTE] = ACTIONS(1358), + [sym_true] = ACTIONS(1356), + [sym_false] = ACTIONS(1356), + [anon_sym_NULL] = ACTIONS(1356), + [anon_sym_nullptr] = ACTIONS(1356), + [sym_comment] = ACTIONS(3), + }, + [514] = { + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1410), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1410), + [sym_preproc_directive] = ACTIONS(1410), + [anon_sym_LPAREN2] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_switch] = ACTIONS(1410), + [anon_sym_case] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_do] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_goto] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym_offsetof] = ACTIONS(1410), + [anon_sym__Generic] = ACTIONS(1410), + [anon_sym_asm] = ACTIONS(1410), + [anon_sym___asm__] = ACTIONS(1410), + [sym_number_literal] = ACTIONS(1412), + [anon_sym_L_SQUOTE] = ACTIONS(1412), + [anon_sym_u_SQUOTE] = ACTIONS(1412), + [anon_sym_U_SQUOTE] = ACTIONS(1412), + [anon_sym_u8_SQUOTE] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_L_DQUOTE] = ACTIONS(1412), + [anon_sym_u_DQUOTE] = ACTIONS(1412), + [anon_sym_U_DQUOTE] = ACTIONS(1412), + [anon_sym_u8_DQUOTE] = ACTIONS(1412), + [anon_sym_DQUOTE] = ACTIONS(1412), + [sym_true] = ACTIONS(1410), + [sym_false] = ACTIONS(1410), + [anon_sym_NULL] = ACTIONS(1410), + [anon_sym_nullptr] = ACTIONS(1410), + [sym_comment] = ACTIONS(3), + }, + [515] = { + [ts_builtin_sym_end] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1360), + [aux_sym_preproc_include_token1] = ACTIONS(1360), + [aux_sym_preproc_def_token1] = ACTIONS(1360), + [aux_sym_preproc_if_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1360), + [sym_preproc_directive] = ACTIONS(1360), + [anon_sym_LPAREN2] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1362), + [anon_sym_TILDE] = ACTIONS(1362), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_AMP] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1360), + [anon_sym___attribute__] = ACTIONS(1360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1362), + [anon_sym___declspec] = ACTIONS(1360), + [anon_sym___cdecl] = ACTIONS(1360), + [anon_sym___clrcall] = ACTIONS(1360), + [anon_sym___stdcall] = ACTIONS(1360), + [anon_sym___fastcall] = ACTIONS(1360), + [anon_sym___thiscall] = ACTIONS(1360), + [anon_sym___vectorcall] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = ACTIONS(1360), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_auto] = ACTIONS(1360), + [anon_sym_register] = ACTIONS(1360), + [anon_sym_inline] = ACTIONS(1360), + [anon_sym_thread_local] = ACTIONS(1360), + [anon_sym_const] = ACTIONS(1360), + [anon_sym_constexpr] = ACTIONS(1360), + [anon_sym_volatile] = ACTIONS(1360), + [anon_sym_restrict] = ACTIONS(1360), + [anon_sym___restrict__] = ACTIONS(1360), + [anon_sym__Atomic] = ACTIONS(1360), + [anon_sym__Noreturn] = ACTIONS(1360), + [anon_sym_noreturn] = ACTIONS(1360), + [sym_primitive_type] = ACTIONS(1360), + [anon_sym_enum] = ACTIONS(1360), + [anon_sym_struct] = ACTIONS(1360), + [anon_sym_union] = ACTIONS(1360), + [anon_sym_if] = ACTIONS(1360), + [anon_sym_switch] = ACTIONS(1360), + [anon_sym_case] = ACTIONS(1360), + [anon_sym_default] = ACTIONS(1360), + [anon_sym_while] = ACTIONS(1360), + [anon_sym_do] = ACTIONS(1360), + [anon_sym_for] = ACTIONS(1360), + [anon_sym_return] = ACTIONS(1360), + [anon_sym_break] = ACTIONS(1360), + [anon_sym_continue] = ACTIONS(1360), + [anon_sym_goto] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1362), + [anon_sym_PLUS_PLUS] = ACTIONS(1362), + [anon_sym_sizeof] = ACTIONS(1360), + [anon_sym_offsetof] = ACTIONS(1360), + [anon_sym__Generic] = ACTIONS(1360), + [anon_sym_asm] = ACTIONS(1360), + [anon_sym___asm__] = ACTIONS(1360), + [sym_number_literal] = ACTIONS(1362), + [anon_sym_L_SQUOTE] = ACTIONS(1362), + [anon_sym_u_SQUOTE] = ACTIONS(1362), + [anon_sym_U_SQUOTE] = ACTIONS(1362), + [anon_sym_u8_SQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_L_DQUOTE] = ACTIONS(1362), + [anon_sym_u_DQUOTE] = ACTIONS(1362), + [anon_sym_U_DQUOTE] = ACTIONS(1362), + [anon_sym_u8_DQUOTE] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym_true] = ACTIONS(1360), + [sym_false] = ACTIONS(1360), + [anon_sym_NULL] = ACTIONS(1360), + [anon_sym_nullptr] = ACTIONS(1360), + [sym_comment] = ACTIONS(3), + }, [516] = { - [sym_type_qualifier] = STATE(1176), - [sym__type_specifier] = STATE(1219), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1102), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_type_qualifier] = STATE(1183), + [sym__type_specifier] = STATE(1228), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1753), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_type_descriptor] = STATE(1818), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_type_descriptor] = STATE(1863), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_type_definition_repeat1] = STATE(1176), - [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_type_definition_repeat1] = STATE(1183), + [aux_sym_sized_type_specifier_repeat1] = STATE(1241), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64642,39 +64578,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [517] = { - [sym_type_qualifier] = STATE(1176), - [sym__type_specifier] = STATE(1219), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1102), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_type_qualifier] = STATE(1183), + [sym__type_specifier] = STATE(1228), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1753), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_type_descriptor] = STATE(1758), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_type_descriptor] = STATE(1992), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_type_definition_repeat1] = STATE(1176), - [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_type_definition_repeat1] = STATE(1183), + [aux_sym_sized_type_specifier_repeat1] = STATE(1241), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64724,39 +64660,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [518] = { - [sym_type_qualifier] = STATE(1176), - [sym__type_specifier] = STATE(1219), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1102), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_type_qualifier] = STATE(1183), + [sym__type_specifier] = STATE(1228), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1753), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_type_descriptor] = STATE(1953), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_type_descriptor] = STATE(1754), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_type_definition_repeat1] = STATE(1176), - [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_type_definition_repeat1] = STATE(1183), + [aux_sym_sized_type_specifier_repeat1] = STATE(1241), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64806,39 +64742,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [519] = { - [sym_type_qualifier] = STATE(1176), - [sym__type_specifier] = STATE(1219), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1102), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_type_qualifier] = STATE(1183), + [sym__type_specifier] = STATE(1228), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1753), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_type_descriptor] = STATE(1979), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_type_descriptor] = STATE(1829), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_type_definition_repeat1] = STATE(1176), - [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_type_definition_repeat1] = STATE(1183), + [aux_sym_sized_type_specifier_repeat1] = STATE(1241), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64888,39 +64824,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [520] = { - [sym_type_qualifier] = STATE(1176), - [sym__type_specifier] = STATE(1219), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1102), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_type_qualifier] = STATE(1183), + [sym__type_specifier] = STATE(1228), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1753), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_type_descriptor] = STATE(1884), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_type_descriptor] = STATE(1798), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_type_definition_repeat1] = STATE(1176), - [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_type_definition_repeat1] = STATE(1183), + [aux_sym_sized_type_specifier_repeat1] = STATE(1241), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64970,39 +64906,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [521] = { - [sym_type_qualifier] = STATE(1176), - [sym__type_specifier] = STATE(1219), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1102), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_type_qualifier] = STATE(1183), + [sym__type_specifier] = STATE(1228), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1753), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_type_descriptor] = STATE(1964), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_type_descriptor] = STATE(1929), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_type_definition_repeat1] = STATE(1176), - [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_type_definition_repeat1] = STATE(1183), + [aux_sym_sized_type_specifier_repeat1] = STATE(1241), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -65052,39 +64988,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [522] = { - [sym_type_qualifier] = STATE(1176), - [sym__type_specifier] = STATE(1219), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1102), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_type_qualifier] = STATE(1183), + [sym__type_specifier] = STATE(1228), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1753), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_type_descriptor] = STATE(1921), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_type_descriptor] = STATE(1767), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_type_definition_repeat1] = STATE(1176), - [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_type_definition_repeat1] = STATE(1183), + [aux_sym_sized_type_specifier_repeat1] = STATE(1241), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -65134,39 +65070,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [523] = { - [sym_type_qualifier] = STATE(1176), - [sym__type_specifier] = STATE(1219), - [sym_sized_type_specifier] = STATE(1020), - [sym_enum_specifier] = STATE(1020), - [sym_struct_specifier] = STATE(1020), - [sym_union_specifier] = STATE(1020), - [sym__expression] = STATE(1102), - [sym__expression_not_binary] = STATE(808), - [sym_comma_expression] = STATE(1955), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym_type_qualifier] = STATE(1183), + [sym__type_specifier] = STATE(1228), + [sym_sized_type_specifier] = STATE(1009), + [sym_enum_specifier] = STATE(1009), + [sym_struct_specifier] = STATE(1009), + [sym_union_specifier] = STATE(1009), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(782), + [sym_comma_expression] = STATE(1753), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_type_descriptor] = STATE(1840), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_type_descriptor] = STATE(1967), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), - [sym_macro_type_specifier] = STATE(1020), - [aux_sym_type_definition_repeat1] = STATE(1176), - [aux_sym_sized_type_specifier_repeat1] = STATE(1234), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), + [sym_macro_type_specifier] = STATE(1009), + [aux_sym_type_definition_repeat1] = STATE(1183), + [aux_sym_sized_type_specifier_repeat1] = STATE(1241), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -65216,29 +65152,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [524] = { - [sym__expression] = STATE(769), - [sym__expression_not_binary] = STATE(808), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), + [sym__expression] = STATE(766), + [sym__expression_not_binary] = STATE(782), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), [sym_pointer_expression] = STATE(811), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), [sym_subscript_expression] = STATE(811), [sym_call_expression] = STATE(811), - [sym_gnu_asm_expression] = STATE(808), + [sym_gnu_asm_expression] = STATE(782), [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(808), + [sym_compound_literal_expression] = STATE(782), [sym_parenthesized_expression] = STATE(811), - [sym_initializer_list] = STATE(768), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), + [sym_initializer_list] = STATE(795), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), [sym_identifier] = ACTIONS(1753), [anon_sym_COMMA] = ACTIONS(1172), [anon_sym_RPAREN] = ACTIONS(1172), @@ -65449,29 +65385,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [527] = { - [sym__expression] = STATE(837), - [sym__expression_not_binary] = STATE(808), - [sym_conditional_expression] = STATE(808), - [sym_assignment_expression] = STATE(808), - [sym_pointer_expression] = STATE(846), - [sym_unary_expression] = STATE(808), - [sym_binary_expression] = STATE(808), - [sym_update_expression] = STATE(808), - [sym_cast_expression] = STATE(808), - [sym_sizeof_expression] = STATE(808), - [sym_offsetof_expression] = STATE(808), - [sym_generic_expression] = STATE(808), - [sym_subscript_expression] = STATE(846), - [sym_call_expression] = STATE(846), - [sym_gnu_asm_expression] = STATE(808), - [sym_field_expression] = STATE(846), - [sym_compound_literal_expression] = STATE(808), - [sym_parenthesized_expression] = STATE(846), - [sym_initializer_list] = STATE(768), - [sym_char_literal] = STATE(808), - [sym_concatenated_string] = STATE(808), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(808), + [sym__expression] = STATE(830), + [sym__expression_not_binary] = STATE(782), + [sym_conditional_expression] = STATE(782), + [sym_assignment_expression] = STATE(782), + [sym_pointer_expression] = STATE(847), + [sym_unary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_cast_expression] = STATE(782), + [sym_sizeof_expression] = STATE(782), + [sym_offsetof_expression] = STATE(782), + [sym_generic_expression] = STATE(782), + [sym_subscript_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_gnu_asm_expression] = STATE(782), + [sym_field_expression] = STATE(847), + [sym_compound_literal_expression] = STATE(782), + [sym_parenthesized_expression] = STATE(847), + [sym_initializer_list] = STATE(795), + [sym_char_literal] = STATE(782), + [sym_concatenated_string] = STATE(782), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(782), [sym_identifier] = ACTIONS(1763), [anon_sym_LPAREN2] = ACTIONS(1765), [anon_sym_BANG] = ACTIONS(1767), @@ -65485,7 +65421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1172), [anon_sym_PIPE] = ACTIONS(1182), [anon_sym_CARET] = ACTIONS(1172), - [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1446), [anon_sym_EQ_EQ] = ACTIONS(1172), [anon_sym_BANG_EQ] = ACTIONS(1172), [anon_sym_GT] = ACTIONS(1182), @@ -65525,7 +65461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [528] = { - [sym_else_clause] = STATE(413), + [sym_else_clause] = STATE(417), [sym_identifier] = ACTIONS(1190), [anon_sym_LPAREN2] = ACTIONS(1192), [anon_sym_BANG] = ACTIONS(1192), @@ -65691,9 +65627,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1793), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1150), 1, + STATE(1132), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -65713,7 +65649,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(535), 2, + STATE(531), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -65728,7 +65664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -65743,7 +65679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -65780,9 +65716,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1799), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1134), 1, + STATE(1141), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -65802,7 +65738,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(536), 2, + STATE(814), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -65817,7 +65753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -65832,7 +65768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -65869,9 +65805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1803), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1127), 1, + STATE(1145), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -65891,7 +65827,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(539), 2, + STATE(534), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -65906,7 +65842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -65921,7 +65857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -65958,9 +65894,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1807), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1133), 1, + STATE(1144), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -65980,7 +65916,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(812), 2, + STATE(814), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -65995,7 +65931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66010,7 +65946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66047,9 +65983,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1811), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1137), 1, + STATE(1173), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -66069,7 +66005,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(812), 2, + STATE(814), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -66084,7 +66020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66099,7 +66035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66136,9 +66072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1815), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1162), 1, + STATE(1158), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -66158,7 +66094,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(812), 2, + STATE(537), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -66173,7 +66109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66188,7 +66124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66225,9 +66161,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1819), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1142), 1, + STATE(1140), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -66247,7 +66183,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(812), 2, + STATE(814), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -66262,7 +66198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66277,7 +66213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66314,9 +66250,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1823), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1161), 1, + STATE(1138), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -66336,7 +66272,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(534), 2, + STATE(814), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -66351,7 +66287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66366,7 +66302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66403,9 +66339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1827), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1132), 1, + STATE(1137), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -66425,7 +66361,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(533), 2, + STATE(536), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -66440,7 +66376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66455,7 +66391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66492,9 +66428,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1831), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1140), 1, + STATE(1157), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -66514,7 +66450,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(812), 2, + STATE(533), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -66529,7 +66465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, @@ -66544,7 +66480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66591,11 +66527,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(1847), 1, sym_preproc_directive, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1334), 1, + STATE(1337), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, @@ -66603,7 +66539,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1927), 3, + STATE(1780), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, @@ -66612,7 +66548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -66625,7 +66561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66642,7 +66578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(554), 8, + STATE(549), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66651,101 +66587,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, - [1248] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1849), 1, - sym_identifier, - ACTIONS(1851), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1853), 1, - anon_sym_RPAREN, - ACTIONS(1855), 1, - anon_sym_LPAREN2, - ACTIONS(1857), 1, - anon_sym_STAR, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(1861), 1, - anon_sym_LBRACK, - STATE(972), 1, - sym__type_specifier, - STATE(1022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1292), 1, - sym__declaration_specifiers, - STATE(1451), 1, - sym__declarator, - STATE(1499), 1, - sym_parameter_list, - STATE(1514), 1, - sym__abstract_declarator, - STATE(1886), 1, - sym_ms_based_modifier, - STATE(1548), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1475), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(1422), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(818), 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(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [1372] = 27, + [1248] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -66774,13 +66616,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1863), 1, + ACTIONS(1849), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1334), 1, + STATE(1337), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, @@ -66788,7 +66630,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1737), 3, + STATE(1825), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, @@ -66797,7 +66639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -66810,7 +66652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66827,7 +66669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(554), 8, + STATE(543), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66836,7 +66678,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, - [1490] = 27, + [1366] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -66865,13 +66707,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1865), 1, + ACTIONS(1851), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1334), 1, + STATE(1337), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, @@ -66879,7 +66721,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1800), 3, + STATE(1948), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, @@ -66888,7 +66730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -66901,7 +66743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66918,7 +66760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(554), 8, + STATE(547), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66927,7 +66769,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, - [1608] = 27, + [1484] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -66956,13 +66798,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1867), 1, + ACTIONS(1853), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1334), 1, + STATE(1337), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, @@ -66970,7 +66812,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1783), 3, + STATE(1989), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, @@ -66979,7 +66821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -66992,7 +66834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67009,7 +66851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(542), 8, + STATE(555), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67018,7 +66860,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, - [1726] = 27, + [1602] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67047,13 +66889,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1869), 1, + ACTIONS(1855), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1334), 1, + STATE(1337), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, @@ -67061,7 +66903,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1804), 3, + STATE(1785), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, @@ -67070,7 +66912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -67083,7 +66925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67100,7 +66942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(543), 8, + STATE(545), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67109,7 +66951,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, - [1844] = 27, + [1720] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67138,13 +66980,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1871), 1, + ACTIONS(1857), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1334), 1, + STATE(1337), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, @@ -67152,7 +66994,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1902), 3, + STATE(1957), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, @@ -67161,7 +67003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -67174,7 +67016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67191,7 +67033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(554), 8, + STATE(555), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67200,7 +67042,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, - [1962] = 27, + [1838] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67217,47 +67059,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1833), 1, + ACTIONS(1859), 1, sym_identifier, - ACTIONS(1835), 1, - aux_sym_preproc_def_token1, - ACTIONS(1837), 1, - aux_sym_preproc_if_token1, - ACTIONS(1843), 1, - aux_sym_preproc_else_token1, - ACTIONS(1845), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1847), 1, - sym_preproc_directive, - ACTIONS(1873), 1, - aux_sym_preproc_if_token2, - STATE(972), 1, + ACTIONS(1861), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1863), 1, + anon_sym_RPAREN, + ACTIONS(1865), 1, + anon_sym_LPAREN2, + ACTIONS(1867), 1, + anon_sym_STAR, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(1871), 1, + anon_sym_LBRACK, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1334), 1, + STATE(1253), 1, sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1841), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1906), 3, - sym_preproc_elifdef, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, + STATE(1454), 1, + sym__declarator, + STATE(1507), 1, + sym_parameter_list, + STATE(1533), 1, + sym__abstract_declarator, + STATE(1874), 1, + sym_ms_based_modifier, + STATE(1548), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1506), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, + STATE(1434), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(43), 6, anon_sym_extern, anon_sym_static, @@ -67265,7 +67119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67282,16 +67136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(540), 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, - [2080] = 27, + [1962] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67320,13 +67165,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elif_token1, ACTIONS(1847), 1, sym_preproc_directive, - ACTIONS(1875), 1, + ACTIONS(1873), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1334), 1, + STATE(1337), 1, sym__declaration_specifiers, ACTIONS(113), 2, aux_sym_preproc_elifdef_token1, @@ -67334,7 +67179,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1841), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1922), 3, + STATE(1915), 3, sym_preproc_elifdef, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, @@ -67343,7 +67188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -67356,7 +67201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67373,7 +67218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(546), 8, + STATE(555), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67382,7 +67227,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, - [2198] = 27, + [2080] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -67399,17 +67244,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(1877), 1, + ACTIONS(1875), 1, anon_sym_COMMA, - ACTIONS(1879), 1, + ACTIONS(1877), 1, anon_sym_RBRACE, - ACTIONS(1881), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, + ACTIONS(1881), 1, anon_sym_DOT, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1036), 1, + STATE(1040), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67432,10 +67277,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - STATE(1608), 2, + STATE(1546), 2, sym_initializer_list, sym_initializer_pair, - STATE(1470), 3, + STATE(1481), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -67457,7 +67302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -67473,6 +67318,97 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, + [2198] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + aux_sym_preproc_def_token1, + ACTIONS(1837), 1, + aux_sym_preproc_if_token1, + ACTIONS(1843), 1, + aux_sym_preproc_else_token1, + ACTIONS(1845), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1847), 1, + sym_preproc_directive, + ACTIONS(1883), 1, + aux_sym_preproc_if_token2, + STATE(918), 1, + sym__type_specifier, + STATE(1003), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1337), 1, + sym__declaration_specifiers, + ACTIONS(113), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1841), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1768), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(555), 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, [2316] = 26, ACTIONS(3), 1, sym_comment, @@ -67490,15 +67426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(1881), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, + ACTIONS(1881), 1, anon_sym_DOT, ACTIONS(1885), 1, anon_sym_RBRACE, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1112), 1, + STATE(1128), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67521,10 +67457,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - STATE(1681), 2, + STATE(1666), 2, sym_initializer_list, sym_initializer_pair, - STATE(1470), 3, + STATE(1481), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -67546,7 +67482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -67579,15 +67515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(1881), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, + ACTIONS(1881), 1, anon_sym_DOT, ACTIONS(1887), 1, anon_sym_RBRACE, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1112), 1, + STATE(1128), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67610,10 +67546,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - STATE(1681), 2, + STATE(1666), 2, sym_initializer_list, sym_initializer_pair, - STATE(1470), 3, + STATE(1481), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -67635,7 +67571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -67668,13 +67604,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(1881), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, - ACTIONS(1883), 1, + ACTIONS(1881), 1, anon_sym_DOT, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1112), 1, + STATE(1128), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -67697,10 +67633,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - STATE(1681), 2, + STATE(1666), 2, sym_initializer_list, sym_initializer_pair, - STATE(1470), 3, + STATE(1481), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, @@ -67722,7 +67658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -67769,16 +67705,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token2, ACTIONS(1897), 1, sym_preproc_directive, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, + STATE(1338), 1, + sym__declaration_specifiers, + ACTIONS(1895), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1845), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + STATE(561), 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, + [2771] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1843), 1, + aux_sym_preproc_else_token1, + ACTIONS(1845), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1889), 1, + aux_sym_preproc_def_token1, + ACTIONS(1891), 1, + aux_sym_preproc_if_token1, + ACTIONS(1897), 1, + sym_preproc_directive, + ACTIONS(1899), 1, + aux_sym_preproc_if_token2, + STATE(918), 1, + sym__type_specifier, + STATE(1003), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1338), 1, sym__declaration_specifiers, ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1872), 2, + STATE(1943), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(41), 4, @@ -67786,7 +67809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -67799,7 +67822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67816,7 +67839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(575), 8, + STATE(563), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67825,152 +67848,65 @@ 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, - [2771] = 23, + [2884] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1899), 1, + ACTIONS(1901), 1, sym_identifier, - ACTIONS(1902), 1, + ACTIONS(1904), 1, aux_sym_preproc_def_token1, - ACTIONS(1905), 1, + ACTIONS(1907), 1, aux_sym_preproc_if_token1, - ACTIONS(1913), 1, + ACTIONS(1915), 1, sym_preproc_directive, - ACTIONS(1919), 1, + ACTIONS(1921), 1, anon_sym___attribute__, - ACTIONS(1922), 1, + ACTIONS(1924), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1927), 1, anon_sym___declspec, - ACTIONS(1934), 1, + ACTIONS(1936), 1, sym_primitive_type, - ACTIONS(1937), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(1940), 1, + ACTIONS(1942), 1, anon_sym_struct, - ACTIONS(1943), 1, + ACTIONS(1945), 1, anon_sym_union, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1334), 1, + STATE(1337), 1, sym__declaration_specifiers, - ACTIONS(1910), 2, + ACTIONS(1912), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1928), 4, + ACTIONS(1930), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1908), 5, + ACTIONS(1910), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1916), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(818), 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(1931), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - STATE(554), 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, - [2878] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1833), 1, - sym_identifier, - ACTIONS(1843), 1, - aux_sym_preproc_else_token1, - ACTIONS(1845), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1889), 1, - aux_sym_preproc_def_token1, - ACTIONS(1891), 1, - aux_sym_preproc_if_token1, - ACTIONS(1897), 1, - sym_preproc_directive, - ACTIONS(1946), 1, - aux_sym_preproc_if_token2, - STATE(972), 1, - sym__type_specifier, - STATE(1022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, - sym__declaration_specifiers, - ACTIONS(1895), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1925), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(43), 6, + ACTIONS(1918), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67978,7 +67914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, + ACTIONS(1933), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67987,7 +67923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(561), 8, + STATE(555), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68027,16 +67963,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1948), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, + STATE(1338), 1, sym__declaration_specifiers, ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1801), 2, + STATE(1899), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(41), 4, @@ -68044,7 +67980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68057,7 +67993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68074,7 +68010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(563), 8, + STATE(576), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68114,16 +68050,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1950), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, + STATE(1338), 1, sym__declaration_specifiers, ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1790), 2, + STATE(1890), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(41), 4, @@ -68131,7 +68067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68144,7 +68080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68161,7 +68097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(575), 8, + STATE(576), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68201,16 +68137,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1952), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, + STATE(1338), 1, sym__declaration_specifiers, ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1768), 2, + STATE(1769), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(41), 4, @@ -68218,7 +68154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68231,7 +68167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68248,7 +68184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(557), 8, + STATE(559), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68288,16 +68224,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1954), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, + STATE(1338), 1, sym__declaration_specifiers, ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1746), 2, + STATE(1757), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(41), 4, @@ -68305,7 +68241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68318,7 +68254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68335,7 +68271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(575), 8, + STATE(576), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68375,16 +68311,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1956), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, + STATE(1338), 1, sym__declaration_specifiers, ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1735), 2, + STATE(1961), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(41), 4, @@ -68392,7 +68328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68405,7 +68341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68422,7 +68358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(559), 8, + STATE(557), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68462,16 +68398,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1958), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, + STATE(1338), 1, sym__declaration_specifiers, ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1948), 2, + STATE(1820), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(41), 4, @@ -68479,7 +68415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68492,7 +68428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68509,7 +68445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(575), 8, + STATE(576), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68549,16 +68485,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1960), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, + STATE(1338), 1, sym__declaration_specifiers, ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1903), 2, + STATE(1921), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(41), 4, @@ -68566,7 +68502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68579,7 +68515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68596,7 +68532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(553), 8, + STATE(556), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68636,16 +68572,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_directive, ACTIONS(1962), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, + STATE(1338), 1, sym__declaration_specifiers, ACTIONS(1895), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1792), 2, + STATE(1973), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(41), 4, @@ -68653,7 +68589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68666,7 +68602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68683,7 +68619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(575), 8, + STATE(576), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68692,7 +68628,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, - [3895] = 10, + [3895] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -68700,12 +68636,83 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1974), 1, anon_sym_STAR, ACTIONS(1977), 1, + anon_sym_SEMI, + ACTIONS(1980), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1982), 1, + anon_sym_EQ, + ACTIONS(1984), 1, + anon_sym_COLON, + ACTIONS(1986), 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(1966), 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(1972), 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(1964), 18, + 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_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [3977] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_LPAREN2, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1980), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1981), 1, + ACTIONS(1988), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -68762,20 +68769,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [3975] = 10, + [4057] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, anon_sym_LPAREN2, ACTIONS(1974), 1, anon_sym_STAR, - ACTIONS(1977), 1, + ACTIONS(1980), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(1990), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -68832,22 +68839,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4055] = 11, + [4137] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, anon_sym_LPAREN2, ACTIONS(1974), 1, anon_sym_STAR, - ACTIONS(1977), 1, + ACTIONS(1980), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1987), 1, - anon_sym_SEMI, - ACTIONS(1990), 1, + ACTIONS(1984), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -68858,19 +68863,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1966), 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(1972), 12, anon_sym_DASH, anon_sym_PLUS, @@ -68884,6 +68876,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, + ACTIONS(1966), 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(1964), 18, anon_sym_extern, anon_sym___attribute__, @@ -68903,22 +68909,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4137] = 11, + [4217] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, anon_sym_LPAREN2, ACTIONS(1974), 1, anon_sym_STAR, - ACTIONS(1977), 1, + ACTIONS(1980), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1987), 1, - anon_sym_SEMI, ACTIONS(1992), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -68929,19 +68933,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1966), 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(1972), 12, anon_sym_DASH, anon_sym_PLUS, @@ -68955,6 +68946,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, + ACTIONS(1966), 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(1964), 18, anon_sym_extern, anon_sym___attribute__, @@ -68974,20 +68979,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4219] = 10, + [4297] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, anon_sym_LPAREN2, ACTIONS(1974), 1, anon_sym_STAR, - ACTIONS(1977), 1, + ACTIONS(1980), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1990), 1, + ACTIONS(1994), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -69044,7 +69049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4299] = 10, + [4377] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -69052,12 +69057,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1974), 1, anon_sym_STAR, ACTIONS(1977), 1, + anon_sym_SEMI, + ACTIONS(1980), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1994), 1, + ACTIONS(1996), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -69068,6 +69075,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + ACTIONS(1966), 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(1972), 12, anon_sym_DASH, anon_sym_PLUS, @@ -69081,20 +69101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1966), 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(1964), 18, anon_sym_extern, anon_sym___attribute__, @@ -69114,20 +69120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4379] = 10, + [4459] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, anon_sym_LPAREN2, ACTIONS(1974), 1, anon_sym_STAR, - ACTIONS(1977), 1, + ACTIONS(1980), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, ACTIONS(1996), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -69184,7 +69190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4459] = 11, + [4539] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -69192,14 +69198,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1974), 1, anon_sym_STAR, ACTIONS(1977), 1, + anon_sym_SEMI, + ACTIONS(1980), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(1994), 1, anon_sym_COLON, - ACTIONS(1987), 1, - anon_sym_SEMI, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -69255,7 +69261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4541] = 10, + [4621] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -69263,12 +69269,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1974), 1, anon_sym_STAR, ACTIONS(1977), 1, + anon_sym_SEMI, + ACTIONS(1980), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1992), 1, + ACTIONS(1988), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -69279,6 +69287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + ACTIONS(1966), 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(1972), 12, anon_sym_DASH, anon_sym_PLUS, @@ -69292,20 +69313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(1966), 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(1964), 18, anon_sym_extern, anon_sym___attribute__, @@ -69325,22 +69332,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4621] = 11, + [4703] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, anon_sym_LPAREN2, ACTIONS(1974), 1, anon_sym_STAR, - ACTIONS(1977), 1, + ACTIONS(1980), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1981), 1, - anon_sym_COLON, - ACTIONS(1987), 1, - anon_sym_SEMI, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -69351,19 +69354,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1966), 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(1972), 12, anon_sym_DASH, anon_sym_PLUS, @@ -69377,6 +69367,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, + ACTIONS(1966), 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(1964), 18, anon_sym_extern, anon_sym___attribute__, @@ -69396,7 +69400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4703] = 11, + [4780] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1968), 1, @@ -69404,14 +69408,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1974), 1, anon_sym_STAR, ACTIONS(1977), 1, + anon_sym_SEMI, + ACTIONS(1980), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1987), 1, - anon_sym_SEMI, - ACTIONS(1994), 1, + ACTIONS(1992), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -69466,24 +69470,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [4784] = 23, + [4861] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1899), 1, + ACTIONS(1901), 1, sym_identifier, - ACTIONS(1919), 1, + ACTIONS(1921), 1, anon_sym___attribute__, - ACTIONS(1922), 1, + ACTIONS(1924), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1927), 1, anon_sym___declspec, - ACTIONS(1934), 1, + ACTIONS(1936), 1, sym_primitive_type, - ACTIONS(1937), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(1940), 1, + ACTIONS(1942), 1, anon_sym_struct, - ACTIONS(1943), 1, + ACTIONS(1945), 1, anon_sym_union, ACTIONS(1998), 1, aux_sym_preproc_def_token1, @@ -69491,38 +69495,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(2007), 1, sym_preproc_directive, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1332), 1, + STATE(1338), 1, sym__declaration_specifiers, ACTIONS(2004), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1908), 3, + ACTIONS(1910), 3, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(1928), 4, + ACTIONS(1930), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1916), 6, + ACTIONS(1918), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69530,7 +69534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1931), 8, + ACTIONS(1933), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -69539,7 +69543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(575), 8, + STATE(576), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -69548,129 +69552,141 @@ 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, - [4889] = 9, + [4966] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1974), 1, - anon_sym_STAR, - ACTIONS(1977), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1979), 1, - anon_sym_EQ, - ACTIONS(1983), 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(1972), 12, + ACTIONS(39), 1, + anon_sym_LBRACE, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2010), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1033), 1, + sym__expression, + STATE(1603), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1966), 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, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1964), 18, - 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_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4966] = 23, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, + sym__expression_not_binary, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5069] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1899), 1, - sym_identifier, - ACTIONS(1919), 1, + ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(1922), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1925), 1, + ACTIONS(35), 1, anon_sym___declspec, - ACTIONS(1934), 1, + ACTIONS(47), 1, sym_primitive_type, - ACTIONS(1937), 1, + ACTIONS(49), 1, anon_sym_enum, - ACTIONS(1940), 1, + ACTIONS(51), 1, anon_sym_struct, - ACTIONS(1943), 1, + ACTIONS(53), 1, anon_sym_union, - ACTIONS(2010), 1, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(2012), 1, aux_sym_preproc_def_token1, - ACTIONS(2013), 1, + ACTIONS(2014), 1, aux_sym_preproc_if_token1, - ACTIONS(2019), 1, + ACTIONS(2018), 1, sym_preproc_directive, - ACTIONS(2022), 1, + ACTIONS(2020), 1, anon_sym_RBRACE, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1340), 1, sym__declaration_specifiers, ACTIONS(2016), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1928), 4, + ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1916), 6, + ACTIONS(43), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69678,7 +69694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1931), 8, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -69687,7 +69703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(577), 8, + STATE(580), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -69696,61 +69712,61 @@ 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, - [5069] = 23, + [5172] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(1901), 1, + sym_identifier, + ACTIONS(1910), 1, + aux_sym_preproc_if_token2, + ACTIONS(1921), 1, anon_sym___attribute__, - ACTIONS(35), 1, + ACTIONS(1924), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1927), 1, anon_sym___declspec, - ACTIONS(47), 1, + ACTIONS(1936), 1, sym_primitive_type, - ACTIONS(49), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(51), 1, + ACTIONS(1942), 1, anon_sym_struct, - ACTIONS(53), 1, + ACTIONS(1945), 1, anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1833), 1, - sym_identifier, - ACTIONS(2024), 1, + ACTIONS(2022), 1, aux_sym_preproc_def_token1, - ACTIONS(2026), 1, + ACTIONS(2025), 1, aux_sym_preproc_if_token1, - ACTIONS(2028), 1, - aux_sym_preproc_if_token2, - ACTIONS(2032), 1, + ACTIONS(2031), 1, sym_preproc_directive, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1333), 1, + STATE(1339), 1, sym__declaration_specifiers, - ACTIONS(2030), 2, + ACTIONS(2028), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(41), 4, + ACTIONS(1930), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(43), 6, + ACTIONS(1918), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69758,7 +69774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, + ACTIONS(1933), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -69767,7 +69783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(580), 8, + STATE(579), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -69776,26 +69792,24 @@ 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, - [5172] = 23, + [5275] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1899), 1, + ACTIONS(1901), 1, sym_identifier, - ACTIONS(1908), 1, - aux_sym_preproc_if_token2, - ACTIONS(1919), 1, + ACTIONS(1921), 1, anon_sym___attribute__, - ACTIONS(1922), 1, + ACTIONS(1924), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1925), 1, + ACTIONS(1927), 1, anon_sym___declspec, - ACTIONS(1934), 1, + ACTIONS(1936), 1, sym_primitive_type, - ACTIONS(1937), 1, + ACTIONS(1939), 1, anon_sym_enum, - ACTIONS(1940), 1, + ACTIONS(1942), 1, anon_sym_struct, - ACTIONS(1943), 1, + ACTIONS(1945), 1, anon_sym_union, ACTIONS(2034), 1, aux_sym_preproc_def_token1, @@ -69803,34 +69817,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token1, ACTIONS(2043), 1, sym_preproc_directive, - STATE(972), 1, + ACTIONS(2046), 1, + anon_sym_RBRACE, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1333), 1, + STATE(1340), 1, sym__declaration_specifiers, ACTIONS(2040), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1928), 4, + ACTIONS(1930), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1916), 6, + ACTIONS(1918), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69838,7 +69854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1931), 8, + ACTIONS(1933), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -69847,7 +69863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(579), 8, + STATE(580), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -69856,7 +69872,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, - [5275] = 23, + [5378] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -69875,21 +69891,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1833), 1, sym_identifier, - ACTIONS(2024), 1, + ACTIONS(2048), 1, aux_sym_preproc_def_token1, - ACTIONS(2026), 1, + ACTIONS(2050), 1, aux_sym_preproc_if_token1, - ACTIONS(2032), 1, - sym_preproc_directive, - ACTIONS(2046), 1, + ACTIONS(2052), 1, aux_sym_preproc_if_token2, - STATE(972), 1, + ACTIONS(2056), 1, + sym_preproc_directive, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1333), 1, + STATE(1339), 1, sym__declaration_specifiers, - ACTIONS(2030), 2, + ACTIONS(2054), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(41), 4, @@ -69897,7 +69913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -69910,7 +69926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -69927,7 +69943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(579), 8, + STATE(583), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -69936,7 +69952,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, - [5378] = 23, + [5481] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -69955,21 +69971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1833), 1, sym_identifier, - ACTIONS(2048), 1, + ACTIONS(2012), 1, aux_sym_preproc_def_token1, - ACTIONS(2050), 1, + ACTIONS(2014), 1, aux_sym_preproc_if_token1, - ACTIONS(2054), 1, + ACTIONS(2018), 1, sym_preproc_directive, - ACTIONS(2056), 1, + ACTIONS(2058), 1, anon_sym_RBRACE, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1340), 1, sym__declaration_specifiers, - ACTIONS(2052), 2, + ACTIONS(2016), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(41), 4, @@ -69977,7 +69993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -69990,7 +70006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -70007,7 +70023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(577), 8, + STATE(578), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -70016,7 +70032,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, - [5481] = 23, + [5584] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -70039,17 +70055,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_def_token1, ACTIONS(2050), 1, aux_sym_preproc_if_token1, - ACTIONS(2054), 1, + ACTIONS(2056), 1, sym_preproc_directive, - ACTIONS(2058), 1, - anon_sym_RBRACE, - STATE(972), 1, + ACTIONS(2060), 1, + aux_sym_preproc_if_token2, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1331), 1, + STATE(1339), 1, sym__declaration_specifiers, - ACTIONS(2052), 2, + ACTIONS(2054), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(41), 4, @@ -70057,7 +70073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -70070,7 +70086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -70087,7 +70103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(581), 8, + STATE(579), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -70096,7 +70112,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, - [5584] = 23, + [5687] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70113,13 +70129,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2060), 1, + ACTIONS(2062), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1035), 1, + STATE(1046), 1, sym__expression, - STATE(1536), 1, + STATE(1586), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -70160,7 +70176,475 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, + sym__expression_not_binary, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5790] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2064), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1072), 1, + sym__expression, + STATE(1770), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, + sym__expression_not_binary, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5890] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2066), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_string_literal, + STATE(1084), 1, + sym__expression, + STATE(1965), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, + sym__expression_not_binary, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [5990] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2068), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1065), 1, + sym__expression, + STATE(1869), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, + sym__expression_not_binary, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6090] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2070), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1124), 1, + sym__expression, + STATE(1893), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, + sym__expression_not_binary, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6190] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2072), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_string_literal, + STATE(1088), 1, + sym__expression, + STATE(1812), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, + sym__expression_not_binary, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [6290] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2074), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1081), 1, + sym__expression, + STATE(1779), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70176,13 +70660,11 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5687] = 23, + [6390] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(39), 1, - anon_sym_LBRACE, ACTIONS(79), 1, anon_sym_sizeof, ACTIONS(81), 1, @@ -70193,14 +70675,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2062), 1, + ACTIONS(2076), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1046), 1, + STATE(1070), 1, sym__expression, - STATE(1540), 1, - sym_compound_statement, + STATE(1927), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -70240,7 +70722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70256,7 +70738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5790] = 22, + [6490] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70271,13 +70753,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2064), 1, + ACTIONS(2078), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1124), 1, + STATE(1101), 1, sym__expression, - STATE(1787), 1, + STATE(1886), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70318,7 +70800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70334,7 +70816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5890] = 22, + [6590] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70349,13 +70831,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2066), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2080), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1115), 1, + STATE(1063), 1, sym__expression, - STATE(1991), 1, + STATE(1938), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70396,7 +70878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70412,7 +70894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5990] = 22, + [6690] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70427,13 +70909,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2068), 1, + ACTIONS(2082), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1055), 1, + STATE(1089), 1, sym__expression, - STATE(1916), 1, + STATE(1782), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70474,7 +70956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70490,7 +70972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6090] = 22, + [6790] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70505,13 +70987,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2070), 1, + ACTIONS(2084), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1091), 1, + STATE(1064), 1, sym__expression, - STATE(1938), 1, + STATE(1872), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70552,7 +71034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70568,7 +71050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6190] = 22, + [6890] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70583,13 +71065,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2072), 1, + ACTIONS(2086), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1062), 1, + STATE(1127), 1, sym__expression, - STATE(1847), 1, + STATE(1900), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70630,7 +71112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70646,7 +71128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6290] = 22, + [6990] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70661,13 +71143,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2074), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2088), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1088), 1, + STATE(1107), 1, sym__expression, - STATE(1874), 1, + STATE(1786), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70708,7 +71190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70724,7 +71206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6390] = 22, + [7090] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70739,13 +71221,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2076), 1, + ACTIONS(2090), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1097), 1, + STATE(1109), 1, sym__expression, - STATE(1880), 1, + STATE(1788), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70786,7 +71268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70802,206 +71284,49 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6490] = 22, + [7190] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(2078), 1, - anon_sym_SEMI, - STATE(754), 1, - sym_string_literal, - STATE(1059), 1, - sym__expression, - STATE(1845), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - 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(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, - sym__expression_not_binary, - 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_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [6590] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(79), 1, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1188), 1, anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(2080), 1, - anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1057), 1, + STATE(766), 1, sym__expression, - STATE(1967), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, + STATE(795), 1, + sym_initializer_list, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - 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(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, - sym__expression_not_binary, - 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_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [6690] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(2082), 1, - anon_sym_SEMI, - STATE(754), 1, - sym_string_literal, - STATE(1054), 1, - sym__expression, - STATE(1827), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -71014,16 +71339,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -71031,12 +71351,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [6790] = 22, + [7286] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71051,13 +71375,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(2092), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1076), 1, + STATE(1106), 1, sym__expression, - STATE(1915), 1, + STATE(1790), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71098,7 +71422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71114,7 +71438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6890] = 22, + [7386] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71129,13 +71453,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2086), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2094), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1073), 1, + STATE(1117), 1, sym__expression, - STATE(1767), 1, + STATE(1792), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71176,7 +71500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71192,7 +71516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6990] = 22, + [7486] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71207,13 +71531,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2088), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2096), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1072), 1, + STATE(1129), 1, sym__expression, - STATE(1764), 1, + STATE(1795), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71254,7 +71578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71270,11 +71594,13 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7090] = 22, + [7586] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, + ACTIONS(39), 1, + anon_sym_LBRACE, ACTIONS(79), 1, anon_sym_sizeof, ACTIONS(81), 1, @@ -71285,14 +71611,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2090), 1, - anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1123), 1, + STATE(1057), 1, sym__expression, - STATE(1784), 1, - sym_comma_expression, + STATE(1647), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -71332,7 +71656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71348,7 +71672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7190] = 22, + [7686] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71363,13 +71687,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2092), 1, + ACTIONS(2098), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1056), 1, + STATE(1125), 1, sym__expression, - STATE(1969), 1, + STATE(1942), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71410,7 +71734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71426,29 +71750,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7290] = 22, + [7786] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1184), 1, - anon_sym_LBRACE, - ACTIONS(1763), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(2100), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(768), 1, - sym_initializer_list, - STATE(837), 1, + STATE(1103), 1, sym__expression, + STATE(1944), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -71458,18 +71794,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -71482,13 +71806,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71504,83 +71828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7390] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1184), 1, - anon_sym_LBRACE, - ACTIONS(1436), 1, - anon_sym_LPAREN2, - ACTIONS(1446), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(768), 1, - sym_initializer_list, - STATE(837), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1440), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - 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(808), 20, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [7486] = 22, + [7886] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71595,13 +71843,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2094), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2102), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1117), 1, + STATE(1059), 1, sym__expression, - STATE(1893), 1, + STATE(1984), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71642,7 +71890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71658,7 +71906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7586] = 22, + [7986] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71673,13 +71921,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2096), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2104), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1094), 1, + STATE(1087), 1, sym__expression, - STATE(1936), 1, + STATE(1908), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71720,7 +71968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71736,7 +71984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7686] = 22, + [8086] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71751,13 +71999,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2098), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2106), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1049), 1, + STATE(1066), 1, sym__expression, - STATE(1841), 1, + STATE(1980), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71798,7 +72046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71814,7 +72062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7786] = 22, + [8186] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71829,13 +72077,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2100), 1, + ACTIONS(2108), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1077), 1, + STATE(1095), 1, sym__expression, - STATE(1941), 1, + STATE(1906), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71876,7 +72124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71892,7 +72140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7886] = 22, + [8286] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71907,13 +72155,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(2110), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1065), 1, + STATE(1096), 1, sym__expression, - STATE(1851), 1, + STATE(1901), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71954,7 +72202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71970,7 +72218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7986] = 22, + [8386] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71983,16 +72231,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1184), 1, - anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + ACTIONS(2112), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1116), 1, + STATE(1069), 1, sym__expression, - STATE(1675), 1, - sym_initializer_list, + STATE(1977), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72032,7 +72280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72048,7 +72296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8086] = 22, + [8486] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72061,16 +72309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, + ACTIONS(1184), 1, + anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2104), 1, - anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1090), 1, + STATE(1130), 1, sym__expression, - STATE(1939), 1, - sym_comma_expression, + STATE(1679), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72110,7 +72358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72126,7 +72374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8186] = 22, + [8586] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72141,13 +72389,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2106), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2114), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1074), 1, + STATE(1071), 1, sym__expression, - STATE(1771), 1, + STATE(1975), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72188,7 +72436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72204,7 +72452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8286] = 22, + [8686] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72219,13 +72467,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2108), 1, + ACTIONS(2116), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1107), 1, + STATE(1123), 1, sym__expression, - STATE(1844), 1, + STATE(1842), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72266,7 +72514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72282,7 +72530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8386] = 22, + [8786] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72297,13 +72545,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2110), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2118), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1092), 1, + STATE(1116), 1, sym__expression, - STATE(1943), 1, + STATE(1840), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72344,7 +72592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72360,7 +72608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8486] = 22, + [8886] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72375,13 +72623,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2112), 1, + ACTIONS(2120), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1103), 1, + STATE(1104), 1, sym__expression, - STATE(1751), 1, + STATE(1889), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72422,7 +72670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72438,7 +72686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8586] = 22, + [8986] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72453,13 +72701,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2114), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2122), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1064), 1, + STATE(1112), 1, sym__expression, - STATE(1849), 1, + STATE(1843), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72500,7 +72748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72516,7 +72764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8686] = 22, + [9086] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72531,13 +72779,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2116), 1, + ACTIONS(2124), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1105), 1, + STATE(1108), 1, sym__expression, - STATE(1945), 1, + STATE(1846), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72578,7 +72826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72594,7 +72842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8786] = 22, + [9186] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72607,16 +72855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, + ACTIONS(1184), 1, + anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2118), 1, - anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1089), 1, + STATE(1113), 1, sym__expression, - STATE(1952), 1, - sym_comma_expression, + STATE(1668), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72656,7 +72904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72672,7 +72920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8886] = 22, + [9286] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72687,13 +72935,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2120), 1, + ACTIONS(2126), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1047), 1, + STATE(1131), 1, sym__expression, - STATE(1954), 1, + STATE(1932), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72734,7 +72982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72750,7 +72998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8986] = 22, + [9386] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72765,13 +73013,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2122), 1, + ACTIONS(2128), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1081), 1, + STATE(1102), 1, sym__expression, - STATE(1774), 1, + STATE(1849), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72812,7 +73060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72828,7 +73076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9086] = 22, + [9486] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72843,13 +73091,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2124), 1, + ACTIONS(2130), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1110), 1, + STATE(1082), 1, sym__expression, - STATE(1862), 1, + STATE(1875), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72890,7 +73138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72906,7 +73154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9186] = 22, + [9586] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72921,13 +73169,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2126), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2132), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1048), 1, + STATE(1092), 1, sym__expression, - STATE(1782), 1, + STATE(1853), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72968,7 +73216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72984,89 +73232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9286] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1833), 1, - sym_identifier, - ACTIONS(1851), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1853), 1, - anon_sym_RPAREN, - ACTIONS(1861), 1, - anon_sym_LBRACK, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - ACTIONS(2130), 1, - anon_sym_STAR, - STATE(972), 1, - sym__type_specifier, - STATE(1022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1292), 1, - sym__declaration_specifiers, - STATE(1499), 1, - sym_parameter_list, - STATE(1514), 1, - sym__abstract_declarator, - STATE(1548), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1475), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(818), 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(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [9394] = 22, + [9686] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73081,13 +73247,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2132), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2134), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1120), 1, + STATE(1054), 1, sym__expression, - STATE(1778), 1, + STATE(1895), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73128,7 +73294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73144,7 +73310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9494] = 22, + [9786] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73159,13 +73325,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2134), 1, + ACTIONS(2136), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1083), 1, + STATE(1110), 1, sym__expression, - STATE(1909), 1, + STATE(1950), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73206,7 +73372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73222,13 +73388,11 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9594] = 22, + [9886] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(39), 1, - anon_sym_LBRACE, ACTIONS(79), 1, anon_sym_sizeof, ACTIONS(81), 1, @@ -73239,12 +73403,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + ACTIONS(2138), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1060), 1, + STATE(1080), 1, sym__expression, - STATE(1647), 1, - sym_compound_statement, + STATE(1775), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -73284,7 +73450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73300,7 +73466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9694] = 22, + [9986] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73315,13 +73481,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2136), 1, + ACTIONS(2140), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1078), 1, + STATE(1126), 1, sym__expression, - STATE(1914), 1, + STATE(1897), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73362,7 +73528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73378,7 +73544,89 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9794] = 22, + [10086] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1861), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1863), 1, + anon_sym_RPAREN, + ACTIONS(1871), 1, + anon_sym_LBRACK, + ACTIONS(2142), 1, + anon_sym_LPAREN2, + ACTIONS(2144), 1, + anon_sym_STAR, + STATE(918), 1, + sym__type_specifier, + STATE(1003), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1253), 1, + sym__declaration_specifiers, + STATE(1507), 1, + sym_parameter_list, + STATE(1533), 1, + sym__abstract_declarator, + STATE(1548), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1506), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [10194] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73393,13 +73641,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2138), 1, + ACTIONS(2146), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1119), 1, + STATE(1090), 1, sym__expression, - STATE(1780), 1, + STATE(1855), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73440,7 +73688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73456,49 +73704,50 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9894] = 20, + [10294] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, - ACTIONS(1184), 1, - anon_sym_LBRACE, - ACTIONS(1188), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2148), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(768), 1, - sym_initializer_list, - STATE(769), 1, + STATE(1085), 1, sym__expression, + STATE(1857), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -73511,11 +73760,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73523,16 +73777,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [9990] = 22, + [10394] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73547,13 +73797,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2140), 1, + ACTIONS(2150), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1098), 1, + STATE(1053), 1, sym__expression, - STATE(1760), 1, + STATE(1880), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73594,7 +73844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73610,7 +73860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10090] = 22, + [10494] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73623,16 +73873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1184), 1, - anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + ACTIONS(2152), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1104), 1, + STATE(1083), 1, sym__expression, - STATE(1653), 1, - sym_initializer_list, + STATE(1859), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -73672,7 +73922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73688,7 +73938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10190] = 22, + [10594] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73701,16 +73951,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, + ACTIONS(1184), 1, + anon_sym_LBRACE, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2142), 1, - anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1108), 1, + STATE(766), 1, sym__expression, - STATE(1732), 1, - sym_comma_expression, + STATE(795), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -73750,7 +74000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73766,7 +74016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10290] = 22, + [10694] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73781,13 +74031,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2144), 1, + ACTIONS(2154), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1050), 1, + STATE(1079), 1, sym__expression, - STATE(1838), 1, + STATE(1722), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73828,7 +74078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73844,7 +74094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10390] = 22, + [10794] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73859,91 +74109,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2146), 1, + ACTIONS(2156), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1071), 1, - sym__expression, - STATE(1832), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - 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(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, - sym__expression_not_binary, - 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_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [10490] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(2148), 1, - anon_sym_RPAREN, - STATE(754), 1, - sym_string_literal, - STATE(1099), 1, + STATE(1105), 1, sym__expression, - STATE(1878), 1, + STATE(1721), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73984,7 +74156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74000,7 +74172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10590] = 22, + [10894] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74015,13 +74187,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2158), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1084), 1, + STATE(1086), 1, sym__expression, - STATE(1776), 1, + STATE(1962), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74062,7 +74234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74078,7 +74250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10690] = 22, + [10994] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74093,13 +74265,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2152), 1, + ACTIONS(2160), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1111), 1, + STATE(1091), 1, sym__expression, - STATE(1934), 1, + STATE(1960), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74140,7 +74312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74156,7 +74328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10790] = 22, + [11094] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74171,13 +74343,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2154), 1, + ACTIONS(2162), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1066), 1, + STATE(1097), 1, sym__expression, - STATE(1892), 1, + STATE(1884), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74218,7 +74390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74234,7 +74406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10890] = 22, + [11194] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74249,13 +74421,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2156), 1, + ACTIONS(2164), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1096), 1, + STATE(1067), 1, sym__expression, - STATE(1881), 1, + STATE(1940), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74296,7 +74468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74312,7 +74484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10990] = 22, + [11294] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74327,91 +74499,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2158), 1, + ACTIONS(2166), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1118), 1, - sym__expression, - STATE(1730), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - 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(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, - sym__expression_not_binary, - 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_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [11090] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(2160), 1, - anon_sym_SEMI, - STATE(754), 1, - sym_string_literal, - STATE(1052), 1, + STATE(1077), 1, sym__expression, - STATE(1972), 1, + STATE(1755), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74452,7 +74546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74468,7 +74562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11190] = 22, + [11394] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74483,13 +74577,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2162), 1, + ACTIONS(2168), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1109), 1, + STATE(1114), 1, sym__expression, - STATE(1731), 1, + STATE(1936), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74530,85 +74624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, - sym__expression_not_binary, - 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_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [11290] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1184), 1, - anon_sym_LBRACE, - ACTIONS(1753), 1, - sym_identifier, - STATE(754), 1, - sym_string_literal, - STATE(768), 1, - sym_initializer_list, - STATE(769), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - 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(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74624,7 +74640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11390] = 22, + [11494] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74639,13 +74655,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2164), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2170), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1082), 1, + STATE(1111), 1, sym__expression, - STATE(1775), 1, + STATE(1793), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74686,7 +74702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74702,7 +74718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11490] = 22, + [11594] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74717,13 +74733,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2166), 1, + ACTIONS(2172), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1095), 1, + STATE(1121), 1, sym__expression, - STATE(1885), 1, + STATE(1934), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74764,7 +74780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74780,7 +74796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11590] = 22, + [11694] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74795,13 +74811,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2168), 1, + ACTIONS(2174), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1080), 1, + STATE(1073), 1, sym__expression, - STATE(1773), 1, + STATE(1772), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74842,7 +74858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74858,7 +74874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11690] = 22, + [11794] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74873,13 +74889,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2170), 1, + ACTIONS(2176), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1093), 1, + STATE(1056), 1, sym__expression, - STATE(1887), 1, + STATE(1758), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74920,7 +74936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74936,7 +74952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11790] = 22, + [11894] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74951,13 +74967,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2172), 1, + ACTIONS(2178), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1067), 1, + STATE(1061), 1, sym__expression, - STATE(1889), 1, + STATE(1759), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74998,7 +75014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75014,7 +75030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11890] = 22, + [11994] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75029,13 +75045,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2174), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2180), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1079), 1, + STATE(1068), 1, sym__expression, - STATE(1829), 1, + STATE(1760), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75076,7 +75092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75092,7 +75108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11990] = 22, + [12094] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75107,13 +75123,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2176), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2182), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1075), 1, + STATE(1074), 1, sym__expression, - STATE(1830), 1, + STATE(1776), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75154,7 +75170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75170,50 +75186,49 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12090] = 22, + [12194] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(2178), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1061), 1, + STATE(795), 1, + sym_initializer_list, + STATE(830), 1, sym__expression, - STATE(1835), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75226,16 +75241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75243,12 +75253,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12190] = 22, + [12290] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75263,13 +75277,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2180), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2184), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1114), 1, + STATE(1100), 1, sym__expression, - STATE(1960), 1, + STATE(1947), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75310,7 +75324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75326,41 +75340,29 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12290] = 22, + [12390] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1763), 1, sym_identifier, - ACTIONS(2182), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1113), 1, + STATE(795), 1, + sym_initializer_list, + STATE(830), 1, sym__expression, - STATE(1957), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -75370,6 +75372,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75382,13 +75396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75404,7 +75418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12390] = 22, + [12490] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75419,13 +75433,11 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2184), 1, - anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1070), 1, + STATE(1062), 1, sym__expression, - STATE(1714), 1, + STATE(1998), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75466,7 +75478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75482,7 +75494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12490] = 19, + [12587] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -75491,15 +75503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1450), 1, anon_sym_sizeof, ACTIONS(2186), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(829), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -75507,13 +75519,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -75535,7 +75547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75556,48 +75568,47 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12583] = 21, + [12680] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, ACTIONS(2188), 1, - anon_sym_COLON, - STATE(754), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(1138), 1, + STATE(829), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75610,16 +75621,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75627,52 +75633,57 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12680] = 19, + [12773] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, - anon_sym_LPAREN2, - ACTIONS(1446), 1, - anon_sym_sizeof, - ACTIONS(2190), 1, - anon_sym_RBRACK, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(1050), 1, sym__expression, + STATE(1715), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1440), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75685,11 +75696,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75697,16 +75713,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [12773] = 21, + [12870] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75721,12 +75733,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + ACTIONS(2190), 1, + anon_sym_COLON, + STATE(753), 1, sym_string_literal, - STATE(1041), 1, + STATE(1172), 1, sym__expression, - STATE(1666), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75766,7 +75778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75782,7 +75794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12870] = 19, + [12967] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -75791,15 +75803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1450), 1, anon_sym_sizeof, ACTIONS(2192), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(829), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -75807,13 +75819,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -75835,7 +75847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75856,7 +75868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12963] = 19, + [13060] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -75865,15 +75877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1450), 1, anon_sym_sizeof, ACTIONS(2194), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(829), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -75881,13 +75893,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -75909,7 +75921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75930,48 +75942,47 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13056] = 21, + [13153] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, ACTIONS(2196), 1, - anon_sym_COLON, - STATE(754), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(1145), 1, + STATE(829), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75984,16 +75995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76001,12 +76007,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13153] = 19, + [13246] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76015,15 +76025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1450), 1, anon_sym_sizeof, ACTIONS(2198), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(829), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -76031,13 +76041,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -76059,7 +76069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76080,47 +76090,48 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13246] = 19, + [13339] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, - anon_sym_LPAREN2, - ACTIONS(1446), 1, - anon_sym_sizeof, + ACTIONS(1753), 1, + sym_identifier, ACTIONS(2200), 1, - anon_sym_RBRACK, - STATE(754), 1, + anon_sym_COLON, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(1148), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1440), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76133,11 +76144,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76145,56 +76161,53 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13339] = 19, + [13436] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, - anon_sym_LPAREN2, - ACTIONS(1446), 1, - anon_sym_sizeof, - ACTIONS(2202), 1, - anon_sym_RBRACK, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(1078), 1, sym__expression, + STATE(1753), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1440), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76207,11 +76220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76219,16 +76237,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13432] = 19, + [13533] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76237,15 +76251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - ACTIONS(2204), 1, + ACTIONS(2202), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(829), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -76253,13 +76267,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -76281,7 +76295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76302,7 +76316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13525] = 19, + [13626] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76311,15 +76325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - ACTIONS(2206), 1, + ACTIONS(2204), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(829), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -76327,13 +76341,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -76355,7 +76369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76376,7 +76390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13618] = 21, + [13719] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76391,12 +76405,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + ACTIONS(2206), 1, + anon_sym_COLON, + STATE(753), 1, sym_string_literal, - STATE(1051), 1, + STATE(1170), 1, sym__expression, - STATE(1839), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76436,10 +76450,154 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, + sym__expression_not_binary, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [13816] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2208), 1, + anon_sym_RBRACK, + STATE(753), 1, + sym_string_literal, + STATE(829), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, + 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(782), 20, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [13909] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2210), 1, + anon_sym_RBRACK, + STATE(753), 1, + sym_string_literal, + STATE(829), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, + 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(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76447,12 +76605,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [13715] = 21, + [14002] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76467,12 +76629,12 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + ACTIONS(2212), 1, + anon_sym_COLON, + STATE(753), 1, sym_string_literal, - STATE(1102), 1, + STATE(1156), 1, sym__expression, - STATE(1955), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76512,7 +76674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76528,7 +76690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13812] = 21, + [14099] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76543,11 +76705,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - ACTIONS(2208), 1, - anon_sym_COLON, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1149), 1, + STATE(805), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76588,7 +76748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76604,48 +76764,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13909] = 21, + [14193] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - ACTIONS(2210), 1, - anon_sym_COLON, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1159), 1, + STATE(833), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76658,16 +76815,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76675,12 +76827,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14006] = 19, + [14283] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76689,15 +76845,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - ACTIONS(2212), 1, - anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(1168), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -76705,22 +76861,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76733,11 +76888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76745,55 +76905,50 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14099] = 20, + [14377] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1136), 1, + STATE(800), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76806,16 +76961,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76823,12 +76973,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14193] = 20, + [14467] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76843,9 +76997,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1160), 1, + STATE(793), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76886,7 +77040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76902,37 +77056,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14287] = 20, + [14561] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1125), 1, + STATE(1165), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -76942,6 +77084,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76954,13 +77108,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76976,121 +77130,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14381] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1833), 1, - sym_identifier, - ACTIONS(2214), 1, - anon_sym_LBRACE, - STATE(813), 1, - sym_ms_call_modifier, - STATE(972), 1, - sym__type_specifier, - STATE(1022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1345), 1, - sym__declaration_specifiers, - STATE(507), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(43), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(818), 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(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [14477] = 20, + [14655] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1129), 1, + STATE(794), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77103,16 +77181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77120,42 +77193,34 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14571] = 20, + [14745] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(777), 1, + STATE(1134), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -77165,6 +77230,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77177,13 +77254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77199,7 +77276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14665] = 18, + [14839] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77208,32 +77285,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(770), 1, + STATE(840), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -77250,7 +77327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77271,7 +77348,82 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14755] = 20, + [14929] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(2214), 1, + anon_sym_LBRACE, + STATE(813), 1, + sym_ms_call_modifier, + STATE(918), 1, + sym__type_specifier, + STATE(1003), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1357), 1, + sym__declaration_specifiers, + STATE(487), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [15025] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77286,9 +77438,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(969), 1, + STATE(1034), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77329,7 +77481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77345,46 +77497,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14849] = 20, + [15119] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(938), 1, + STATE(841), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77397,16 +77548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77414,51 +77560,54 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [14943] = 20, + [15209] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1128), 1, + STATE(844), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77471,16 +77620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77488,12 +77632,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15037] = 20, + [15299] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77504,13 +77652,13 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1763), 1, sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + ACTIONS(2216), 1, + anon_sym_LPAREN2, + STATE(753), 1, sym_string_literal, - STATE(840), 1, + STATE(1164), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -77545,13 +77693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77567,37 +77715,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15131] = 20, + [15393] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1147), 1, + STATE(845), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -77607,6 +77743,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77619,13 +77767,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77641,7 +77789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15225] = 20, + [15487] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77650,37 +77798,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1166), 1, + STATE(803), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77693,16 +77840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77710,12 +77852,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15319] = 18, + [15577] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77724,13 +77870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1446), 1, - anon_sym_sizeof, - ACTIONS(2216), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - STATE(754), 1, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(836), 1, + STATE(829), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -77738,13 +77884,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -77766,7 +77912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77787,7 +77933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15409] = 18, + [15667] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77796,13 +77942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(833), 1, + STATE(839), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -77810,22 +77958,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77838,11 +77985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77850,46 +78002,30 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15499] = 20, + [15761] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(949), 1, + STATE(1171), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -77899,6 +78035,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -77911,13 +78059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77933,7 +78081,79 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15593] = 20, + [15855] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, + sym_string_literal, + STATE(843), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, + 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(782), 20, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [15945] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77948,9 +78168,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(774), 1, + STATE(1147), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77991,7 +78211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78007,7 +78227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15687] = 18, + [16039] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78016,13 +78236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(831), 1, + STATE(1166), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78030,22 +78252,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78058,11 +78279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78070,16 +78296,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15777] = 18, + [16133] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78088,13 +78310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(842), 1, + STATE(1167), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78102,22 +78326,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78130,11 +78353,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78142,16 +78370,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15867] = 20, + [16227] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78166,9 +78390,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(921), 1, + STATE(934), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78209,7 +78433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78225,46 +78449,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15961] = 20, + [16321] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(923), 1, + STATE(839), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78277,16 +78500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78294,12 +78512,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16055] = 20, + [16411] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78308,15 +78530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1141), 1, + STATE(845), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78324,21 +78544,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78351,16 +78572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78368,50 +78584,55 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16149] = 18, + [16501] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, - anon_sym_LPAREN2, - ACTIONS(1446), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(841), 1, + STATE(1143), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1440), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78424,11 +78645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78436,16 +78662,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16239] = 20, + [16595] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78460,9 +78682,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(926), 1, + STATE(1169), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78503,7 +78725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78519,37 +78741,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16333] = 20, + [16689] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(957), 1, + STATE(838), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -78559,6 +78769,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78571,13 +78793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78593,7 +78815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16427] = 18, + [16783] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78602,13 +78824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, - anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - STATE(754), 1, + ACTIONS(2218), 1, + anon_sym_LPAREN2, + STATE(753), 1, sym_string_literal, - STATE(843), 1, + STATE(842), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78616,13 +78838,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -78644,7 +78866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78665,37 +78887,99 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16517] = 20, + [16873] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(960), 1, + STATE(1163), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + 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(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, + sym__expression_not_binary, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [16967] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, + sym_string_literal, + STATE(1159), 1, + sym__expression, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -78705,6 +78989,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78717,13 +79013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78739,46 +79035,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16611] = 20, + [17061] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(962), 1, + STATE(769), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78791,16 +79086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78808,12 +79098,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [16705] = 21, + [17151] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -78832,17 +79126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1833), 1, sym_identifier, - ACTIONS(2218), 1, + ACTIONS(2220), 1, anon_sym_LBRACE, - STATE(817), 1, + STATE(812), 1, sym_ms_call_modifier, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1351), 1, + STATE(1348), 1, sym__declaration_specifiers, - STATE(133), 3, + STATE(141), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -78851,7 +79145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -78871,7 +79165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78888,79 +79182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [16801] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1436), 1, - anon_sym_LPAREN2, - ACTIONS(1446), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(832), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1440), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - 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(808), 20, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [16891] = 20, + [17247] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78975,9 +79197,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1031), 1, + STATE(941), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79018,7 +79240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79034,7 +79256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16985] = 18, + [17341] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79043,32 +79265,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(829), 1, + STATE(780), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -79085,7 +79307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79106,45 +79328,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17075] = 18, + [17431] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, - anon_sym_LPAREN2, - ACTIONS(1446), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(840), 1, + STATE(1150), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1440), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79157,11 +79380,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79169,16 +79397,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17165] = 18, + [17525] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79187,32 +79411,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(827), 1, + STATE(783), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -79229,7 +79453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79250,7 +79474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17255] = 18, + [17615] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79259,32 +79483,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(838), 1, + STATE(787), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -79301,7 +79525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79322,7 +79546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17345] = 18, + [17705] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79331,32 +79555,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(845), 1, + STATE(792), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -79373,7 +79597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79394,7 +79618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17435] = 18, + [17795] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79403,32 +79627,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(844), 1, + STATE(810), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -79445,7 +79669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79466,7 +79690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17525] = 18, + [17885] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79475,13 +79699,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(835), 1, + STATE(1133), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -79489,95 +79715,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - 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(808), 20, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [17615] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(754), 1, - sym_string_literal, - STATE(963), 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(77), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79590,13 +79742,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79612,7 +79764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17709] = 18, + [17979] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79621,13 +79773,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(839), 1, + STATE(838), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -79635,13 +79787,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1438), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1440), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1444), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(1771), 2, @@ -79663,7 +79815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79684,7 +79836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17799] = 20, + [18069] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79699,9 +79851,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(964), 1, + STATE(962), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79742,7 +79894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79758,7 +79910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17893] = 18, + [18163] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79767,36 +79919,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(793), 1, + STATE(1162), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79809,11 +79962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79821,16 +79979,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [17983] = 21, + [18257] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -79849,17 +80003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1833), 1, sym_identifier, - ACTIONS(2220), 1, + ACTIONS(2222), 1, anon_sym_LBRACE, - STATE(815), 1, + STATE(816), 1, sym_ms_call_modifier, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1342), 1, + STATE(1345), 1, sym__declaration_specifiers, - STATE(205), 3, + STATE(496), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -79868,7 +80022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -79888,7 +80042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79905,45 +80059,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [18079] = 18, + [18353] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(777), 1, + STATE(915), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79956,11 +80111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79968,16 +80128,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18169] = 20, + [18447] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79986,37 +80142,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1155), 1, + STATE(809), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80029,16 +80184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80046,12 +80196,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18263] = 20, + [18537] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80066,9 +80220,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1034), 1, + STATE(971), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80109,7 +80263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80125,7 +80279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18357] = 20, + [18631] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80134,37 +80288,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1143), 1, + STATE(765), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80177,16 +80330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80194,12 +80342,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18451] = 20, + [18721] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80208,37 +80360,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1157), 1, + STATE(805), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80251,16 +80402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80268,12 +80414,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [18545] = 20, + [18811] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80288,9 +80438,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1058), 1, + STATE(976), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80331,7 +80481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80347,99 +80497,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18639] = 20, + [18905] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1158), 1, + STATE(978), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - 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(846), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, - sym__expression_not_binary, - 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_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18733] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(1146), 1, - sym__expression, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -80449,18 +80537,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80473,13 +80549,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80495,97 +80571,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18827] = 18, + [18999] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(79), 1, anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(766), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - 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(808), 20, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [18917] = 20, - ACTIONS(3), 1, - sym_comment, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1130), 1, + STATE(1151), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -80595,18 +80611,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80619,13 +80623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80641,7 +80645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19011] = 20, + [19093] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80650,37 +80654,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1144), 1, + STATE(791), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80693,16 +80696,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80710,12 +80708,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [19105] = 20, + [19183] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80730,9 +80732,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1164), 1, + STATE(920), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80773,7 +80775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80789,25 +80791,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19199] = 20, + [19277] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1163), 1, + STATE(981), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -80817,18 +80831,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80841,13 +80843,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80863,7 +80865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19293] = 20, + [19371] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80878,9 +80880,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(979), 1, + STATE(1161), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80921,7 +80923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80937,25 +80939,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19387] = 20, + [19465] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1153), 1, + STATE(983), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -80965,18 +80979,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80989,13 +80991,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81011,7 +81013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19481] = 20, + [19559] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81026,9 +81028,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1156), 1, + STATE(1153), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81069,7 +81071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81085,7 +81087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19575] = 20, + [19653] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81100,9 +81102,9 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1151), 1, + STATE(1075), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81143,7 +81145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81159,7 +81161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19669] = 21, + [19747] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -81178,17 +81180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1833), 1, sym_identifier, - ACTIONS(2222), 1, + ACTIONS(2224), 1, anon_sym_LBRACE, - STATE(814), 1, + STATE(817), 1, sym_ms_call_modifier, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1340), 1, + STATE(1352), 1, sym__declaration_specifiers, - STATE(490), 3, + STATE(196), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -81197,7 +81199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -81217,7 +81219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -81234,97 +81236,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [19765] = 18, + [19843] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(782), 1, + STATE(1052), 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(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - 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(808), 20, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [19855] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(831), 1, - sym__expression, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -81334,18 +81276,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81358,13 +81288,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81380,171 +81310,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19949] = 18, + [19937] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1436), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1446), 1, + ACTIONS(79), 1, anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(830), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1438), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1440), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1444), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - 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(808), 20, - sym__expression_not_binary, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_subscript_expression, - sym_call_expression, - sym_gnu_asm_expression, - sym_field_expression, - sym_compound_literal_expression, - sym_parenthesized_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20039] = 20, - ACTIONS(3), 1, - sym_comment, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(833), 1, + STATE(916), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1773), 2, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - 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(846), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, - sym__expression_not_binary, - 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_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [20133] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1763), 1, - sym_identifier, - ACTIONS(1775), 1, - anon_sym_sizeof, - ACTIONS(2224), 1, - anon_sym_LPAREN2, - STATE(754), 1, - sym_string_literal, - STATE(1135), 1, - sym__expression, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -81554,18 +81350,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81578,13 +81362,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81600,120 +81384,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20227] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1833), 1, - sym_identifier, - ACTIONS(2226), 1, - anon_sym_LBRACE, - STATE(816), 1, - sym_ms_call_modifier, - STATE(972), 1, - sym__type_specifier, - STATE(1022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1356), 1, - sym__declaration_specifiers, - STATE(466), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(37), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - ACTIONS(43), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(818), 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(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [20323] = 18, + [20031] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(796), 1, + STATE(1142), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81726,11 +81436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81738,16 +81453,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20413] = 18, + [20125] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81760,9 +81471,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(799), 1, + STATE(793), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -81798,7 +81509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81819,7 +81530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20503] = 18, + [20215] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81828,13 +81539,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + STATE(753), 1, sym_string_literal, - STATE(809), 1, + STATE(798), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -81870,7 +81581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81891,7 +81602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20593] = 18, + [20305] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81904,9 +81615,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(810), 1, + STATE(807), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -81942,7 +81653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81963,41 +81674,115 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20683] = 18, + [20395] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(765), 1, + STATE(988), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, + sym__expression_not_binary, + 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_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [20489] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, + sym_string_literal, + STATE(832), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -82014,7 +81799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82035,7 +81820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20773] = 18, + [20579] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -82044,36 +81829,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(806), 1, + STATE(1155), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82086,11 +81872,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82098,16 +81889,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [20863] = 18, + [20673] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -82116,32 +81903,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(805), 1, + STATE(828), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -82158,7 +81945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82179,46 +81966,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20953] = 20, + [20763] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(782), 1, + STATE(834), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82231,16 +82017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82248,42 +82029,34 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21047] = 20, + [20853] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, + ACTIONS(1763), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(1765), 1, anon_sym_LPAREN2, - STATE(754), 1, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(978), 1, + STATE(1139), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -82293,6 +82066,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82305,13 +82090,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82327,46 +82112,117 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21141] = 20, + [20947] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, - anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1753), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1152), 1, + STATE(827), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, + sym_true, + sym_false, + sym_identifier, + 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(782), 20, + sym__expression_not_binary, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_subscript_expression, + sym_call_expression, + sym_gnu_asm_expression, + sym_field_expression, + sym_compound_literal_expression, + sym_parenthesized_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [21037] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, + sym_string_literal, + STATE(835), 1, + sym__expression, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82379,16 +82235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(811), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82396,12 +82247,16 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, + sym_subscript_expression, + sym_call_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21235] = 18, + [21127] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -82410,36 +82265,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(803), 1, + STATE(1146), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82452,11 +82308,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82464,54 +82325,51 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21325] = 18, + [21221] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, - anon_sym_LPAREN2, - ACTIONS(1188), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(774), 1, + STATE(1149), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1178), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1186), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82524,11 +82382,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82536,16 +82399,12 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [21415] = 18, + [21315] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -82554,32 +82413,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1174), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1188), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(801), 1, + STATE(836), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -82596,7 +82455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(782), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82617,25 +82476,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21505] = 20, + [21405] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1154), 1, + STATE(1118), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -82645,18 +82516,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82669,13 +82528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82691,25 +82550,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21599] = 20, + [21499] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1765), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1167), 1, + STATE(945), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -82719,18 +82590,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82743,13 +82602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82765,25 +82624,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21693] = 20, + [21593] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(79), 1, + anon_sym_sizeof, ACTIONS(81), 1, anon_sym_offsetof, ACTIONS(83), 1, anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1763), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1765), 1, - anon_sym_LPAREN2, - ACTIONS(1775), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1165), 1, + STATE(807), 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(77), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -82793,18 +82664,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1767), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1769), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1773), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82817,13 +82676,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(846), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(808), 15, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -82839,7 +82698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [21787] = 18, + [21687] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -82848,36 +82707,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1188), 1, - anon_sym_sizeof, - ACTIONS(2230), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - STATE(754), 1, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(795), 1, + STATE(1154), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1176), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1178), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1186), 2, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -82890,11 +82750,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(808), 20, + STATE(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(782), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82902,15 +82767,86 @@ static const uint16_t ts_small_parse_table[] = { sym_sizeof_expression, sym_offsetof_expression, sym_generic_expression, - sym_subscript_expression, - sym_call_expression, sym_gnu_asm_expression, - sym_field_expression, sym_compound_literal_expression, - sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, + [21781] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(2230), 1, + anon_sym_LBRACE, + STATE(815), 1, + sym_ms_call_modifier, + STATE(918), 1, + sym__type_specifier, + STATE(1003), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1355), 1, + sym__declaration_specifiers, + STATE(464), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(37), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, [21877] = 6, ACTIONS(3), 1, sym_comment, @@ -82925,7 +82861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2236), 14, + ACTIONS(1972), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82940,7 +82876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2234), 29, + ACTIONS(1966), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82973,18 +82909,18 @@ static const uint16_t ts_small_parse_table[] = { [21942] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, + ACTIONS(2234), 1, sym_identifier, - STATE(753), 2, + STATE(754), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(91), 5, + ACTIONS(2241), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 14, + ACTIONS(2239), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82999,7 +82935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - ACTIONS(1966), 29, + ACTIONS(2237), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83032,18 +82968,18 @@ static const uint16_t ts_small_parse_table[] = { [22007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, + ACTIONS(2244), 1, sym_identifier, - STATE(755), 2, + STATE(754), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2247), 5, + ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2245), 14, + ACTIONS(2248), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83058,7 +82994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - ACTIONS(2243), 29, + ACTIONS(2246), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83205,12 +83141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1974), 1, anon_sym_STAR, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1987), 2, + ACTIONS(1977), 2, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(1977), 7, + ACTIONS(1980), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -83218,7 +83154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -83254,7 +83190,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22254] = 20, + [22254] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1861), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1863), 1, + anon_sym_RPAREN, + STATE(918), 1, + sym__type_specifier, + STATE(1003), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1253), 1, + sym__declaration_specifiers, + STATE(1548), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [22341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1761), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1759), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [22393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2260), 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(2258), 31, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + 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, + [22445] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -83273,17 +83374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1833), 1, sym_identifier, - ACTIONS(1851), 1, + ACTIONS(1861), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1853), 1, - anon_sym_RPAREN, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1292), 1, + STATE(1253), 1, sym__declaration_specifiers, - STATE(1548), 2, + STATE(1652), 2, sym_variadic_parameter, sym_parameter_declaration, ACTIONS(41), 4, @@ -83291,7 +83390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -83304,7 +83403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -83321,56 +83420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [22341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2260), 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(2258), 31, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - 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, - [22393] = 3, + [22529] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2258), 21, @@ -83419,7 +83469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [22445] = 3, + [22581] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1757), 21, @@ -83468,165 +83518,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [22497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1761), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1759), 23, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [22549] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1833), 1, - sym_identifier, - ACTIONS(1851), 1, - anon_sym_DOT_DOT_DOT, - STATE(972), 1, - sym__type_specifier, - STATE(1022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1292), 1, - sym__declaration_specifiers, - STATE(1661), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(818), 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(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [22633] = 15, + [22633] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, + ACTIONS(2270), 1, + anon_sym_AMP_AMP, ACTIONS(2272), 1, + anon_sym_PIPE, + ACTIONS(2274), 1, + anon_sym_CARET, + ACTIONS(2276), 1, anon_sym_AMP, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - STATE(792), 1, + ACTIONS(2288), 1, + anon_sym_EQ, + STATE(774), 1, sym_argument_list, ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2274), 2, + ACTIONS(2278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2276), 2, + ACTIONS(2280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2278), 2, + ACTIONS(2282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2262), 19, + ACTIONS(2262), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -83642,75 +83581,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22708] = 20, + [22714] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2272), 1, - anon_sym_AMP, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2292), 1, - anon_sym_AMP_AMP, - ACTIONS(2294), 1, - anon_sym_PIPE, - ACTIONS(2296), 1, - anon_sym_CARET, - ACTIONS(2298), 1, - anon_sym_EQ, - ACTIONS(2300), 1, - anon_sym_QMARK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2274), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2276), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2278), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2268), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2288), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2304), 13, + ACTIONS(2296), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83724,10 +83610,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2302), 30, + ACTIONS(2294), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -83737,8 +83622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -83751,14 +83634,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, - [22844] = 3, + [22775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2308), 13, + ACTIONS(2300), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83772,7 +83651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2306), 30, + ACTIONS(2298), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83803,240 +83682,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22895] = 8, + [22826] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2312), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2270), 1, + anon_sym_AMP_AMP, + ACTIONS(2272), 1, anon_sym_PIPE, + ACTIONS(2274), 1, anon_sym_CARET, + ACTIONS(2276), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2310), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22956] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - STATE(792), 1, + ACTIONS(2304), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2306), 1, + anon_sym_EQ, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2316), 13, + ACTIONS(2266), 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, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2314), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2320), 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, + ACTIONS(2280), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2318), 30, - 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, + ACTIONS(2282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - 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, - [23068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2324), 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, + ACTIONS(2284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2322), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_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(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - [23119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2328), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2268), 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(2326), 30, + ACTIONS(2302), 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___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84049,31 +83746,29 @@ 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, - [23170] = 8, + [22909] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2266), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2270), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2288), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -84106,10 +83801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23231] = 3, + [22974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(2310), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84123,7 +83818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2330), 30, + ACTIONS(2308), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84154,10 +83849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23282] = 3, + [23025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 13, + ACTIONS(2314), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84171,7 +83866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2334), 30, + ACTIONS(2312), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84202,19 +83897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23333] = 7, + [23076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - STATE(792), 1, - sym_argument_list, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2340), 13, + ACTIONS(2318), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84228,9 +83914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2338), 25, + ACTIONS(2316), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -84240,6 +83927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84254,74 +83943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [23392] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2272), 1, - anon_sym_AMP, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2292), 1, - anon_sym_AMP_AMP, - ACTIONS(2294), 1, - anon_sym_PIPE, - ACTIONS(2296), 1, - anon_sym_CARET, - ACTIONS(2344), 1, - anon_sym_EQ, - STATE(792), 1, - sym_argument_list, - ACTIONS(2266), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2274), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2276), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2278), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2268), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2342), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23475] = 3, + [23127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 13, + ACTIONS(2322), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84335,7 +83962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2346), 30, + ACTIONS(2320), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84366,10 +83993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23526] = 3, + [23178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2352), 13, + ACTIONS(2326), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84383,7 +84010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2350), 30, + ACTIONS(2324), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84414,10 +84041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23577] = 3, + [23229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2356), 13, + ACTIONS(2330), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84431,7 +84058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2354), 30, + ACTIONS(2328), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84462,22 +84089,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23628] = 8, + [23280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2360), 13, + ACTIONS(2334), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84491,9 +84106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2358), 23, + ACTIONS(2332), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -84503,6 +84119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84515,10 +84133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23689] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [23331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2364), 13, + ACTIONS(2338), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84532,7 +84154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2362), 30, + ACTIONS(2336), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84544,9 +84166,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84563,10 +84185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23740] = 3, + [23382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2368), 13, + ACTIONS(2342), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84580,7 +84202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2366), 30, + ACTIONS(2340), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84611,10 +84233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23791] = 3, + [23433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2372), 13, + ACTIONS(2346), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84628,7 +84250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2370), 30, + ACTIONS(2344), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84640,9 +84262,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84659,27 +84281,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23842] = 3, + [23484] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2376), 13, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + STATE(774), 1, + sym_argument_list, + ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2288), 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(2374), 30, + ACTIONS(2262), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -84689,8 +84325,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84703,14 +84337,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, - [23893] = 3, + [23551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2380), 13, + ACTIONS(2350), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84724,7 +84354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2378), 30, + ACTIONS(2348), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84755,10 +84385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23944] = 3, + [23602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 13, + ACTIONS(2354), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84772,7 +84402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2382), 30, + ACTIONS(2352), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84803,38 +84433,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23995] = 3, + [23653] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2388), 13, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + STATE(774), 1, + sym_argument_list, + ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2288), 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(2386), 30, + ACTIONS(2262), 21, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84847,14 +84491,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, - [24046] = 3, + [23724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2392), 13, + ACTIONS(2358), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84868,7 +84508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2390), 30, + ACTIONS(2356), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84880,9 +84520,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84899,10 +84539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24097] = 3, + [23775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 13, + ACTIONS(2362), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84916,7 +84556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2394), 30, + ACTIONS(2360), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84947,10 +84587,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24148] = 3, + [23826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 13, + ACTIONS(2366), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84964,7 +84604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2398), 30, + ACTIONS(2364), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84976,9 +84616,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84995,61 +84635,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24199] = 20, + [23877] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2272), 1, - anon_sym_AMP, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2290), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2292), 1, - anon_sym_AMP_AMP, - ACTIONS(2294), 1, - anon_sym_PIPE, - ACTIONS(2296), 1, - anon_sym_CARET, - ACTIONS(2300), 1, - anon_sym_QMARK, - ACTIONS(2404), 1, - anon_sym_EQ, - STATE(792), 1, + STATE(774), 1, sym_argument_list, ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2274), 2, + ACTIONS(2278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2276), 2, + ACTIONS(2280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2278), 2, + ACTIONS(2282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2402), 16, + ACTIONS(2288), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2262), 19, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85060,10 +84694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24284] = 3, + [23950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 13, + ACTIONS(2370), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85077,7 +84711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2406), 30, + ACTIONS(2368), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85108,39 +84742,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24335] = 11, + [24001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, + ACTIONS(2374), 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(2372), 30, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2282), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(792), 1, - sym_argument_list, - ACTIONS(2266), 2, + 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, + [24052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2378), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2280), 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, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + anon_sym_EQ, + ACTIONS(2376), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_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, - ACTIONS(2286), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + [24103] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2412), 6, + ACTIONS(2288), 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(2410), 23, + ACTIONS(2262), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -85164,29 +84892,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24402] = 10, + [24166] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2276), 1, + anon_sym_AMP, + ACTIONS(2286), 1, anon_sym_LBRACK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2280), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2282), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, ACTIONS(2284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 8, + ACTIONS(2288), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2262), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24241] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + STATE(774), 1, + sym_argument_list, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2382), 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, @@ -85195,7 +84978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2262), 23, + ACTIONS(2380), 25, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -85219,10 +85002,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24467] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [24300] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2416), 13, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2386), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85236,10 +85033,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2414), 30, + ACTIONS(2384), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -85249,8 +85045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85263,14 +85057,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, - [24518] = 3, + [24361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 13, + ACTIONS(2390), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85284,7 +85074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2418), 30, + ACTIONS(2388), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85296,9 +85086,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85315,41 +85105,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24569] = 11, + [24412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - STATE(792), 1, - sym_argument_list, - ACTIONS(2266), 2, + ACTIONS(2394), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 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(2262), 23, + ACTIONS(2392), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -85359,6 +85135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85371,10 +85149,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24636] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 13, + ACTIONS(2398), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85388,7 +85170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2422), 30, + ACTIONS(2396), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85419,37 +85201,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24687] = 9, + [24514] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, + ACTIONS(2266), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(2284), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2402), 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(2262), 23, + ACTIONS(2400), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -85473,10 +85257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24750] = 3, + [24581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2428), 13, + ACTIONS(2406), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85490,7 +85274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2426), 30, + ACTIONS(2404), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85521,57 +85305,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24801] = 18, + [24632] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, ACTIONS(2270), 1, - anon_sym_EQ, - ACTIONS(2272), 1, - anon_sym_AMP, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2292), 1, anon_sym_AMP_AMP, - ACTIONS(2294), 1, + ACTIONS(2272), 1, anon_sym_PIPE, - ACTIONS(2296), 1, + ACTIONS(2274), 1, anon_sym_CARET, - STATE(792), 1, + ACTIONS(2276), 1, + anon_sym_AMP, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2304), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2410), 1, + anon_sym_EQ, + ACTIONS(2412), 1, + anon_sym_QMARK, + STATE(774), 1, sym_argument_list, ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2274), 2, + ACTIONS(2278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2276), 2, + ACTIONS(2280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2278), 2, + ACTIONS(2282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2262), 18, + ACTIONS(2408), 16, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2416), 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(2414), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85584,10 +85414,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24882] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2432), 13, + ACTIONS(2420), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85601,7 +85435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2430), 30, + ACTIONS(2418), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85632,58 +85466,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [24933] = 17, + [24819] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, ACTIONS(2270), 1, - anon_sym_EQ, + anon_sym_AMP_AMP, ACTIONS(2272), 1, - anon_sym_AMP, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2294), 1, anon_sym_PIPE, - ACTIONS(2296), 1, + ACTIONS(2274), 1, anon_sym_CARET, - STATE(792), 1, + ACTIONS(2276), 1, + anon_sym_AMP, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2304), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2412), 1, + anon_sym_QMARK, + ACTIONS(2424), 1, + anon_sym_EQ, + STATE(774), 1, sym_argument_list, ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2274), 2, + ACTIONS(2278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2276), 2, + ACTIONS(2280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2278), 2, + ACTIONS(2282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2262), 19, + ACTIONS(2422), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85694,52 +85531,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25012] = 16, + [24904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2272), 1, - anon_sym_AMP, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2296), 1, - anon_sym_CARET, - STATE(792), 1, - sym_argument_list, - ACTIONS(2266), 2, + ACTIONS(2428), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2270), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2274), 2, + ACTIONS(2426), 30, + 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, - ACTIONS(2276), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2278), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2280), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2284), 2, + anon_sym_SEMI, + anon_sym___attribute__, + 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, - ACTIONS(2286), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2268), 3, + [24955] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2288), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2262), 19, + 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(2262), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -85755,10 +85632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25089] = 3, + [25016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2436), 13, + ACTIONS(2432), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85772,7 +85649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2434), 30, + ACTIONS(2430), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -85784,9 +85661,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -85803,7 +85680,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25140] = 3, + [25067] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2436), 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(2434), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [25128] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2440), 13, @@ -85851,49 +85781,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25191] = 13, + [25179] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2272), 1, + anon_sym_PIPE, + ACTIONS(2274), 1, + anon_sym_CARET, + ACTIONS(2276), 1, + anon_sym_AMP, + ACTIONS(2286), 1, anon_sym_LBRACK, - STATE(792), 1, + ACTIONS(2288), 1, + anon_sym_EQ, + STATE(774), 1, sym_argument_list, ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2276), 2, + ACTIONS(2278), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2278), 2, + ACTIONS(2282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2262), 21, + ACTIONS(2262), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -85909,45 +85843,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25262] = 14, + [25258] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2274), 1, + anon_sym_CARET, + ACTIONS(2276), 1, + anon_sym_AMP, + ACTIONS(2286), 1, anon_sym_LBRACK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, ACTIONS(2266), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2274), 2, + ACTIONS(2278), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2276), 2, + ACTIONS(2280), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2278), 2, + ACTIONS(2282), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2280), 2, + ACTIONS(2284), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2284), 2, + ACTIONS(2288), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2268), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, ACTIONS(2262), 19, anon_sym_COMMA, anon_sym_RPAREN, @@ -85971,9 +85907,9 @@ static const uint16_t ts_small_parse_table[] = { [25335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86017,55 +85953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [25389] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(812), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2446), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2442), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2444), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [25442] = 17, + [25389] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -86084,18 +85972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1833), 1, sym_identifier, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1359), 1, + STATE(1379), 1, sym__declaration_specifiers, ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -86108,7 +85996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86125,7 +86013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [25519] = 17, + [25466] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -86144,18 +86032,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1833), 1, sym_identifier, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1366), 1, + STATE(1363), 1, sym__declaration_specifiers, ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -86168,7 +86056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86185,58 +86073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [25596] = 17, + [25543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, - anon_sym_enum, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1833), 1, - sym_identifier, - STATE(972), 1, - sym__type_specifier, - STATE(1022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1368), 1, - sym__declaration_specifiers, - ACTIONS(41), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(818), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(814), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(45), 8, + aux_sym_type_definition_repeat1, + ACTIONS(2446), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86245,7 +86088,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [25673] = 17, + ACTIONS(2442), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(2444), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [25596] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -86264,9 +86140,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1833), 1, sym_identifier, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, STATE(1375), 1, sym__declaration_specifiers, @@ -86275,7 +86151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -86288,7 +86164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86305,7 +86181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [25750] = 17, + [25673] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -86324,18 +86200,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1833), 1, sym_identifier, - STATE(972), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1378), 1, + STATE(1367), 1, sym__declaration_specifiers, ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -86348,7 +86224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(818), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86365,7 +86241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [25827] = 16, + [25750] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -86384,16 +86260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, ACTIONS(1833), 1, sym_identifier, - STATE(941), 1, + STATE(918), 1, sym__type_specifier, - STATE(1022), 1, + STATE(1003), 1, aux_sym_sized_type_specifier_repeat1, + STATE(1371), 1, + sym__declaration_specifiers, ACTIONS(41), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -86423,7 +86301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [25901] = 9, + [25827] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2456), 1, @@ -86445,7 +86323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86474,14 +86352,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, + [25887] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(49), 1, + anon_sym_enum, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1833), 1, + sym_identifier, + STATE(923), 1, + sym__type_specifier, + STATE(1003), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(41), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 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(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, [25961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(1996), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86524,11 +86460,11 @@ static const uint16_t ts_small_parse_table[] = { [26014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, ACTIONS(1990), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86571,58 +86507,11 @@ static const uint16_t ts_small_parse_table[] = { [26067] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1981), 1, - anon_sym_COLON, - ACTIONS(1983), 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(1972), 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(1966), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26120] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1979), 1, - anon_sym_EQ, - ACTIONS(1994), 1, + ACTIONS(1988), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86662,14 +86551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26173] = 6, + [26120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1992), 1, + ACTIONS(1994), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86709,7 +86598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26226] = 3, + [26173] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2470), 19, @@ -86753,14 +86642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [26273] = 6, + [26220] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1979), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1996), 1, + ACTIONS(1992), 1, anon_sym_COLON, - ACTIONS(1983), 10, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86800,51 +86689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [26326] = 15, + [26273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_LPAREN2, - ACTIONS(2478), 1, - anon_sym_AMP, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2474), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2482), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2484), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2486), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2270), 3, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(2476), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2262), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(1984), 1, + anon_sym_COLON, + ACTIONS(1986), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86855,53 +86707,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26396] = 19, + ACTIONS(1972), 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(1966), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26326] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2344), 1, - anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, ACTIONS(2478), 1, - anon_sym_AMP, - ACTIONS(2488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2490), 1, - anon_sym_AMP_AMP, - ACTIONS(2492), 1, - anon_sym_PIPE, - ACTIONS(2494), 1, anon_sym_CARET, - STATE(792), 1, + ACTIONS(2480), 1, + anon_sym_AMP, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2288), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2480), 2, + ACTIONS(2482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2482), 2, + ACTIONS(2484), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2484), 2, + ACTIONS(2486), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2486), 2, + ACTIONS(2488), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2342), 12, + ACTIONS(2262), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -86914,48 +86792,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26474] = 14, + [26398] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2482), 2, + ACTIONS(2484), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2484), 2, + ACTIONS(2486), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2486), 2, + ACTIONS(2488), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 4, + ACTIONS(2288), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2262), 14, + ACTIONS(2262), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -86968,22 +86845,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26542] = 8, + [26464] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2316), 13, + ACTIONS(2386), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86997,7 +86874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2314), 18, + ACTIONS(2384), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87016,19 +86893,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26598] = 7, + [26520] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2286), 2, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2340), 13, + ACTIONS(2296), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87042,7 +86922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2338), 20, + ACTIONS(2294), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87061,49 +86941,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, - [26652] = 13, + [26576] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, + ACTIONS(2306), 1, + anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(792), 1, + ACTIONS(2478), 1, + anon_sym_CARET, + ACTIONS(2480), 1, + anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2492), 1, + anon_sym_AMP_AMP, + ACTIONS(2494), 1, + anon_sym_PIPE, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2482), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2484), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2484), 2, + ACTIONS(2486), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2486), 2, + ACTIONS(2488), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2262), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2302), 12, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -87116,27 +87000,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26718] = 8, + [26654] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2360), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2288), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -87145,7 +87030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2358), 18, + ACTIONS(2262), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87164,115 +87049,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26774] = 19, + [26712] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, - anon_sym_LPAREN2, - ACTIONS(1857), 1, - anon_sym_STAR, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2496), 1, - sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - STATE(1221), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1373), 1, - sym__declarator, - STATE(1456), 1, - sym__abstract_declarator, - STATE(1499), 1, - sym_parameter_list, - STATE(1886), 1, - sym_ms_based_modifier, - ACTIONS(2498), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1026), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1033), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1475), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1422), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [26852] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2298), 1, + ACTIONS(2288), 1, anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, ACTIONS(2478), 1, + anon_sym_CARET, + ACTIONS(2480), 1, anon_sym_AMP, - ACTIONS(2488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2490), 1, - anon_sym_AMP_AMP, ACTIONS(2492), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(2494), 1, - anon_sym_CARET, - ACTIONS(2506), 1, - anon_sym_QMARK, - STATE(792), 1, + anon_sym_PIPE, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2480), 2, + ACTIONS(2482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2482), 2, + ACTIONS(2484), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2484), 2, + ACTIONS(2486), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2486), 2, + ACTIONS(2488), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2288), 11, + ACTIONS(2262), 13, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87283,45 +87107,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26932] = 11, + [26788] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(792), 1, + ACTIONS(2478), 1, + anon_sym_CARET, + ACTIONS(2480), 1, + anon_sym_AMP, + ACTIONS(2494), 1, + anon_sym_PIPE, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2482), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2484), 2, + anon_sym_GT, + anon_sym_LT, ACTIONS(2486), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2488), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2412), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2410), 18, + ACTIONS(2262), 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, @@ -87334,42 +87164,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26994] = 8, + [26862] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(792), 1, + ACTIONS(2480), 1, + anon_sym_AMP, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2312), 13, + ACTIONS(2474), 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(2482), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2484), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2486), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2488), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2288), 3, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(2310), 18, + ACTIONS(2476), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2262), 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, @@ -87382,47 +87219,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27050] = 16, + [26932] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2478), 1, - anon_sym_AMP, - ACTIONS(2494), 1, - anon_sym_CARET, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2270), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2480), 2, + ACTIONS(2482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2482), 2, + ACTIONS(2484), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2484), 2, + ACTIONS(2486), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2486), 2, + ACTIONS(2488), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2288), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, ACTIONS(2262), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87438,28 +87273,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27122] = 9, + [27000] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1865), 1, + anon_sym_LPAREN2, + ACTIONS(1867), 1, + anon_sym_STAR, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LBRACK, + STATE(1229), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1383), 1, + sym__declarator, + STATE(1466), 1, + sym__abstract_declarator, + STATE(1507), 1, + sym_parameter_list, + STATE(1874), 1, + sym_ms_based_modifier, + ACTIONS(2498), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1032), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1035), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1506), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1434), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [27078] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2476), 3, + ACTIONS(2288), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -87487,22 +87380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27180] = 8, + [27134] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2270), 13, + ACTIONS(2382), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87516,7 +87406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2262), 18, + ACTIONS(2380), 20, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87535,36 +87425,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27236] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [27188] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2488), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 8, + ACTIONS(2288), 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(2262), 18, anon_sym_PIPE_PIPE, @@ -87585,56 +87478,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27296] = 20, + [27250] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2404), 1, - anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2478), 1, - anon_sym_AMP, - ACTIONS(2488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2490), 1, - anon_sym_AMP_AMP, - ACTIONS(2492), 1, - anon_sym_PIPE, - ACTIONS(2494), 1, - anon_sym_CARET, - ACTIONS(2506), 1, - anon_sym_QMARK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2480), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2482), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2484), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2486), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2402), 11, + ACTIONS(2288), 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(2262), 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, @@ -87645,39 +87528,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27376] = 11, + [27310] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2486), 2, + ACTIONS(2488), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2270), 6, + ACTIONS(2402), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_EQ, - ACTIONS(2262), 18, + ACTIONS(2400), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -87696,54 +87579,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27438] = 18, + [27372] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 1, - anon_sym_EQ, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, + ACTIONS(2424), 1, + anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, ACTIONS(2478), 1, + anon_sym_CARET, + ACTIONS(2480), 1, anon_sym_AMP, ACTIONS(2490), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(2492), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(2494), 1, - anon_sym_CARET, - STATE(792), 1, + anon_sym_PIPE, + ACTIONS(2506), 1, + anon_sym_QMARK, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2480), 2, + ACTIONS(2482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2482), 2, + ACTIONS(2484), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2484), 2, + ACTIONS(2486), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2486), 2, + ACTIONS(2488), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2262), 13, - anon_sym_PIPE_PIPE, + ACTIONS(2422), 11, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87754,53 +87639,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27514] = 17, + [27452] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 1, - anon_sym_EQ, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, + ACTIONS(2410), 1, + anon_sym_EQ, ACTIONS(2472), 1, anon_sym_LPAREN2, ACTIONS(2478), 1, + anon_sym_CARET, + ACTIONS(2480), 1, anon_sym_AMP, + ACTIONS(2490), 1, + anon_sym_PIPE_PIPE, ACTIONS(2492), 1, - anon_sym_PIPE, + anon_sym_AMP_AMP, ACTIONS(2494), 1, - anon_sym_CARET, - STATE(792), 1, + anon_sym_PIPE, + ACTIONS(2506), 1, + anon_sym_QMARK, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2480), 2, + ACTIONS(2482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2482), 2, + ACTIONS(2484), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2484), 2, + ACTIONS(2486), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2486), 2, + ACTIONS(2488), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2262), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2408), 11, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87811,12 +87699,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27588] = 5, + [27532] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2436), 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(2510), 10, + ACTIONS(2434), 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, @@ -87827,7 +87747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1972), 12, + [27588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2338), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87840,7 +87763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1966), 14, + anon_sym_EQ, + ACTIONS(2336), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87851,14 +87775,37 @@ 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, - [27637] = 3, + [27633] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2392), 13, + ACTIONS(2508), 1, + anon_sym_EQ, + ACTIONS(2510), 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(1972), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87871,8 +87818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2390), 24, + ACTIONS(1966), 14, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87883,16 +87829,6 @@ 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, @@ -87900,7 +87836,7 @@ static const uint16_t ts_small_parse_table[] = { [27682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2372), 13, + ACTIONS(2432), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87914,7 +87850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2370), 24, + ACTIONS(2430), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87942,7 +87878,7 @@ static const uint16_t ts_small_parse_table[] = { [27727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2420), 13, + ACTIONS(2366), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -87956,7 +87892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2418), 24, + ACTIONS(2364), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88025,9 +87961,9 @@ static const uint16_t ts_small_parse_table[] = { [27816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 1, + ACTIONS(2518), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1348), 35, + ACTIONS(2516), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88066,9 +88002,50 @@ static const uint16_t ts_small_parse_table[] = { [27860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 1, + ACTIONS(2522), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2516), 35, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2520), 27, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2524), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88104,12 +88081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27904] = 3, + [27948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2530), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2520), 35, + ACTIONS(2528), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88145,12 +88122,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27948] = 3, + [27992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2534), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2524), 35, + ACTIONS(2532), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2538), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2536), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2540), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2546), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2544), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2548), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2548), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2554), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2552), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88186,12 +88409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27992] = 3, + [28300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(2558), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2528), 35, + ACTIONS(2556), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88227,12 +88450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28036] = 3, + [28344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, + ACTIONS(2562), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2532), 35, + ACTIONS(2560), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88268,12 +88491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28080] = 3, + [28388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2566), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 35, + ACTIONS(2564), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88309,12 +88532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28124] = 3, + [28432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2570), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2540), 35, + ACTIONS(2568), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88350,12 +88573,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28168] = 3, + [28476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 1, + ACTIONS(2574), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1410), 35, + ACTIONS(2572), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88391,12 +88614,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28212] = 3, + [28520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2578), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2544), 35, + ACTIONS(2576), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88432,12 +88655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28256] = 3, + [28564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 1, + ACTIONS(1428), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1394), 35, + ACTIONS(1426), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88473,12 +88696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28300] = 3, + [28608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1400), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 35, + ACTIONS(1398), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88514,12 +88737,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28344] = 3, + [28652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(1390), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 35, + ACTIONS(1388), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88555,12 +88778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28388] = 3, + [28696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(1350), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2552), 35, + ACTIONS(1348), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88596,12 +88819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28432] = 3, + [28740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(1358), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2556), 35, + ACTIONS(1356), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88637,29 +88860,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28476] = 3, + [28784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2562), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1382), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2560), 27, + ACTIONS(1380), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88678,12 +88901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28520] = 3, + [28828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 1, + ACTIONS(2582), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2516), 35, + ACTIONS(2580), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88719,29 +88942,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28564] = 3, + [28872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2470), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2564), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2468), 27, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88760,12 +88981,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28608] = 3, + [28914] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 1, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1229), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1420), 1, + sym__type_declarator, + STATE(1894), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1205), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1218), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [28982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2582), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2568), 35, + ACTIONS(2580), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88773,8 +89046,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -88801,12 +89072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28652] = 3, + [29024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, + ACTIONS(2570), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2572), 35, + ACTIONS(2568), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88814,8 +89085,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -88842,12 +89111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28696] = 3, + [29066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 1, + ACTIONS(2518), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1398), 35, + ACTIONS(2516), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88855,8 +89124,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -88883,12 +89150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28740] = 3, + [29108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 1, + ACTIONS(2558), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2576), 35, + ACTIONS(2556), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88896,8 +89163,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -88924,12 +89189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28784] = 3, + [29150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, + ACTIONS(2554), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2580), 35, + ACTIONS(2552), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88937,8 +89202,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -88965,12 +89228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28828] = 3, + [29192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(2574), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 35, + ACTIONS(2572), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88978,8 +89241,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_extern, anon_sym___attribute__, @@ -89006,64 +89267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28872] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2584), 1, - sym_identifier, - ACTIONS(2586), 1, - anon_sym_LPAREN2, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2592), 1, - sym_primitive_type, - STATE(1221), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1411), 1, - sym__type_declarator, - STATE(1907), 1, - sym_ms_based_modifier, - ACTIONS(2502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(905), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1195), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2590), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1463), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [28940] = 3, + [29234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 1, + ACTIONS(2566), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1348), 33, + ACTIONS(2564), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89097,12 +89306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28982] = 3, + [29276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(2526), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 33, + ACTIONS(2524), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89136,12 +89345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29024] = 3, + [29318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(2514), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2552), 33, + ACTIONS(2512), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89175,12 +89384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29066] = 3, + [29360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 1, + ACTIONS(2550), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2516), 33, + ACTIONS(2548), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89214,12 +89423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29108] = 3, + [29402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 1, + ACTIONS(2550), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1394), 33, + ACTIONS(2548), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89253,12 +89462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29150] = 3, + [29444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(2546), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2556), 33, + ACTIONS(2544), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89292,12 +89501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29192] = 3, + [29486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 1, + ACTIONS(2542), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2512), 33, + ACTIONS(2540), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89331,12 +89540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29234] = 3, + [29528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2562), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2564), 33, + ACTIONS(2560), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89370,10 +89579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29276] = 16, + [29570] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -89383,19 +89592,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1221), 1, + STATE(1229), 1, sym_ms_unaligned_ptr_modifier, - STATE(1393), 1, + STATE(1404), 1, + sym__type_declarator, + STATE(1894), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1195), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1218), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [29638] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1229), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1404), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, ACTIONS(2502), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(888), 2, + STATE(876), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1196), 2, + STATE(1195), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2500), 3, @@ -89407,7 +89668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -89422,12 +89683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [29344] = 3, + [29706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 1, + ACTIONS(2538), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2516), 33, + ACTIONS(2536), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89461,12 +89722,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29386] = 3, + [29748] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2598), 1, + anon_sym_LBRACE, + STATE(993), 1, + sym_field_declaration_list, + STATE(1014), 1, + sym_attribute_specifier, + ACTIONS(2596), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2572), 33, + anon_sym_COLON, + ACTIONS(2594), 23, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [29798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1380), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89500,12 +89804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29428] = 3, + [29840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 1, + ACTIONS(1358), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1410), 33, + ACTIONS(1356), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89539,50 +89843,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29470] = 16, + [29882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2584), 1, - sym_identifier, - ACTIONS(2586), 1, - anon_sym_LPAREN2, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2592), 1, - sym_primitive_type, - STATE(1221), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1411), 1, - sym__type_declarator, - STATE(1907), 1, - sym_ms_based_modifier, - ACTIONS(2502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1195), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1212), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2590), 4, + ACTIONS(1350), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1348), 33, + 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -89591,12 +89877,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [29538] = 3, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(1390), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 33, + ACTIONS(1388), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89630,34 +89921,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29580] = 7, + [29966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2598), 1, - anon_sym_LBRACE, - STATE(981), 1, - sym_field_declaration_list, - STATE(1014), 1, - sym_attribute_specifier, - ACTIONS(2596), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1400), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2594), 23, + ACTIONS(1398), 33, + 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89672,35 +89956,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29630] = 7, + [30008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2598), 1, - anon_sym_LBRACE, - STATE(982), 1, - sym_field_declaration_list, - STATE(1005), 1, - sym_attribute_specifier, - ACTIONS(2602), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1428), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2600), 23, + ACTIONS(1426), 33, + 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89715,8 +89995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [29680] = 3, + [30050] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2534), 1, @@ -89755,12 +90038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29722] = 3, + [30092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2530), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2544), 33, + ACTIONS(2528), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89794,27 +90077,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29764] = 3, + [30134] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2598), 1, + anon_sym_LBRACE, + STATE(924), 1, + sym_field_declaration_list, + STATE(1021), 1, + sym_attribute_specifier, + ACTIONS(2602), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2568), 33, - 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_COLON, + ACTIONS(2600), 23, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89829,20 +90119,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29806] = 7, + [30184] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, ACTIONS(2598), 1, anon_sym_LBRACE, - STATE(953), 1, + STATE(930), 1, sym_field_declaration_list, - STATE(1023), 1, + STATE(1028), 1, sym_attribute_specifier, ACTIONS(2606), 7, anon_sym_COMMA, @@ -89876,7 +90163,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [29856] = 3, + [30234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2610), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2608), 27, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [30276] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2578), 1, @@ -89915,39 +90241,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29898] = 7, + [30318] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(2598), 1, - anon_sym_LBRACE, - STATE(974), 1, - sym_field_declaration_list, - STATE(1010), 1, - sym_attribute_specifier, - ACTIONS(2610), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, anon_sym_LPAREN2, + ACTIONS(2588), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2608), 23, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1229), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1398), 1, + sym__type_declarator, + STATE(1894), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(891), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1187), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(1471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -89956,29 +90293,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [29948] = 3, + [30386] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2598), 1, + anon_sym_LBRACE, + STATE(990), 1, + sym_field_declaration_list, + STATE(999), 1, + sym_attribute_specifier, + ACTIONS(2614), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2580), 33, - 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_COLON, + ACTIONS(2612), 23, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89993,31 +90335,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [29990] = 3, + [30436] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2598), 1, + anon_sym_LBRACE, + STATE(974), 1, + sym_field_declaration_list, + STATE(1018), 1, + sym_attribute_specifier, + ACTIONS(2618), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2528), 33, - 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_COLON, + ACTIONS(2616), 23, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90032,27 +90378,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [30032] = 3, + [30486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2256), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2524), 33, - 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(2254), 31, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90075,27 +90417,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30074] = 3, + [30527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 1, + ACTIONS(1757), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1398), 33, - 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(1755), 27, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90114,23 +90455,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30116] = 3, + [30568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(2252), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 33, - 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(2250), 31, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90153,27 +90493,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30158] = 3, + [30609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(1761), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 33, - 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(1759), 27, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90192,18 +90531,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30200] = 3, + [30650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 7, + ACTIONS(2622), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2468), 27, + ACTIONS(2620), 27, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -90231,84 +90569,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30242] = 16, + [30691] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2584), 1, - sym_identifier, - ACTIONS(2586), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2588), 1, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_SLASH, + ACTIONS(2630), 1, + anon_sym_AMP_AMP, + ACTIONS(2632), 1, + anon_sym_PIPE, + ACTIONS(2634), 1, + anon_sym_CARET, + ACTIONS(2636), 1, + anon_sym_AMP, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2626), 2, anon_sym_STAR, - ACTIONS(2592), 1, - sym_primitive_type, - STATE(1221), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1419), 1, - sym__type_declarator, - STATE(1907), 1, - sym_ms_based_modifier, - ACTIONS(2502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1204), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1212), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2590), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1463), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [30310] = 3, + anon_sym_PERCENT, + ACTIONS(2638), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [30761] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2540), 33, - 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, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_SLASH, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2626), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2288), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2262), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [30819] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, anon_sym___attribute__, + ACTIONS(35), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2646), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2648), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(43), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(818), 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(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -90317,37 +90710,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30352] = 3, + [30871] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2520), 33, - 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, + ACTIONS(31), 1, anon_sym___attribute__, + ACTIONS(35), 1, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2650), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2652), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(43), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(917), 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(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -90356,31 +90753,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30394] = 3, + [30923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 7, + STATE(919), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2658), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2656), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2612), 27, + anon_sym_COLON, + ACTIONS(2654), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -90396,30 +90791,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [30436] = 3, + [30967] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2264), 1, anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_SLASH, + ACTIONS(2630), 1, + anon_sym_AMP_AMP, + ACTIONS(2632), 1, + anon_sym_PIPE, + ACTIONS(2634), 1, + anon_sym_CARET, + ACTIONS(2636), 1, + anon_sym_AMP, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, + anon_sym_QMARK, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2626), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2638), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2422), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [31041] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2616), 27, + STATE(714), 1, + sym_string_literal, + ACTIONS(2665), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2620), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90438,26 +90885,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30477] = 3, + [31085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1757), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2514), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1755), 27, + anon_sym_RBRACE, + ACTIONS(2512), 30, + 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, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90476,31 +90922,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30518] = 3, + [31125] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1761), 6, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2667), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2669), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(1759), 27, + ACTIONS(43), 6, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(979), 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(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -90509,31 +90965,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30559] = 3, + [31177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 2, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1000), 1, + sym_attribute_specifier, + ACTIONS(2673), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2254), 31, + anon_sym_COLON, + ACTIONS(2671), 23, 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90548,26 +91003,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [30600] = 3, + [31221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 2, + ACTIONS(1382), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2250), 31, + ACTIONS(1380), 31, + 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, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -90590,25 +91041,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30641] = 3, + [31261] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 2, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1010), 1, + sym_attribute_specifier, + ACTIONS(2677), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2556), 30, - 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_COLON, + ACTIONS(2675), 23, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90623,19 +91079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [30681] = 3, + [31305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 2, + ACTIONS(1358), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1348), 30, + ACTIONS(1356), 31, 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, @@ -90664,15 +91117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30721] = 3, + [31345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 1, + ACTIONS(2530), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2512), 31, + anon_sym_RBRACE, + ACTIONS(2528), 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, sym_preproc_directive, @@ -90701,12 +91154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30761] = 3, + [31385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2558), 1, + ACTIONS(1350), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2556), 31, + ACTIONS(1348), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90738,25 +91191,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30801] = 3, + [31425] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(998), 1, + sym_attribute_specifier, + ACTIONS(2681), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2552), 31, - 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_COLON, + ACTIONS(2679), 23, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90771,29 +91229,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [30841] = 3, + [31469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 2, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1002), 1, + sym_attribute_specifier, + ACTIONS(2685), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2532), 30, - 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_COLON, + ACTIONS(2683), 23, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90808,16 +91268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [30881] = 3, + [31513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, + ACTIONS(1390), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 31, + ACTIONS(1388), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90849,82 +91306,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30921] = 18, + [31553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - ACTIONS(2626), 1, - anon_sym_AMP_AMP, - ACTIONS(2628), 1, - anon_sym_PIPE, - ACTIONS(2630), 1, - anon_sym_CARET, - ACTIONS(2632), 1, - anon_sym_AMP, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2636), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2638), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2262), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, + ACTIONS(1400), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1398), 31, + 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [30991] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(922), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2646), 4, + anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2644), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2642), 20, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90939,72 +91339,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [31035] = 17, + [31593] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, ACTIONS(2628), 1, - anon_sym_PIPE, + anon_sym_SLASH, ACTIONS(2630), 1, - anon_sym_CARET, + anon_sym_AMP_AMP, ACTIONS(2632), 1, + anon_sym_PIPE, + ACTIONS(2634), 1, + anon_sym_CARET, + ACTIONS(2636), 1, anon_sym_AMP, - STATE(792), 1, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2262), 9, + ACTIONS(2302), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [31103] = 5, + [31665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, + ACTIONS(1428), 1, anon_sym_LBRACK_LBRACK, - STATE(735), 1, - sym_string_literal, - ACTIONS(2649), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2616), 25, + ACTIONS(1426), 31, + 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, @@ -91030,13 +91433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31147] = 3, + [31705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 2, + ACTIONS(2518), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2580), 30, + ACTIONS(2516), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91067,64 +91470,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31187] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2270), 1, - anon_sym_PIPE, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - ACTIONS(2630), 1, - anon_sym_CARET, - ACTIONS(2632), 1, - anon_sym_AMP, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2636), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2638), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2262), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [31255] = 3, + [31745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2578), 2, + ACTIONS(2534), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2576), 30, + ACTIONS(2532), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91155,13 +91507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31295] = 3, + [31785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 2, + ACTIONS(1400), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2572), 30, + ACTIONS(1398), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91192,18 +91544,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31335] = 3, + [31825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2622), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2544), 31, - 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(752), 1, + sym_string_literal, + ACTIONS(2665), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2620), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -91229,15 +91583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31375] = 3, + [31869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 1, + ACTIONS(1390), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2516), 31, + anon_sym_RBRACE, + ACTIONS(1388), 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, sym_preproc_directive, @@ -91266,15 +91620,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31415] = 3, + [31909] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_SLASH, + ACTIONS(2630), 1, + anon_sym_AMP_AMP, + ACTIONS(2632), 1, + anon_sym_PIPE, + ACTIONS(2634), 1, + anon_sym_CARET, + ACTIONS(2636), 1, + anon_sym_AMP, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, + anon_sym_QMARK, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2626), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2638), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2408), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_RBRACE, - ACTIONS(2564), 30, + anon_sym_COLON, + [31983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2582), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2580), 31, 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, @@ -91303,15 +91711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31455] = 3, + [32023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2514), 2, + ACTIONS(2570), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2512), 30, + ACTIONS(2568), 31, 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, @@ -91340,15 +91748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31495] = 3, + [32063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 1, + ACTIONS(2538), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2516), 31, + anon_sym_RBRACE, + ACTIONS(2536), 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, sym_preproc_directive, @@ -91377,18 +91785,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31535] = 3, + [32103] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_SLASH, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2626), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2402), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2400), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_RBRACE, - ACTIONS(2516), 30, - 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_COLON, + anon_sym_QMARK, + [32161] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2622), 1, + anon_sym_LBRACK_LBRACK, + STATE(678), 1, + sym_string_literal, + ACTIONS(2665), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2620), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -91414,20 +91870,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31575] = 5, + [32205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, + ACTIONS(2518), 1, anon_sym_LBRACK_LBRACK, - STATE(729), 1, - sym_string_literal, - ACTIONS(2649), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2616), 25, + ACTIONS(2516), 31, + 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, @@ -91453,15 +91907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31619] = 3, + [32245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 2, + ACTIONS(2558), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2516), 30, + ACTIONS(2556), 31, 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, @@ -91490,15 +91944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31659] = 3, + [32285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2554), 2, + ACTIONS(2554), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2552), 30, + ACTIONS(2552), 31, 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, @@ -91527,66 +91981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31699] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - ACTIONS(2626), 1, - anon_sym_AMP_AMP, - ACTIONS(2628), 1, - anon_sym_PIPE, - ACTIONS(2630), 1, - anon_sym_CARET, - ACTIONS(2632), 1, - anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, - anon_sym_QMARK, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2636), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2638), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2402), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [31773] = 3, + [32325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2566), 1, + ACTIONS(2574), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2564), 31, + ACTIONS(2572), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91618,12 +92018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31813] = 3, + [32365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2574), 1, + ACTIONS(2566), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2572), 31, + ACTIONS(2564), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91655,41 +92055,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31853] = 9, + [32405] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, + ACTIONS(2622), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2655), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2657), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(43), 6, + STATE(702), 1, + sym_string_literal, + ACTIONS(2665), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2620), 25, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(977), 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(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -91698,15 +92089,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [31905] = 3, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [32449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 2, + ACTIONS(2526), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2524), 30, + ACTIONS(2524), 31, 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, @@ -91735,13 +92131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31945] = 3, + [32489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 2, + ACTIONS(2558), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1398), 30, + ACTIONS(2556), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91772,15 +92168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31985] = 3, + [32529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 2, + ACTIONS(2514), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2536), 30, + ACTIONS(2512), 31, 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, @@ -91809,12 +92205,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32025] = 3, + [32569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2534), 1, + ACTIONS(2550), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2532), 31, + ACTIONS(2548), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91846,15 +92242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32065] = 3, + [32609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 2, + ACTIONS(2550), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2548), 30, + ACTIONS(2548), 31, 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, @@ -91883,12 +92279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32105] = 3, + [32649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, + ACTIONS(2546), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2536), 31, + ACTIONS(2544), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91920,20 +92316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32145] = 5, + [32689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, + ACTIONS(2542), 1, anon_sym_LBRACK_LBRACK, - STATE(672), 1, - sym_string_literal, - ACTIONS(2649), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2616), 25, + ACTIONS(2540), 31, + 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, @@ -91959,59 +92353,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32189] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2270), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2262), 16, - 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___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32243] = 3, + [32729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 2, + ACTIONS(2562), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2544), 30, + ACTIONS(2560), 31, 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, @@ -92040,13 +92390,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32283] = 3, + [32769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 2, + ACTIONS(2562), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2540), 30, + ACTIONS(2560), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -92077,57 +92427,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32323] = 9, + [32809] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2659), 3, - anon_sym___based, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, anon_sym_LBRACK, - sym_identifier, - ACTIONS(2661), 5, + ACTIONS(2628), 1, + anon_sym_SLASH, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2626), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2288), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2262), 16, 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, - ACTIONS(43), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 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(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [32375] = 5, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [32863] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - STATE(1011), 1, + STATE(1027), 1, sym_attribute_specifier, - ACTIONS(2665), 7, + ACTIONS(2689), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -92135,7 +92486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2663), 23, + ACTIONS(2687), 23, anon_sym_extern, anon_sym___declspec, anon_sym___based, @@ -92159,13 +92510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [32419] = 3, + [32907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 2, + ACTIONS(2526), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2520), 30, + ACTIONS(2524), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -92196,15 +92547,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32459] = 3, + [32947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(1428), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2540), 31, + anon_sym_RBRACE, + ACTIONS(1426), 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, sym_preproc_directive, @@ -92233,30 +92584,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32499] = 5, + [32987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1007), 1, - sym_attribute_specifier, - ACTIONS(2669), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2538), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2667), 23, + ACTIONS(2536), 31, + 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, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92271,66 +92617,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [32543] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2270), 1, - anon_sym_PIPE, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - ACTIONS(2632), 1, - anon_sym_AMP, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2636), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2638), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2262), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32609] = 3, + [33027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 2, + ACTIONS(2534), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1360), 30, + ACTIONS(2532), 31, 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, @@ -92359,20 +92658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32649] = 5, + [33067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, + ACTIONS(2542), 2, anon_sym_LBRACK_LBRACK, - STATE(697), 1, - sym_string_literal, - ACTIONS(2649), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2616), 25, + anon_sym_RBRACE, + ACTIONS(2540), 30, + 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, @@ -92398,74 +92695,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [32693] = 15, + [33107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - STATE(792), 1, - sym_argument_list, - ACTIONS(2270), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2636), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2638), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2262), 10, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1015), 1, + sym_attribute_specifier, + ACTIONS(2693), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2578), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2576), 31, - 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_COLON, + ACTIONS(2691), 23, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92480,158 +92733,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [32797] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - STATE(792), 1, - sym_argument_list, - ACTIONS(2270), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2636), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2638), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2262), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32859] = 12, + [33151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2270), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2262), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + ACTIONS(2530), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2528), 31, + 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32917] = 11, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33191] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - STATE(792), 1, + ACTIONS(2632), 1, + anon_sym_PIPE, + ACTIONS(2634), 1, + anon_sym_CARET, + ACTIONS(2636), 1, + anon_sym_AMP, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2270), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2262), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2262), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [32973] = 3, + [33259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2522), 1, + ACTIONS(2546), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2520), 31, + anon_sym_RBRACE, + ACTIONS(2544), 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, sym_preproc_directive, @@ -92660,15 +92859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33013] = 3, + [33299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2526), 1, + ACTIONS(2554), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2524), 31, + anon_sym_RBRACE, + ACTIONS(2552), 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, sym_preproc_directive, @@ -92697,25 +92896,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33053] = 3, + [33339] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1024), 1, + sym_attribute_specifier, + ACTIONS(2697), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2528), 31, - 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_COLON, + ACTIONS(2695), 23, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -92730,19 +92934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [33093] = 3, + [33383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2582), 1, + ACTIONS(1350), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2580), 31, + anon_sym_RBRACE, + ACTIONS(1348), 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, sym_preproc_directive, @@ -92771,67 +92972,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33133] = 20, + [33423] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - ACTIONS(2626), 1, - anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2628), 1, + anon_sym_SLASH, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, - anon_sym_QMARK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2288), 6, + ACTIONS(2262), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [33207] = 3, + anon_sym_QMARK, + [33491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 2, + ACTIONS(1358), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2568), 30, + ACTIONS(1356), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -92862,44 +93060,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33247] = 3, + [33531] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2528), 30, - 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(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_PIPE, + ACTIONS(2628), 1, + anon_sym_SLASH, + ACTIONS(2636), 1, + anon_sym_AMP, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2626), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2638), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33287] = 9, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [33597] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -92908,11 +93119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2671), 3, + ACTIONS(2699), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, - ACTIONS(2673), 5, + ACTIONS(2701), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -92925,7 +93136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(952), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92942,20 +93153,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33339] = 5, + [33649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2618), 1, + ACTIONS(2578), 1, anon_sym_LBRACK_LBRACK, - STATE(711), 1, - sym_string_literal, - ACTIONS(2649), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2616), 25, + ACTIONS(2576), 31, + 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, @@ -92981,30 +93190,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33383] = 5, + [33689] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(996), 1, - sym_attribute_specifier, - ACTIONS(2677), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2264), 1, anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_SLASH, + STATE(774), 1, + sym_argument_list, + ACTIONS(2288), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2626), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2638), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(2675), 23, + anon_sym_QMARK, + [33753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2582), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2580), 30, + 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, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -93019,16 +93272,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [33427] = 3, + [33793] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 1, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_SLASH, + STATE(774), 1, + sym_argument_list, + ACTIONS(2288), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2626), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2262), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [33855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2578), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1398), 31, + anon_sym_RBRACE, + ACTIONS(2576), 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, sym_preproc_directive, @@ -93057,15 +93361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33467] = 3, + [33895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(2574), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 31, + anon_sym_RBRACE, + ACTIONS(2572), 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, sym_preproc_directive, @@ -93094,41 +93398,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33507] = 9, + [33935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(2570), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2568), 30, + 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__, - ACTIONS(35), 1, anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2679), 3, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(2681), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(43), 6, + [33975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2550), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2548), 30, + 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, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 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(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93137,38 +93467,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33559] = 12, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34015] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2412), 4, + ACTIONS(2288), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2410), 14, + ACTIONS(2262), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -93178,71 +93510,20 @@ 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___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [33617] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - ACTIONS(2626), 1, - anon_sym_AMP_AMP, - ACTIONS(2628), 1, - anon_sym_PIPE, - ACTIONS(2630), 1, - anon_sym_CARET, - ACTIONS(2632), 1, - anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2636), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2638), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2640), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2342), 7, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [33689] = 3, + [34071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 2, + ACTIONS(2566), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1430), 30, + ACTIONS(2564), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -93273,53 +93554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33729] = 5, + [34111] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, STATE(1006), 1, sym_attribute_specifier, - ACTIONS(2685), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2683), 23, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [33773] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1003), 1, - sym_attribute_specifier, - ACTIONS(2689), 7, + ACTIONS(2705), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93327,7 +93569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2687), 23, + ACTIONS(2703), 23, anon_sym_extern, anon_sym___declspec, anon_sym___based, @@ -93351,52 +93593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [33817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 31, - 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, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33857] = 3, + [34155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 1, + ACTIONS(2550), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1348), 31, + anon_sym_RBRACE, + ACTIONS(2548), 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, sym_preproc_directive, @@ -93425,15 +93630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33897] = 3, + [34195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2570), 1, + ACTIONS(1382), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2568), 31, + anon_sym_RBRACE, + ACTIONS(1380), 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, sym_preproc_directive, @@ -93462,62 +93667,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33937] = 3, + [34235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1410), 31, - 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, + ACTIONS(31), 1, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1396), 2, + STATE(1020), 1, + sym_attribute_specifier, + ACTIONS(2709), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1394), 30, - 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_COLON, + ACTIONS(2707), 23, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -93532,18 +93705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34017] = 5, + [34279] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - STATE(1016), 1, + STATE(997), 1, sym_attribute_specifier, - ACTIONS(2693), 7, + ACTIONS(2713), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93551,7 +93721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2691), 23, + ACTIONS(2711), 23, anon_sym_extern, anon_sym___declspec, anon_sym___based, @@ -93575,18 +93745,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34061] = 3, + [34323] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 2, + ACTIONS(2622), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1410), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(730), 1, + sym_string_literal, + ACTIONS(2665), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2620), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93612,14 +93784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34101] = 5, + [34367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1019), 1, - sym_attribute_specifier, - ACTIONS(2697), 7, + ACTIONS(2717), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93627,8 +93795,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2695), 23, + ACTIONS(2715), 24, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -93651,14 +93820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34145] = 5, + [34406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - STATE(1001), 1, - sym_attribute_specifier, - ACTIONS(2701), 7, + ACTIONS(2721), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93666,8 +93831,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2699), 23, + ACTIONS(2719), 24, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -93690,25 +93856,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34189] = 3, + [34445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 1, + ACTIONS(2725), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1394), 31, - 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_COLON, + ACTIONS(2723), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -93723,14 +93891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [34229] = 3, + [34484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 7, + ACTIONS(2729), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93738,7 +93903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2703), 24, + ACTIONS(2727), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93763,10 +93928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34268] = 3, + [34523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2709), 7, + ACTIONS(2733), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93774,7 +93939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2707), 24, + ACTIONS(2731), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93799,10 +93964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34307] = 3, + [34562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 12, + ACTIONS(1344), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_sizeof, @@ -93815,7 +93980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - ACTIONS(1234), 19, + ACTIONS(1346), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93835,10 +94000,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [34346] = 3, + [34601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 7, + ACTIONS(2737), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93846,7 +94011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2711), 24, + ACTIONS(2735), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93871,26 +94036,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34385] = 3, + [34640] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 7, + ACTIONS(2739), 1, + sym_identifier, + ACTIONS(2748), 1, + sym_primitive_type, + STATE(919), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2746), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2742), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2715), 24, + ACTIONS(2744), 18, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -93905,12 +94076,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, + [34687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1200), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [34424] = 3, + ACTIONS(1202), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [34726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 7, + ACTIONS(1200), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1202), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [34765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2752), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93918,7 +94159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2719), 24, + ACTIONS(2750), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93943,10 +94184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34463] = 3, + [34804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 7, + ACTIONS(2756), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93954,7 +94195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2723), 24, + ACTIONS(2754), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -93979,10 +94220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34502] = 3, + [34843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 7, + ACTIONS(2760), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -93990,7 +94231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2727), 24, + ACTIONS(2758), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94015,10 +94256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34541] = 3, + [34882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 7, + ACTIONS(2764), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94026,7 +94267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2731), 24, + ACTIONS(2762), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94051,10 +94292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34580] = 3, + [34921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 7, + ACTIONS(2768), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94062,7 +94303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2735), 24, + ACTIONS(2766), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94087,10 +94328,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34619] = 3, + [34960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 7, + ACTIONS(2772), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94098,7 +94339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2739), 24, + ACTIONS(2770), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94123,46 +94364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34658] = 3, + [34999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1346), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [34697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2745), 7, + ACTIONS(2776), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94170,7 +94375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2743), 24, + ACTIONS(2774), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94195,10 +94400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34736] = 3, + [35038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 7, + ACTIONS(2780), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94206,7 +94411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2747), 24, + ACTIONS(2778), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94231,10 +94436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34775] = 3, + [35077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2753), 7, + ACTIONS(2784), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94242,7 +94447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2751), 24, + ACTIONS(2782), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94267,19 +94472,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34814] = 4, + [35116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_LPAREN2, - ACTIONS(1977), 6, + ACTIONS(2788), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1964), 24, + ACTIONS(2786), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94304,10 +94508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34855] = 3, + [35155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 7, + ACTIONS(2792), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94315,7 +94519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2758), 24, + ACTIONS(2790), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94340,10 +94544,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34894] = 3, + [35194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 7, + ACTIONS(1344), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1346), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [35233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2796), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94351,7 +94591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2762), 24, + ACTIONS(2794), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94376,10 +94616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34933] = 3, + [35272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 7, + ACTIONS(2800), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94387,7 +94627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2766), 24, + ACTIONS(2798), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94412,10 +94652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [34972] = 3, + [35311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2772), 7, + ACTIONS(2804), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94423,7 +94663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2770), 24, + ACTIONS(2802), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94448,10 +94688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35011] = 3, + [35350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2776), 7, + ACTIONS(2808), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94459,7 +94699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2774), 24, + ACTIONS(2806), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94484,10 +94724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35050] = 3, + [35389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 7, + ACTIONS(2812), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94495,7 +94735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2778), 24, + ACTIONS(2810), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94520,46 +94760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35089] = 3, + [35428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1232), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1234), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [35128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 7, + ACTIONS(2816), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94567,7 +94771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2782), 24, + ACTIONS(2814), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94592,10 +94796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35167] = 3, + [35467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 7, + ACTIONS(2820), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94603,7 +94807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2786), 24, + ACTIONS(2818), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94628,18 +94832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35206] = 3, + [35506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 7, + ACTIONS(2822), 1, + anon_sym_LPAREN2, + ACTIONS(1980), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2790), 24, + ACTIONS(1964), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94664,10 +94869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35245] = 3, + [35547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 7, + ACTIONS(2827), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94675,7 +94880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2794), 24, + ACTIONS(2825), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94700,10 +94905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35284] = 3, + [35586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 7, + ACTIONS(2831), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94711,7 +94916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2798), 24, + ACTIONS(2829), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94736,68 +94941,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35323] = 3, + [35625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1346), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [35362] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2802), 1, - sym_identifier, - ACTIONS(2811), 1, - sym_primitive_type, - STATE(922), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2809), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2805), 6, + ACTIONS(2835), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2807), 18, + anon_sym_COLON, + ACTIONS(2833), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -94812,10 +94975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35409] = 3, + sym_primitive_type, + sym_identifier, + [35664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 7, + ACTIONS(2839), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94823,7 +94988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2813), 24, + ACTIONS(2837), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94848,10 +95013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35448] = 3, + [35703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 7, + ACTIONS(2843), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94859,7 +95024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2817), 24, + ACTIONS(2841), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94884,10 +95049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35487] = 3, + [35742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 7, + ACTIONS(2847), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -94895,7 +95060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2821), 24, + ACTIONS(2845), 24, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -94920,39 +95085,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [35526] = 15, + [35781] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(1865), 1, anon_sym_LPAREN2, - ACTIONS(1857), 1, + ACTIONS(1867), 1, anon_sym_STAR, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, ACTIONS(2504), 1, anon_sym_LBRACK, - STATE(1376), 1, + STATE(1372), 1, sym__declarator, - STATE(1469), 1, + STATE(1470), 1, sym__abstract_declarator, - STATE(1499), 1, + STATE(1507), 1, sym_parameter_list, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - ACTIONS(2825), 2, + ACTIONS(2849), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1475), 4, + STATE(1506), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -94967,38 +95132,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35588] = 10, + [35843] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2827), 1, - anon_sym_SEMI, - ACTIONS(2671), 2, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_SLASH, + ACTIONS(2630), 1, + anon_sym_AMP_AMP, + ACTIONS(2632), 1, + anon_sym_PIPE, + ACTIONS(2634), 1, + anon_sym_CARET, + ACTIONS(2636), 1, + anon_sym_AMP, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, + anon_sym_QMARK, + ACTIONS(2851), 1, + anon_sym_COMMA, + ACTIONS(2853), 1, + anon_sym_RPAREN, + STATE(774), 1, + sym_argument_list, + STATE(1600), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2626), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2638), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35918] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_SLASH, + ACTIONS(2630), 1, + anon_sym_AMP_AMP, + ACTIONS(2632), 1, + anon_sym_PIPE, + ACTIONS(2634), 1, + anon_sym_CARET, + ACTIONS(2636), 1, + anon_sym_AMP, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, + anon_sym_QMARK, + ACTIONS(2855), 1, + anon_sym_COMMA, + ACTIONS(2857), 1, + anon_sym_RPAREN, + STATE(774), 1, + sym_argument_list, + STATE(1573), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2626), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2638), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35993] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2673), 2, + ACTIONS(2859), 1, anon_sym_LPAREN2, + ACTIONS(2861), 1, anon_sym_STAR, - ACTIONS(43), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(952), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(1229), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1372), 1, + sym__declarator, + STATE(1874), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1218), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1239), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1434), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -95008,37 +95283,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35639] = 14, + [36052] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2865), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2867), 1, anon_sym_STAR, - STATE(1221), 1, + STATE(1229), 1, sym_ms_unaligned_ptr_modifier, - STATE(1372), 1, + STATE(1370), 1, sym__field_declarator, - STATE(1833), 1, + STATE(1801), 1, sym_ms_based_modifier, ACTIONS(2502), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1042), 2, + STATE(1051), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1237), 2, + STATE(1236), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2500), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1425), 5, + STATE(1430), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -95053,37 +95328,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35698] = 14, + [36111] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2865), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2867), 1, anon_sym_STAR, - STATE(1221), 1, + STATE(1229), 1, sym_ms_unaligned_ptr_modifier, - STATE(1372), 1, + STATE(1370), 1, sym__field_declarator, - STATE(1833), 1, + STATE(1801), 1, sym_ms_based_modifier, ACTIONS(2502), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1212), 2, + STATE(1218), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1237), 2, + STATE(1236), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2500), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1425), 5, + STATE(1430), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -95098,136 +95373,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35757] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2835), 1, - anon_sym_SEMI, - ACTIONS(2671), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2673), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(43), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(952), 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(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [35808] = 22, + [36170] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - ACTIONS(2626), 1, - anon_sym_AMP_AMP, - ACTIONS(2628), 1, - anon_sym_PIPE, - ACTIONS(2630), 1, - anon_sym_CARET, - ACTIONS(2632), 1, - anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, - anon_sym_QMARK, - ACTIONS(2837), 1, - anon_sym_COMMA, - ACTIONS(2839), 1, - anon_sym_RPAREN, - STATE(792), 1, - sym_argument_list, - STATE(1630), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2636), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2638), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [35883] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2865), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2867), 1, anon_sym_STAR, - STATE(1221), 1, + STATE(1229), 1, sym_ms_unaligned_ptr_modifier, - STATE(1376), 1, - sym__declarator, - STATE(1886), 1, + STATE(1365), 1, + sym__field_declarator, + STATE(1801), 1, sym_ms_based_modifier, ACTIONS(2502), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1044), 2, + STATE(1037), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1227), 2, + STATE(1240), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2500), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1422), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1430), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -95237,37 +95418,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35942] = 14, + [36229] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1221), 1, + STATE(1229), 1, sym_ms_unaligned_ptr_modifier, - STATE(1376), 1, + STATE(1372), 1, sym__declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, ACTIONS(2502), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1212), 2, + STATE(1047), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1227), 2, + STATE(1239), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2500), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -95282,194 +95463,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36001] = 20, + [36288] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - ACTIONS(2626), 1, - anon_sym_AMP_AMP, ACTIONS(2628), 1, - anon_sym_PIPE, - ACTIONS(2630), 1, - anon_sym_CARET, - ACTIONS(2632), 1, - anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, - anon_sym_QMARK, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2636), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2638), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2845), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [36072] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2847), 1, + ACTIONS(2869), 1, anon_sym_COMMA, - ACTIONS(2849), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2871), 1, + anon_sym_RBRACE, + STATE(774), 1, sym_argument_list, - STATE(1580), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2284), 2, + STATE(1623), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36147] = 22, + [36363] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - ACTIONS(2626), 1, - anon_sym_AMP_AMP, - ACTIONS(2628), 1, - anon_sym_PIPE, - ACTIONS(2630), 1, - anon_sym_CARET, - ACTIONS(2632), 1, - anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, - anon_sym_QMARK, - ACTIONS(2851), 1, + ACTIONS(2877), 1, + anon_sym___attribute__, + ACTIONS(2880), 1, + anon_sym_LBRACE, + ACTIONS(2882), 1, + anon_sym_COLON, + STATE(1008), 1, + sym_attribute_specifier, + STATE(1189), 1, + sym_enumerator_list, + ACTIONS(2875), 6, anon_sym_COMMA, - ACTIONS(2853), 1, - anon_sym_RBRACE, - STATE(792), 1, - sym_argument_list, - STATE(1539), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2636), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2638), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [36222] = 14, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2873), 18, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [36410] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1221), 1, + STATE(1229), 1, sym_ms_unaligned_ptr_modifier, - STATE(1373), 1, + STATE(1383), 1, sym__declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, ACTIONS(2502), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1033), 2, + STATE(1035), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1233), 2, + STATE(1232), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2500), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -95484,7 +95600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36281] = 10, + [36469] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -95493,12 +95609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2855), 1, + ACTIONS(2884), 1, anon_sym_SEMI, - ACTIONS(2671), 2, + ACTIONS(2650), 2, anon_sym___based, sym_identifier, - ACTIONS(2673), 2, + ACTIONS(2652), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 6, @@ -95508,7 +95624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(952), 7, + STATE(917), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95525,42 +95641,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36332] = 14, + [36520] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2886), 1, + anon_sym_SEMI, + ACTIONS(2650), 2, anon_sym___based, - ACTIONS(2829), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2652), 2, anon_sym_LPAREN2, - ACTIONS(2833), 1, anon_sym_STAR, - STATE(1221), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1361), 1, - sym__field_declarator, - STATE(1833), 1, - sym_ms_based_modifier, - ACTIONS(2502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1029), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1231), 2, + ACTIONS(43), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(917), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1425), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + aux_sym__declaration_specifiers_repeat1, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -95570,7 +95682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36391] = 10, + [36571] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -95579,12 +95691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2857), 1, + ACTIONS(2888), 1, anon_sym_SEMI, - ACTIONS(2671), 2, + ACTIONS(2650), 2, anon_sym___based, sym_identifier, - ACTIONS(2673), 2, + ACTIONS(2652), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 6, @@ -95594,7 +95706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(952), 7, + STATE(917), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95611,94 +95723,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36442] = 21, + [36622] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2851), 1, anon_sym_COMMA, - STATE(792), 1, + ACTIONS(2890), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + STATE(1569), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2861), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [36515] = 14, + [36697] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1221), 1, + STATE(1229), 1, sym_ms_unaligned_ptr_modifier, - STATE(1362), 1, - sym__field_declarator, - STATE(1833), 1, + STATE(1374), 1, + sym__declarator, + STATE(1874), 1, sym_ms_based_modifier, ACTIONS(2502), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1212), 2, + STATE(1218), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1232), 2, + STATE(1242), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2500), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1425), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1434), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -95708,81 +95821,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36574] = 8, + [36756] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 1, + ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(2870), 1, - anon_sym_LBRACE, - ACTIONS(2872), 1, - anon_sym_COLON, - STATE(1013), 1, - sym_attribute_specifier, - STATE(1178), 1, - sym_enumerator_list, - ACTIONS(2865), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2892), 1, + anon_sym_SEMI, + ACTIONS(2650), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2652), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2863), 18, + ACTIONS(43), 6, anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [36621] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2496), 1, - sym_identifier, - ACTIONS(2841), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_STAR, - STATE(1221), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1363), 1, - sym__declarator, - STATE(1886), 1, - sym_ms_based_modifier, - ACTIONS(2502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1212), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1235), 2, + STATE(917), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1422), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + aux_sym__declaration_specifiers_repeat1, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -95792,7 +95862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36680] = 10, + [36807] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -95801,12 +95871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2874), 1, + ACTIONS(2894), 1, anon_sym_SEMI, - ACTIONS(2671), 2, + ACTIONS(2650), 2, anon_sym___based, sym_identifier, - ACTIONS(2673), 2, + ACTIONS(2652), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(43), 6, @@ -95816,7 +95886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(952), 7, + STATE(917), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95833,4307 +95903,4311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [36731] = 22, + [36858] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2847), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2876), 1, - anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - STATE(1553), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36806] = 21, + ACTIONS(2898), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [36931] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_LPAREN2, + ACTIONS(2867), 1, + anon_sym_STAR, + STATE(1229), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1364), 1, + sym__field_declarator, + STATE(1801), 1, + sym_ms_based_modifier, + ACTIONS(2502), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1218), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1233), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2500), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1430), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [36990] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(2878), 1, - anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36878] = 21, + ACTIONS(2900), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [37061] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2880), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2902), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [36950] = 21, + [37133] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2882), 1, + ACTIONS(2904), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37022] = 21, + [37205] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2884), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2906), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37094] = 21, + [37277] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2886), 1, + ACTIONS(2908), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37166] = 21, + [37349] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(2888), 1, - anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37238] = 21, + ACTIONS(2910), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [37419] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2890), 1, + ACTIONS(2912), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37310] = 21, + [37491] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2892), 1, + ACTIONS(2914), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37382] = 21, + [37563] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2894), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2916), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37454] = 21, + [37635] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, - anon_sym_COMMA, ACTIONS(2896), 1, - anon_sym_SEMI, - STATE(792), 1, + anon_sym_COMMA, + ACTIONS(2918), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37526] = 21, + [37707] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2898), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(2920), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37598] = 20, + [37779] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(2896), 1, + anon_sym_COMMA, + ACTIONS(2922), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2900), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37668] = 21, + [37851] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2902), 1, + ACTIONS(2924), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37740] = 20, + [37923] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(2896), 1, + anon_sym_COMMA, + ACTIONS(2926), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2904), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [37810] = 21, + [37995] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2906), 1, + ACTIONS(2928), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37882] = 21, + [38067] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2908), 1, + ACTIONS(2930), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [37954] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2870), 1, - anon_sym_LBRACE, - ACTIONS(2914), 1, - anon_sym___attribute__, - STATE(998), 1, - sym_attribute_specifier, - STATE(1173), 1, - sym_enumerator_list, - ACTIONS(2912), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2910), 18, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [37998] = 21, + [38139] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2917), 1, + ACTIONS(2932), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38070] = 21, + [38211] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2919), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2934), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38142] = 21, + [38283] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2921), 1, + ACTIONS(2936), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38214] = 21, + [38355] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2923), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2938), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38286] = 21, + [38427] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2925), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(2940), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38358] = 21, + [38499] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2927), 1, + ACTIONS(2942), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38430] = 21, + [38571] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2929), 1, + ACTIONS(2944), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38502] = 21, + [38643] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(2931), 1, - anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38574] = 21, + ACTIONS(2946), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [38713] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2933), 1, + ACTIONS(2948), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38646] = 21, + [38785] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2935), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(2950), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38718] = 21, + [38857] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2937), 1, + ACTIONS(2952), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38790] = 21, + [38929] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2939), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(2954), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38862] = 21, + [39001] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2941), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2956), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [38934] = 21, + [39073] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2943), 1, + ACTIONS(2958), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39006] = 21, + [39145] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2945), 1, + ACTIONS(2960), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39078] = 21, + [39217] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2947), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(2962), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39150] = 21, + [39289] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2949), 1, + ACTIONS(2964), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39222] = 21, + [39361] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2951), 1, + ACTIONS(2966), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39294] = 21, + [39433] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2953), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2968), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39366] = 21, + [39505] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2955), 1, + ACTIONS(2970), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39438] = 21, + [39577] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2957), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2972), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39510] = 21, + [39649] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2959), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(2974), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39582] = 21, + [39721] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2961), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(2976), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39654] = 21, + [39793] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2963), 1, + ACTIONS(2978), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39726] = 21, + [39865] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2965), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2980), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39798] = 21, + [39937] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2967), 1, + ACTIONS(2982), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39870] = 21, + [40009] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2969), 1, + ACTIONS(2984), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [39942] = 21, + [40081] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2971), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(2986), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40014] = 21, + [40153] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2973), 1, + ACTIONS(2988), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40086] = 21, + [40225] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2975), 1, + ACTIONS(2990), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40158] = 21, + [40297] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2977), 1, + ACTIONS(2992), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40230] = 21, + [40369] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2880), 1, + anon_sym_LBRACE, + ACTIONS(2998), 1, + anon_sym___attribute__, + STATE(1026), 1, + sym_attribute_specifier, + STATE(1184), 1, + sym_enumerator_list, + ACTIONS(2996), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2994), 18, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [40413] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2979), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(3001), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40302] = 21, + [40485] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2981), 1, + ACTIONS(3003), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40374] = 21, + [40557] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2983), 1, + ACTIONS(3005), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40446] = 21, + [40629] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2985), 1, + ACTIONS(3007), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40518] = 21, + [40701] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2987), 1, + ACTIONS(3009), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40590] = 21, + [40773] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2989), 1, + ACTIONS(3011), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40662] = 21, + [40845] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2991), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(3013), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40734] = 21, + [40917] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2993), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(3015), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40806] = 21, + [40989] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2995), 1, + ACTIONS(3017), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [40878] = 20, + [41061] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(2896), 1, + anon_sym_COMMA, + ACTIONS(3019), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2997), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [40948] = 21, + [41133] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(2999), 1, + ACTIONS(3021), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41020] = 21, + [41205] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3001), 1, + ACTIONS(3023), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41092] = 21, + [41277] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3003), 1, + ACTIONS(3025), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41164] = 21, + [41349] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(3005), 1, - anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41236] = 21, + ACTIONS(3027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [41419] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3007), 1, + ACTIONS(3029), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41308] = 21, + [41491] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3009), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(3031), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41380] = 21, + [41563] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3011), 1, + ACTIONS(3033), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41452] = 20, + [41635] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(2896), 1, + anon_sym_COMMA, + ACTIONS(3035), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3013), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41522] = 21, + [41707] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(3015), 1, - anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41594] = 21, + ACTIONS(3037), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41777] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3017), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(3039), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41666] = 21, + [41849] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3019), 1, + ACTIONS(3041), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41738] = 20, + [41921] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(2896), 1, + anon_sym_COMMA, + ACTIONS(3043), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3021), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [41808] = 21, + [41993] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3023), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(3045), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41880] = 21, + [42065] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3025), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(3047), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [41952] = 21, + [42137] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3027), 1, + ACTIONS(3049), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42024] = 21, + [42209] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3029), 1, + ACTIONS(3051), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42096] = 21, + [42281] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3031), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(3053), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42168] = 21, + [42353] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3033), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(3055), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42240] = 21, + [42425] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, - anon_sym_COMMA, - ACTIONS(3035), 1, - anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42312] = 21, + ACTIONS(3057), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [42495] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(2859), 1, + ACTIONS(2896), 1, anon_sym_COMMA, - ACTIONS(3037), 1, + ACTIONS(3059), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42384] = 20, + [42567] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3039), 2, + ACTIONS(3061), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [42454] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1833), 1, - sym_identifier, - ACTIONS(3041), 1, - anon_sym_enum, - STATE(1219), 1, - sym__type_specifier, - STATE(1234), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1770), 1, - sym_type_descriptor, - STATE(1203), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [42509] = 20, + anon_sym_SEMI, + [42637] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, - anon_sym_RBRACK, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(3049), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(3067), 1, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(2896), 1, + anon_sym_COMMA, + ACTIONS(3063), 1, + anon_sym_SEMI, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42578] = 20, + [42709] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2202), 1, + anon_sym_RBRACK, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(3071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(3089), 1, anon_sym_QMARK, - ACTIONS(3069), 1, - anon_sym_COLON, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42647] = 20, + [42778] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(3071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(3089), 1, anon_sym_QMARK, - ACTIONS(3071), 1, - anon_sym_COLON, - STATE(792), 1, + ACTIONS(3091), 1, + anon_sym_RBRACK, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42716] = 20, + [42847] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2402), 1, + ACTIONS(2422), 1, anon_sym_RBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3049), 1, + ACTIONS(3071), 1, anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(3067), 1, + ACTIONS(3089), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42785] = 13, + [42916] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -100144,15 +100218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1833), 1, sym_identifier, - ACTIONS(3041), 1, + ACTIONS(3093), 1, anon_sym_enum, - STATE(1219), 1, + STATE(1228), 1, sym__type_specifier, - STATE(1234), 1, + STATE(1241), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1793), 1, + STATE(1888), 1, sym_type_descriptor, - STATE(1203), 2, + STATE(1182), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1749), 4, @@ -100160,7 +100234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100175,771 +100249,776 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42840] = 20, + [42971] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(3093), 1, + anon_sym_enum, + STATE(1228), 1, + sym__type_specifier, + STATE(1241), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1811), 1, + sym_type_descriptor, + STATE(1182), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1749), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [43026] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2194), 1, anon_sym_RBRACK, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3049), 1, + ACTIONS(3071), 1, anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(3067), 1, + ACTIONS(3089), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42909] = 20, + [43095] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2202), 1, + ACTIONS(2204), 1, anon_sym_RBRACK, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3049), 1, + ACTIONS(3071), 1, anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(3067), 1, + ACTIONS(3089), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [42978] = 20, + [43164] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 1, - anon_sym_RBRACK, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3049), 1, + ACTIONS(3071), 1, anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(3067), 1, + ACTIONS(3089), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(3095), 1, + anon_sym_RBRACK, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43047] = 12, + [43233] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2196), 1, + anon_sym_RBRACK, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - STATE(792), 1, + ACTIONS(3071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3073), 1, + anon_sym_AMP_AMP, + ACTIONS(3075), 1, + anon_sym_PIPE, + ACTIONS(3077), 1, + anon_sym_CARET, + ACTIONS(3079), 1, + anon_sym_AMP, + ACTIONS(3089), 1, + anon_sym_QMARK, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3065), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2412), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2410), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3083), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [43100] = 20, + ACTIONS(3087), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43302] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2192), 1, + anon_sym_RBRACK, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(3071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(3089), 1, anon_sym_QMARK, - ACTIONS(3073), 1, - anon_sym_RPAREN, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43169] = 20, + [43371] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 1, - anon_sym_RBRACK, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(3049), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(3067), 1, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(3097), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43238] = 20, + [43440] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(3075), 1, + ACTIONS(3099), 1, anon_sym_COLON, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43307] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(1833), 1, - sym_identifier, - STATE(1219), 1, - sym__type_specifier, - STATE(1234), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1883), 1, - sym_type_descriptor, - STATE(1176), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [43362] = 20, + [43509] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2200), 1, + ACTIONS(2208), 1, anon_sym_RBRACK, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3049), 1, + ACTIONS(3071), 1, anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(3067), 1, + ACTIONS(3089), 1, anon_sym_QMARK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43431] = 20, + [43578] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2198), 1, + anon_sym_RBRACK, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3049), 1, + ACTIONS(3071), 1, anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(3067), 1, + ACTIONS(3089), 1, anon_sym_QMARK, - ACTIONS(3077), 1, - anon_sym_RBRACK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43500] = 20, + [43647] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 1, - anon_sym_RBRACK, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3049), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, - anon_sym_AMP_AMP, - ACTIONS(3053), 1, - anon_sym_PIPE, - ACTIONS(3055), 1, - anon_sym_CARET, - ACTIONS(3057), 1, - anon_sym_AMP, - ACTIONS(3067), 1, - anon_sym_QMARK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3087), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2288), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(2262), 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, - ACTIONS(3065), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43569] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [43700] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(3049), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(3067), 1, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(3079), 1, - anon_sym_RBRACK, - STATE(792), 1, + ACTIONS(3101), 1, + anon_sym_COLON, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43638] = 19, + [43769] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(3049), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(2636), 1, anon_sym_AMP, - STATE(792), 1, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, + anon_sym_QMARK, + ACTIONS(3103), 1, + anon_sym_COLON, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2342), 2, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(3043), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43705] = 20, + [43838] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(3081), 1, - anon_sym_COLON, - STATE(792), 1, + ACTIONS(3105), 1, + anon_sym_RPAREN, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43774] = 16, + [43907] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 1, - anon_sym_PIPE, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(3057), 1, + ACTIONS(2630), 1, + anon_sym_AMP_AMP, + ACTIONS(2632), 1, + anon_sym_PIPE, + ACTIONS(2634), 1, + anon_sym_CARET, + ACTIONS(2636), 1, anon_sym_AMP, - STATE(792), 1, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, + anon_sym_QMARK, + ACTIONS(3107), 1, + anon_sym_COLON, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2262), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [43835] = 20, + [43976] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(3083), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(3109), 1, + anon_sym_COLON, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43904] = 13, + [44045] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -100952,13 +101031,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(1833), 1, sym_identifier, - STATE(1219), 1, + STATE(1228), 1, sym__type_specifier, - STATE(1234), 1, + STATE(1241), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1877), 1, + STATE(1861), 1, sym_type_descriptor, - STATE(1176), 2, + STATE(1183), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1749), 4, @@ -100966,7 +101045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100981,416 +101060,501 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43959] = 20, + [44100] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(3085), 1, + ACTIONS(3111), 1, anon_sym_COLON, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44028] = 20, + [44169] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, - anon_sym_RBRACK, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3049), 1, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3065), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3067), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2288), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2262), 11, anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, - anon_sym_PIPE, - ACTIONS(3055), 1, anon_sym_CARET, - ACTIONS(3057), 1, - anon_sym_AMP, - ACTIONS(3067), 1, + 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_RBRACK, anon_sym_QMARK, - STATE(792), 1, + [44220] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3069), 1, + anon_sym_SLASH, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2288), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44097] = 20, + ACTIONS(2262), 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, + [44277] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(3087), 1, + ACTIONS(3113), 1, anon_sym_COLON, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44166] = 20, + [44346] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2188), 1, + anon_sym_RBRACK, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(3071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, - anon_sym_QMARK, ACTIONS(3089), 1, - anon_sym_COLON, - STATE(792), 1, + anon_sym_QMARK, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44235] = 17, + [44415] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2270), 1, + ACTIONS(2186), 1, + anon_sym_RBRACK, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3069), 1, + anon_sym_SLASH, + ACTIONS(3071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3073), 1, + anon_sym_AMP_AMP, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_LPAREN2, - ACTIONS(3047), 1, - anon_sym_SLASH, - ACTIONS(3055), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(3079), 1, anon_sym_AMP, - STATE(792), 1, + ACTIONS(3089), 1, + anon_sym_QMARK, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2262), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [44298] = 14, + [44484] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - STATE(792), 1, - sym_argument_list, - ACTIONS(2270), 2, + ACTIONS(3071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3073), 1, + anon_sym_AMP_AMP, + ACTIONS(3075), 1, anon_sym_PIPE, + ACTIONS(3077), 1, + anon_sym_CARET, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(2284), 2, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(2302), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3061), 2, + ACTIONS(3081), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2262), 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, - [44355] = 15, + [44551] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1228), 1, + sym__type_specifier, + STATE(1241), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1854), 1, + sym_type_descriptor, + STATE(1183), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1749), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [44606] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, anon_sym_SLASH, - STATE(792), 1, - sym_argument_list, - ACTIONS(2270), 2, + ACTIONS(2630), 1, + anon_sym_AMP_AMP, + ACTIONS(2632), 1, anon_sym_PIPE, + ACTIONS(2634), 1, + anon_sym_CARET, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2284), 2, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, + anon_sym_QMARK, + ACTIONS(3115), 1, + anon_sym_COLON, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2262), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [44414] = 20, + [44675] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2408), 1, + anon_sym_RBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(3071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(3089), 1, anon_sym_QMARK, - ACTIONS(3091), 1, - anon_sym_COLON, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44483] = 12, + [44744] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3065), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2270), 4, + ACTIONS(2288), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2262), 9, + ACTIONS(2262), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -101398,37 +101562,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [44536] = 11, + [44793] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2270), 4, + ACTIONS(3087), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2402), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2262), 11, + ACTIONS(2400), 9, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -101436,343 +101605,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [44587] = 20, + [44846] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(2626), 1, - anon_sym_AMP_AMP, - ACTIONS(2628), 1, + STATE(774), 1, + sym_argument_list, + ACTIONS(2288), 2, anon_sym_PIPE, - ACTIONS(2630), 1, - anon_sym_CARET, - ACTIONS(2632), 1, anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, - anon_sym_QMARK, - ACTIONS(3093), 1, - anon_sym_COLON, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44656] = 20, + ACTIONS(2262), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [44905] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(2626), 1, - anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, - anon_sym_QMARK, - ACTIONS(3095), 1, - anon_sym_COMMA, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44725] = 20, + ACTIONS(2262), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [44968] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2186), 1, - anon_sym_RBRACK, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3049), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(3067), 1, - anon_sym_QMARK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44794] = 20, + ACTIONS(2262), 3, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [45033] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2212), 1, - anon_sym_RBRACK, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_PIPE, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3049), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, - anon_sym_AMP_AMP, - ACTIONS(3053), 1, - anon_sym_PIPE, - ACTIONS(3055), 1, - anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(3079), 1, anon_sym_AMP, - ACTIONS(3067), 1, - anon_sym_QMARK, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44863] = 20, + ACTIONS(2262), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [45094] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2288), 1, - anon_sym_RBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(3049), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3051), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(3067), 1, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, anon_sym_QMARK, - STATE(792), 1, + ACTIONS(3117), 1, + anon_sym_COMMA, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44932] = 20, + [45163] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, - ACTIONS(2624), 1, + ACTIONS(2628), 1, anon_sym_SLASH, - ACTIONS(2626), 1, + ACTIONS(2630), 1, anon_sym_AMP_AMP, - ACTIONS(2628), 1, + ACTIONS(2632), 1, anon_sym_PIPE, - ACTIONS(2630), 1, + ACTIONS(2634), 1, anon_sym_CARET, - ACTIONS(2632), 1, + ACTIONS(2636), 1, anon_sym_AMP, - ACTIONS(2651), 1, + ACTIONS(2661), 1, anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, + ACTIONS(2663), 1, anon_sym_QMARK, - ACTIONS(3097), 1, + ACTIONS(3119), 1, anon_sym_COLON, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2620), 2, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2622), 2, + ACTIONS(2626), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2634), 2, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2636), 2, + ACTIONS(2640), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2638), 2, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2640), 2, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45001] = 17, + [45232] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2286), 1, anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_PIPE, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3053), 1, - anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(3079), 1, anon_sym_AMP, - STATE(792), 1, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2262), 4, @@ -101780,96 +101933,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [45064] = 10, + [45295] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, anon_sym_SLASH, - STATE(792), 1, + ACTIONS(2630), 1, + anon_sym_AMP_AMP, + ACTIONS(2632), 1, + anon_sym_PIPE, + ACTIONS(2634), 1, + anon_sym_CARET, + ACTIONS(2636), 1, + anon_sym_AMP, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, + anon_sym_QMARK, + ACTIONS(3121), 1, + anon_sym_COLON, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3045), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2270), 6, + ACTIONS(2624), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2262), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2626), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2638), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2642), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2644), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [45113] = 18, + [45364] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2210), 1, + anon_sym_RBRACK, + ACTIONS(2286), 1, anon_sym_LBRACK, ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(3047), 1, + ACTIONS(3069), 1, anon_sym_SLASH, - ACTIONS(3051), 1, + ACTIONS(3071), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3073), 1, anon_sym_AMP_AMP, - ACTIONS(3053), 1, + ACTIONS(3075), 1, anon_sym_PIPE, - ACTIONS(3055), 1, + ACTIONS(3077), 1, anon_sym_CARET, - ACTIONS(3057), 1, + ACTIONS(3079), 1, anon_sym_AMP, - STATE(792), 1, + ACTIONS(3089), 1, + anon_sym_QMARK, + STATE(774), 1, sym_argument_list, - ACTIONS(2284), 2, + ACTIONS(2290), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, + ACTIONS(2292), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3043), 2, + ACTIONS(3065), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3045), 2, + ACTIONS(3067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3059), 2, + ACTIONS(3081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3061), 2, + ACTIONS(3083), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3063), 2, + ACTIONS(3085), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3065), 2, + ACTIONS(3087), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2262), 3, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [45178] = 12, + [45433] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -101879,11 +102044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1396), 1, + STATE(1405), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1203), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -101891,7 +102056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -101906,10 +102071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45230] = 12, + [45485] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -101919,11 +102084,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1407), 1, + STATE(1411), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1192), 2, + STATE(1215), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2590), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [45537] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1424), 1, + sym__type_declarator, + STATE(1894), 1, + sym_ms_based_modifier, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -101931,7 +102136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -101946,7 +102151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45282] = 12, + [45589] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -101959,19 +102164,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(1833), 1, sym_identifier, - STATE(1182), 1, + STATE(1185), 1, sym__type_specifier, - STATE(1327), 1, + STATE(1333), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1183), 2, + STATE(1178), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3099), 4, + ACTIONS(3123), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -101986,7 +102191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45334] = 12, + [45641] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -101999,19 +102204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(1833), 1, sym_identifier, - STATE(1202), 1, + STATE(1181), 1, sym__type_specifier, - STATE(1327), 1, + STATE(1333), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1198), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3099), 4, + ACTIONS(3123), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -102026,10 +102231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45386] = 12, + [45693] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -102039,11 +102244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1410), 1, + STATE(1421), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1186), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -102051,7 +102256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102066,25 +102271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45438] = 5, + [45745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3105), 1, - anon_sym___attribute__, - STATE(1025), 1, - sym_attribute_specifier, - ACTIONS(3103), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3127), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3101), 18, + ACTIONS(3125), 25, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -102098,25 +102297,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [45476] = 3, + [45779] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3108), 25, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1407), 1, + sym__type_declarator, + STATE(1894), 1, + sym_ms_based_modifier, + STATE(1193), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(1471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102125,12 +102342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [45510] = 12, + [45831] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -102139,23 +102351,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(53), 1, anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, ACTIONS(1833), 1, sym_identifier, - STATE(1185), 1, + ACTIONS(3093), 1, + anon_sym_enum, + STATE(1224), 1, sym__type_specifier, - STATE(1327), 1, + STATE(1241), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3099), 4, + ACTIONS(1749), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -102170,7 +102382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45562] = 12, + [45883] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -102183,11 +102395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(1833), 1, sym_identifier, - STATE(1223), 1, + STATE(1224), 1, sym__type_specifier, - STATE(1234), 1, + STATE(1241), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1749), 4, @@ -102195,7 +102407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -102210,68 +102422,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45614] = 19, + [45935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2624), 1, - anon_sym_SLASH, - ACTIONS(2626), 1, - anon_sym_AMP_AMP, - ACTIONS(2628), 1, - anon_sym_PIPE, - ACTIONS(2630), 1, - anon_sym_CARET, - ACTIONS(2632), 1, - anon_sym_AMP, - ACTIONS(2651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2653), 1, - anon_sym_QMARK, - STATE(792), 1, - sym_argument_list, - ACTIONS(2284), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2286), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2622), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2636), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2638), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2640), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45680] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3116), 1, + ACTIONS(3133), 1, anon_sym___attribute__, - STATE(1024), 1, + STATE(1029), 1, sym_attribute_specifier, - ACTIONS(3114), 6, + ACTIONS(3131), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3112), 18, + ACTIONS(3129), 18, anon_sym_extern, anon_sym___declspec, anon_sym___based, @@ -102290,10 +102455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [45718] = 12, + [45973] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -102303,11 +102468,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1404), 1, + STATE(1426), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1188), 2, + STATE(1210), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -102315,7 +102480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102330,10 +102495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45770] = 12, + [46025] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -102343,11 +102508,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1397), 1, + STATE(1427), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1191), 2, + STATE(1212), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -102355,7 +102520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102370,50 +102535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45822] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(1833), 1, - sym_identifier, - STATE(1172), 1, - sym__type_specifier, - STATE(1327), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1175), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3099), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [45874] = 12, + [46077] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -102423,11 +102548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1416), 1, + STATE(1404), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1184), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -102435,7 +102560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102450,38 +102575,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45926] = 12, + [46129] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(1833), 1, + ACTIONS(3140), 1, + anon_sym___attribute__, + STATE(1011), 1, + sym_attribute_specifier, + ACTIONS(3138), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3136), 18, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - STATE(1179), 1, - sym__type_specifier, - STATE(1327), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1189), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3099), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, + [46167] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3147), 1, + anon_sym___attribute__, + STATE(1013), 1, + sym_attribute_specifier, + ACTIONS(3145), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3143), 18, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102490,10 +102640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45978] = 12, + sym_identifier, + [46205] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -102503,11 +102654,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1406), 1, + STATE(1415), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -102515,7 +102666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102530,10 +102681,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46030] = 12, + [46257] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + ACTIONS(2286), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_SLASH, + ACTIONS(2630), 1, + anon_sym_AMP_AMP, + ACTIONS(2632), 1, + anon_sym_PIPE, + ACTIONS(2634), 1, + anon_sym_CARET, + ACTIONS(2636), 1, + anon_sym_AMP, + ACTIONS(2661), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2663), 1, + anon_sym_QMARK, + STATE(774), 1, + sym_argument_list, + ACTIONS(2290), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2624), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2626), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2638), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2640), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2642), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2644), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46323] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -102543,11 +102741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1402), 1, + STATE(1422), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1187), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -102555,7 +102753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102570,10 +102768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46082] = 12, + [46375] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -102583,11 +102781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1403), 1, + STATE(1418), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -102595,7 +102793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102610,37 +102808,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46134] = 12, + [46427] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2584), 1, - sym_identifier, - ACTIONS(2586), 1, - anon_sym_LPAREN2, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2592), 1, + ACTIONS(47), 1, sym_primitive_type, - STATE(1399), 1, - sym__type_declarator, - STATE(1907), 1, - sym_ms_based_modifier, - STATE(1189), 2, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1174), 1, + sym__type_specifier, + STATE(1333), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1197), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2590), 4, + ACTIONS(3123), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -102650,10 +102848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46186] = 12, + [46479] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -102663,11 +102861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1401), 1, + STATE(1420), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -102675,7 +102873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102690,20 +102888,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46238] = 5, + [46531] = 4, ACTIONS(3), 1, sym_comment, - STATE(1189), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2444), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3150), 1, + anon_sym_SEMI, + ACTIONS(2354), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2352), 18, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3119), 8, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [46567] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1202), 1, + sym__type_specifier, + STATE(1333), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1211), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3123), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102712,18 +102960,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2442), 10, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + [46619] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, sym_primitive_type, - anon_sym_enum, + ACTIONS(51), 1, anon_sym_struct, + ACTIONS(53), 1, anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, sym_identifier, - [46276] = 12, + STATE(1175), 1, + sym__type_specifier, + STATE(1333), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1211), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3123), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46671] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -102736,19 +103013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(1833), 1, sym_identifier, - STATE(1200), 1, + STATE(1214), 1, sym__type_specifier, - STATE(1327), 1, + STATE(1333), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1208), 2, + STATE(1201), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3099), 4, + ACTIONS(3123), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -102763,37 +103040,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46328] = 12, + [46723] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2584), 1, - sym_identifier, - ACTIONS(2586), 1, - anon_sym_LPAREN2, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2592), 1, + ACTIONS(47), 1, sym_primitive_type, - STATE(1405), 1, - sym__type_declarator, - STATE(1907), 1, - sym_ms_based_modifier, - STATE(1189), 2, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1186), 1, + sym__type_specifier, + STATE(1333), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1198), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2590), 4, + ACTIONS(3123), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -102803,37 +103080,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46380] = 12, + [46775] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2584), 1, - sym_identifier, - ACTIONS(2586), 1, - anon_sym_LPAREN2, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2592), 1, + ACTIONS(47), 1, sym_primitive_type, - STATE(1392), 1, - sym__type_declarator, - STATE(1907), 1, - sym_ms_based_modifier, - STATE(1189), 2, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1206), 1, + sym__type_specifier, + STATE(1333), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2590), 4, + ACTIONS(3123), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -102843,10 +103120,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46432] = 12, + [46827] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -102856,11 +103133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1400), 1, + STATE(1406), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1168), 2, + STATE(1190), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -102868,7 +103145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102883,10 +103160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46484] = 12, + [46879] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -102896,11 +103173,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1421), 1, + STATE(1410), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -102908,7 +103185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102923,37 +103200,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46536] = 12, + [46931] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2584), 1, - sym_identifier, - ACTIONS(2586), 1, - anon_sym_LPAREN2, - ACTIONS(2588), 1, - anon_sym_STAR, - ACTIONS(2592), 1, + ACTIONS(47), 1, sym_primitive_type, - STATE(1419), 1, - sym__type_declarator, - STATE(1907), 1, - sym_ms_based_modifier, - STATE(1189), 2, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1833), 1, + sym_identifier, + STATE(1208), 1, + sym__type_specifier, + STATE(1333), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2590), 4, + ACTIONS(3123), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1009), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -102963,10 +103240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46588] = 12, + [46983] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -102976,11 +103253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1411), 1, + STATE(1416), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -102988,7 +103265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -103003,70 +103280,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46640] = 5, + [47035] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym___attribute__, - STATE(993), 1, - sym_attribute_specifier, - ACTIONS(3124), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3122), 18, - anon_sym_extern, - anon_sym___declspec, + ACTIONS(1869), 1, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + ACTIONS(2584), 1, sym_identifier, - [46678] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(1833), 1, - sym_identifier, - STATE(1193), 1, - sym__type_specifier, - STATE(1327), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1189), 2, + STATE(1423), 1, + sym__type_declarator, + STATE(1894), 1, + sym_ms_based_modifier, + STATE(1179), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3099), 4, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, + STATE(1471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -103076,10 +103320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46730] = 12, + [47087] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -103091,9 +103335,9 @@ static const uint16_t ts_small_parse_table[] = { sym_primitive_type, STATE(1414), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -103101,7 +103345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -103116,10 +103360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46782] = 12, + [47139] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -103129,11 +103373,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1409), 1, + STATE(1417), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1194), 2, + STATE(1176), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -103141,7 +103385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -103156,37 +103400,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46834] = 12, + [47191] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(1833), 1, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2584), 1, sym_identifier, - STATE(1209), 1, - sym__type_specifier, - STATE(1327), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1189), 2, + ACTIONS(2586), 1, + anon_sym_LPAREN2, + ACTIONS(2588), 1, + anon_sym_STAR, + ACTIONS(2592), 1, + sym_primitive_type, + STATE(1401), 1, + sym__type_declarator, + STATE(1894), 1, + sym_ms_based_modifier, + STATE(1192), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3099), 4, + ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, + STATE(1471), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -103196,10 +103440,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46886] = 12, + [47243] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -103209,11 +103453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1395), 1, + STATE(1408), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1199), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -103221,7 +103465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -103236,38 +103480,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46938] = 12, + [47295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1833), 1, - sym_identifier, - ACTIONS(3041), 1, - anon_sym_enum, - STATE(1223), 1, - sym__type_specifier, - STATE(1234), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, + ACTIONS(2444), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3152), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -103276,10 +103502,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46990] = 12, + ACTIONS(2442), 10, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [47333] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -103289,11 +103526,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1408), 1, + STATE(1409), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -103301,7 +103538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -103316,7 +103553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47042] = 12, + [47385] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -103329,19 +103566,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(1833), 1, sym_identifier, - STATE(1180), 1, + STATE(1209), 1, sym__type_specifier, - STATE(1327), 1, + STATE(1333), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1201), 2, + STATE(1204), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3099), 4, + ACTIONS(3123), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1020), 5, + STATE(1009), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -103356,10 +103593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47094] = 12, + [47437] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -103369,11 +103606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1418), 1, + STATE(1402), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1207), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -103381,7 +103618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -103396,82 +103633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47146] = 4, + [47489] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, - anon_sym_SEMI, - ACTIONS(2440), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2438), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [47182] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_struct, - ACTIONS(53), 1, - anon_sym_union, - ACTIONS(1751), 1, - anon_sym_enum, - ACTIONS(1833), 1, - sym_identifier, - STATE(1169), 1, - sym__type_specifier, - STATE(1327), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1189), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3099), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1020), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [47234] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -103481,11 +103646,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1413), 1, + STATE(1425), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, - STATE(1206), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(2590), 4, @@ -103493,7 +103658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -103508,26 +103673,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47286] = 8, + [47541] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(2870), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(3131), 1, + ACTIONS(3155), 1, anon_sym_COLON, - STATE(1013), 1, + STATE(1008), 1, sym_attribute_specifier, - STATE(1215), 1, + STATE(1222), 1, sym_enumerator_list, - ACTIONS(2865), 5, + ACTIONS(2875), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2863), 15, + ACTIONS(2873), 15, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103543,25 +103708,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [47329] = 7, + [47584] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(2870), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - STATE(998), 1, + STATE(1026), 1, sym_attribute_specifier, - STATE(1216), 1, + STATE(1221), 1, sym_enumerator_list, - ACTIONS(2912), 6, + ACTIONS(2996), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2910), 15, + ACTIONS(2994), 15, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103577,25 +103742,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [47370] = 7, + [47625] = 7, ACTIONS(3), 1, sym_comment, - STATE(1221), 1, + STATE(1229), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(3135), 2, + ACTIONS(3159), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3140), 2, + ACTIONS(3164), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1212), 2, + STATE(1218), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3137), 3, + ACTIONS(3161), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3133), 15, + ACTIONS(3157), 15, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103611,17 +103776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [47411] = 6, + [47666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 1, + ACTIONS(3170), 1, anon_sym_LPAREN2, - ACTIONS(3150), 1, + ACTIONS(3174), 1, anon_sym_LBRACK, - ACTIONS(1977), 2, + ACTIONS(1980), 2, anon_sym_COMMA, anon_sym_STAR, - ACTIONS(3143), 2, + ACTIONS(3167), 2, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, ACTIONS(1964), 18, @@ -103643,21 +103808,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [47449] = 5, + [47704] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - STATE(993), 1, + STATE(1011), 1, sym_attribute_specifier, - ACTIONS(3124), 6, + ACTIONS(3138), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3122), 15, + ACTIONS(3136), 15, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103673,21 +103838,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [47484] = 5, + [47739] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - STATE(1024), 1, + STATE(1029), 1, sym_attribute_specifier, - ACTIONS(3114), 6, + ACTIONS(3131), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3112), 15, + ACTIONS(3129), 15, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103703,21 +103868,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [47519] = 5, + [47774] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - STATE(1025), 1, + STATE(1013), 1, sym_attribute_specifier, - ACTIONS(3103), 6, + ACTIONS(3145), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3101), 15, + ACTIONS(3143), 15, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -103733,63 +103898,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [47554] = 5, + [47809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3179), 2, anon_sym_LPAREN2, - STATE(1294), 1, - sym_preproc_argument_list, - ACTIONS(3157), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3153), 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, - [47588] = 11, + ACTIONS(3177), 20, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [47839] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_const, - ACTIONS(2128), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2130), 1, + ACTIONS(2144), 1, anon_sym_STAR, ACTIONS(2504), 1, anon_sym_LBRACK, - STATE(1469), 1, + STATE(1476), 1, sym__abstract_declarator, - STATE(1499), 1, + STATE(1507), 1, sym_parameter_list, - STATE(1189), 2, + STATE(1231), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2825), 3, + ACTIONS(3181), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1475), 4, + STATE(1506), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3159), 7, + ACTIONS(3183), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103797,34 +103960,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47634] = 11, + [47885] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_const, - ACTIONS(2128), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2130), 1, + ACTIONS(2144), 1, anon_sym_STAR, ACTIONS(2504), 1, anon_sym_LBRACK, - STATE(1465), 1, + STATE(1480), 1, sym__abstract_declarator, - STATE(1499), 1, + STATE(1507), 1, sym_parameter_list, - STATE(1224), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3161), 3, + ACTIONS(3185), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1475), 4, + STATE(1506), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3159), 7, + ACTIONS(3183), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103832,88 +103995,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47680] = 3, + [47931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3163), 20, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [47710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 2, + ACTIONS(3189), 1, anon_sym_LPAREN2, + STATE(1291), 1, + sym_preproc_argument_list, + ACTIONS(3191), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3187), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3167), 20, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [47740] = 11, + 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, + [47965] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_const, - ACTIONS(2128), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2130), 1, + ACTIONS(2144), 1, anon_sym_STAR, ACTIONS(2504), 1, anon_sym_LBRACK, - STATE(1452), 1, + STATE(1470), 1, sym__abstract_declarator, - STATE(1499), 1, + STATE(1507), 1, sym_parameter_list, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3171), 3, + ACTIONS(2849), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1475), 4, + STATE(1506), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3159), 7, + ACTIONS(3183), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103921,34 +104059,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47786] = 11, + [48011] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_const, - ACTIONS(2128), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2130), 1, + ACTIONS(2144), 1, anon_sym_STAR, ACTIONS(2504), 1, anon_sym_LBRACK, - STATE(1459), 1, + STATE(1463), 1, sym__abstract_declarator, - STATE(1499), 1, + STATE(1507), 1, sym_parameter_list, - STATE(1222), 2, + STATE(1225), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3173), 3, + ACTIONS(3193), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1475), 4, + STATE(1506), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3159), 7, + ACTIONS(3183), 7, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [48057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3197), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3195), 20, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103956,34 +104119,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47832] = 11, + sym_primitive_type, + sym_identifier, + [48087] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_const, - ACTIONS(2128), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2130), 1, + ACTIONS(2144), 1, anon_sym_STAR, ACTIONS(2504), 1, anon_sym_LBRACK, - STATE(1457), 1, + STATE(1466), 1, sym__abstract_declarator, - STATE(1499), 1, + STATE(1507), 1, sym_parameter_list, - STATE(1189), 2, + STATE(1227), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3175), 3, + ACTIONS(2498), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1475), 4, + STATE(1506), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3159), 7, + ACTIONS(3183), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -103991,34 +104156,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47878] = 11, + [48133] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, anon_sym_const, - ACTIONS(2128), 1, + ACTIONS(2142), 1, anon_sym_LPAREN2, - ACTIONS(2130), 1, + ACTIONS(2144), 1, anon_sym_STAR, ACTIONS(2504), 1, anon_sym_LBRACK, - STATE(1456), 1, + STATE(1460), 1, sym__abstract_declarator, - STATE(1499), 1, + STATE(1507), 1, sym_parameter_list, - STATE(1218), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2498), 3, + ACTIONS(3199), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1475), 4, + STATE(1506), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3159), 7, + ACTIONS(3183), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -104026,58 +104191,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47924] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 1, - sym_identifier, - ACTIONS(3179), 1, - anon_sym_RPAREN, - ACTIONS(3181), 1, - anon_sym_LPAREN2, - ACTIONS(3183), 1, - anon_sym_defined, - ACTIONS(3189), 1, - sym_number_literal, - ACTIONS(3185), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3187), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3191), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1228), 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, - [47967] = 10, + [48179] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1363), 1, + STATE(1372), 1, sym__declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104092,55 +104224,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48010] = 16, + [48222] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_LPAREN2, + ACTIONS(2867), 1, + anon_sym_STAR, + STATE(1381), 1, + sym__field_declarator, + STATE(1801), 1, + sym_ms_based_modifier, + STATE(1211), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1430), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [48265] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3201), 1, anon_sym_COMMA, - ACTIONS(3195), 1, + ACTIONS(3203), 1, anon_sym_RPAREN, - ACTIONS(3201), 1, + ACTIONS(3209), 1, anon_sym_SLASH, - ACTIONS(3203), 1, + ACTIONS(3211), 1, anon_sym_PIPE_PIPE, - ACTIONS(3205), 1, + ACTIONS(3213), 1, anon_sym_AMP_AMP, - ACTIONS(3207), 1, + ACTIONS(3215), 1, anon_sym_PIPE, - ACTIONS(3209), 1, + ACTIONS(3217), 1, anon_sym_CARET, + ACTIONS(3219), 1, + anon_sym_AMP, + STATE(1597), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3207), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3221), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3223), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3225), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48320] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3201), 1, + anon_sym_COMMA, + ACTIONS(3209), 1, + anon_sym_SLASH, ACTIONS(3211), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3213), 1, + anon_sym_AMP_AMP, + ACTIONS(3215), 1, + anon_sym_PIPE, + ACTIONS(3217), 1, + anon_sym_CARET, + ACTIONS(3219), 1, anon_sym_AMP, - STATE(1581), 1, + ACTIONS(3229), 1, + anon_sym_RPAREN, + STATE(1562), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3197), 2, + ACTIONS(3205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3199), 2, + ACTIONS(3207), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3213), 2, + ACTIONS(3221), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3215), 2, + ACTIONS(3223), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3217), 2, + ACTIONS(3225), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3219), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48065] = 5, - ACTIONS(3153), 1, + [48375] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_LPAREN2, + ACTIONS(2867), 1, + anon_sym_STAR, + STATE(1364), 1, + sym__field_declarator, + STATE(1801), 1, + sym_ms_based_modifier, + STATE(1211), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1430), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 8, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [48418] = 5, + ACTIONS(3187), 1, anon_sym_LF, - ACTIONS(3221), 1, + ACTIONS(3231), 1, anon_sym_LPAREN2, - ACTIONS(3223), 1, + ACTIONS(3233), 1, sym_comment, - STATE(1295), 1, + STATE(1332), 1, sym_preproc_argument_list, - ACTIONS(3157), 18, + ACTIONS(3191), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104159,32 +104396,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [48098] = 10, + [48451] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3237), 1, + anon_sym_RPAREN, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3225), 1, - anon_sym_RPAREN, - ACTIONS(3227), 1, + ACTIONS(3247), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1236), 7, + STATE(1235), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104192,30 +104429,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48141] = 10, + [48494] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1372), 1, - sym__field_declarator, - STATE(1833), 1, + STATE(1374), 1, + sym__declarator, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1425), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1434), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(45), 8, anon_sym_const, anon_sym_constexpr, @@ -104225,25 +104462,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48184] = 10, + [48537] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2865), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2867), 1, anon_sym_STAR, STATE(1370), 1, sym__field_declarator, - STATE(1833), 1, + STATE(1801), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1425), 5, + STATE(1430), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -104258,61 +104495,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48227] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2496), 1, - sym_identifier, - ACTIONS(2841), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_STAR, - STATE(1376), 1, - sym__declarator, - STATE(1886), 1, - sym_ms_based_modifier, - STATE(1189), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1422), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48270] = 7, + [48580] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2748), 1, sym_primitive_type, - ACTIONS(3229), 1, + ACTIONS(3251), 1, sym_identifier, - STATE(922), 1, + STATE(919), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2809), 4, + ACTIONS(2746), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2805), 6, + ACTIONS(2742), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2807), 8, + ACTIONS(2744), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104321,25 +104525,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48307] = 10, + [48617] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1367), 1, + STATE(1373), 1, sym__declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1189), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -104354,102 +104558,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [48350] = 16, + [48660] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, - anon_sym_COMMA, - ACTIONS(3201), 1, + ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, + anon_sym_LPAREN2, + ACTIONS(3241), 1, + anon_sym_defined, + ACTIONS(3253), 1, + anon_sym_RPAREN, + ACTIONS(3255), 1, + sym_number_literal, + ACTIONS(3243), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3245), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3249), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1234), 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, + [48703] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, + anon_sym_LPAREN2, + ACTIONS(3241), 1, + anon_sym_defined, + ACTIONS(3257), 1, + sym_number_literal, + ACTIONS(3243), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3245), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3249), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1323), 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, + [48743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 5, anon_sym_SLASH, - ACTIONS(3203), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3205), 1, - anon_sym_AMP_AMP, - ACTIONS(3207), 1, anon_sym_PIPE, - ACTIONS(3209), 1, - anon_sym_CARET, - ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3231), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3259), 15, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1554), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3197), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3213), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3215), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3217), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48405] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2829), 1, - sym_identifier, - ACTIONS(2831), 1, - anon_sym_LPAREN2, - ACTIONS(2833), 1, - anon_sym_STAR, - STATE(1362), 1, - sym__field_declarator, - STATE(1833), 1, - sym_ms_based_modifier, - STATE(1189), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1425), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(45), 8, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48448] = 9, + [48771] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3243), 1, + ACTIONS(3273), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1315), 7, + STATE(1302), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104457,30 +104678,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48488] = 9, + [48811] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3247), 1, + ACTIONS(3277), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1268), 7, + STATE(1319), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104488,30 +104709,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48528] = 9, + [48851] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3249), 1, + ACTIONS(3279), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1262), 7, + STATE(1329), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104519,30 +104740,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48568] = 9, + [48891] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - sym_identifier, ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3251), 1, + ACTIONS(3281), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1306), 7, + STATE(1278), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104550,30 +104771,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48608] = 9, + [48931] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3253), 1, + ACTIONS(3283), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1261), 7, + STATE(1330), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104581,30 +104802,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48648] = 9, + [48971] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3255), 1, + ACTIONS(3285), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1302), 7, + STATE(1312), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104612,30 +104833,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48688] = 9, + [49011] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3257), 1, + ACTIONS(3287), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1260), 7, + STATE(1331), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104643,55 +104864,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48728] = 3, + [49051] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3259), 15, + ACTIONS(1865), 1, + anon_sym_LPAREN2, + ACTIONS(1867), 1, + anon_sym_STAR, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LBRACK, + STATE(1450), 1, + sym__declarator, + STATE(1496), 1, + sym__abstract_declarator, + STATE(1507), 1, + sym_parameter_list, + STATE(1874), 1, + sym_ms_based_modifier, + ACTIONS(3289), 2, 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, - [48756] = 9, + STATE(1506), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1434), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [49099] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3263), 1, + ACTIONS(3291), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1318), 7, + STATE(1327), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104699,30 +104930,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48796] = 9, + [49139] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3265), 1, + ACTIONS(3293), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1320), 7, + STATE(1325), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104730,30 +104961,83 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48836] = 9, + [49179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3209), 1, + anon_sym_SLASH, + ACTIONS(3205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3207), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3297), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3295), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3301), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3299), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49241] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, - anon_sym_defined, ACTIONS(3267), 1, + anon_sym_defined, + ACTIONS(3303), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1323), 7, + STATE(1303), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104761,30 +105045,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48876] = 9, + [49281] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - sym_identifier, ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3269), 1, + ACTIONS(3305), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1324), 7, + STATE(1271), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104792,30 +105076,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48916] = 9, + [49321] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3271), 1, + ACTIONS(3307), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1245), 7, + STATE(1326), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104823,30 +105107,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48956] = 9, + [49361] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3209), 1, + anon_sym_SLASH, + ACTIONS(3205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3207), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3297), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3295), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [49397] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3273), 1, + ACTIONS(3309), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1325), 7, + STATE(1320), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104854,30 +105167,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48996] = 9, + [49437] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - sym_identifier, ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3275), 1, + ACTIONS(3311), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1296), 7, + STATE(1256), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104885,30 +105198,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49036] = 9, + [49477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3315), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3313), 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, + [49505] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - sym_identifier, ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3277), 1, + ACTIONS(3317), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1319), 7, + STATE(1261), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104916,30 +105254,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49076] = 9, + [49545] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3209), 1, + anon_sym_SLASH, + ACTIONS(3205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3207), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3225), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3297), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3295), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [49585] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - sym_identifier, ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3279), 1, + ACTIONS(3319), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1322), 7, + STATE(1287), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104947,30 +105316,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49116] = 9, + [49625] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3281), 1, + ACTIONS(3321), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1307), 7, + STATE(1306), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104978,30 +105347,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49156] = 9, + [49665] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3283), 1, + ACTIONS(3323), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1310), 7, + STATE(1321), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105009,16 +105378,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49196] = 3, + [49705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 5, + ACTIONS(3327), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 15, + ACTIONS(3325), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105034,235 +105403,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49224] = 3, + [49733] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 5, + ACTIONS(3209), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3289), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3205), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3207), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3221), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3295), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3223), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3293), 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, + ACTIONS(3225), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49280] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3201), 1, - anon_sym_SLASH, - ACTIONS(3199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3299), 4, + ACTIONS(3297), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3297), 13, + ACTIONS(3295), 5, 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, - [49312] = 3, + [49775] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3297), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, + anon_sym_LPAREN2, + ACTIONS(3241), 1, + anon_sym_defined, + ACTIONS(3329), 1, + sym_number_literal, + ACTIONS(3243), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49340] = 13, + ACTIONS(3249), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1266), 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, + [49815] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, - anon_sym_SLASH, - ACTIONS(3205), 1, - anon_sym_AMP_AMP, - ACTIONS(3207), 1, - anon_sym_PIPE, ACTIONS(3209), 1, - anon_sym_CARET, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3215), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3217), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3297), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [49388] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3201), 1, anon_sym_SLASH, - ACTIONS(3207), 1, - anon_sym_PIPE, - ACTIONS(3209), 1, - anon_sym_CARET, - ACTIONS(3211), 1, + ACTIONS(3219), 1, anon_sym_AMP, - ACTIONS(3197), 2, + ACTIONS(3297), 1, + anon_sym_PIPE, + ACTIONS(3205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3199), 2, + ACTIONS(3207), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3213), 2, + ACTIONS(3221), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3215), 2, + ACTIONS(3223), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3217), 2, + ACTIONS(3225), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3219), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3297), 4, + ACTIONS(3295), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [49434] = 12, + anon_sym_CARET, + [49859] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, - anon_sym_SLASH, ACTIONS(3209), 1, + anon_sym_SLASH, + ACTIONS(3217), 1, anon_sym_CARET, - ACTIONS(3211), 1, + ACTIONS(3219), 1, anon_sym_AMP, - ACTIONS(3299), 1, + ACTIONS(3297), 1, anon_sym_PIPE, - ACTIONS(3197), 2, + ACTIONS(3205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3199), 2, + ACTIONS(3207), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3213), 2, + ACTIONS(3221), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3215), 2, + ACTIONS(3223), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3217), 2, + ACTIONS(3225), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3219), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3297), 4, + ACTIONS(3295), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [49480] = 9, + [49905] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3301), 1, + ACTIONS(3331), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1264), 7, + STATE(1273), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105270,30 +105564,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49520] = 9, + [49945] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - sym_identifier, ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3303), 1, + ACTIONS(3333), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1321), 7, + STATE(1274), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105301,30 +105595,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49560] = 9, + [49985] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3305), 1, + ACTIONS(3335), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1263), 7, + STATE(1307), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105332,183 +105626,128 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49600] = 11, + [50025] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(3209), 1, anon_sym_SLASH, ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3299), 1, - anon_sym_PIPE, - ACTIONS(3197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3215), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3217), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3297), 5, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, + ACTIONS(3213), 1, anon_sym_AMP_AMP, + ACTIONS(3215), 1, + anon_sym_PIPE, + ACTIONS(3217), 1, anon_sym_CARET, - [49644] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3201), 1, - anon_sym_SLASH, - ACTIONS(3197), 2, + ACTIONS(3219), 1, + anon_sym_AMP, + ACTIONS(3205), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3199), 2, + ACTIONS(3207), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3213), 2, + ACTIONS(3221), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3215), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3217), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3299), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3297), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [49686] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3201), 1, - anon_sym_SLASH, - ACTIONS(3197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3215), 2, + ACTIONS(3223), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3217), 2, + ACTIONS(3225), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3219), 2, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3299), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3297), 7, + ACTIONS(3337), 2, 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, - [49726] = 7, + [50075] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, - anon_sym_SLASH, - ACTIONS(3197), 2, + ACTIONS(3263), 1, + sym_identifier, + ACTIONS(3265), 1, + anon_sym_LPAREN2, + ACTIONS(3267), 1, + anon_sym_defined, + ACTIONS(3339), 1, + sym_number_literal, + ACTIONS(3269), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3299), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3297), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [49762] = 6, + ACTIONS(3275), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1310), 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, + [50115] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, - anon_sym_SLASH, - ACTIONS(3197), 2, + ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, + anon_sym_LPAREN2, + ACTIONS(3241), 1, + anon_sym_defined, + ACTIONS(3341), 1, + sym_number_literal, + ACTIONS(3243), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3299), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3297), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49796] = 9, + ACTIONS(3249), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1283), 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, + [50155] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3235), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3307), 1, + ACTIONS(3343), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1272), 7, + STATE(1288), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105516,30 +105755,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49836] = 9, + [50195] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - sym_identifier, ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3309), 1, + ACTIONS(3345), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1308), 7, + STATE(1289), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105547,30 +105786,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49876] = 9, + [50235] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3209), 1, + anon_sym_SLASH, + ACTIONS(3215), 1, + anon_sym_PIPE, + ACTIONS(3217), 1, + anon_sym_CARET, + ACTIONS(3219), 1, + anon_sym_AMP, + ACTIONS(3205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3207), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3221), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3223), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3225), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3295), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [50281] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3311), 1, + ACTIONS(3347), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1311), 7, + STATE(1315), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105578,30 +105851,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49916] = 9, + [50321] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - sym_identifier, ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3313), 1, + ACTIONS(3349), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1312), 7, + STATE(1297), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105609,30 +105882,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49956] = 9, + [50361] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3315), 1, + ACTIONS(3351), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1269), 7, + STATE(1304), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105640,16 +105913,76 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [49996] = 3, + [50401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3355), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3353), 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, + [50429] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3209), 1, + anon_sym_SLASH, + ACTIONS(3213), 1, + anon_sym_AMP_AMP, + ACTIONS(3215), 1, + anon_sym_PIPE, + ACTIONS(3217), 1, + anon_sym_CARET, + ACTIONS(3219), 1, + anon_sym_AMP, + ACTIONS(3205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3207), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3221), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3223), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3225), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3295), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [50477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 5, + ACTIONS(3297), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3317), 15, + ACTIONS(3295), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105665,16 +105998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [50024] = 3, + [50505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 5, + ACTIONS(3359), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3321), 15, + ACTIONS(3357), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105690,16 +106023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [50052] = 3, + [50533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 5, + ACTIONS(3363), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3325), 15, + ACTIONS(3361), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -105715,30 +106048,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [50080] = 9, + [50561] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, - sym_identifier, ACTIONS(3235), 1, + sym_identifier, + ACTIONS(3239), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3241), 1, anon_sym_defined, - ACTIONS(3329), 1, + ACTIONS(3365), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3243), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3245), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3249), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1304), 7, + STATE(1301), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105746,61 +106079,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50120] = 9, + [50601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, - sym_identifier, - ACTIONS(3181), 1, - anon_sym_LPAREN2, - ACTIONS(3183), 1, - anon_sym_defined, - ACTIONS(3331), 1, - sym_number_literal, - ACTIONS(3185), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3369), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3367), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1309), 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, - [50160] = 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, + [50629] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3333), 1, + ACTIONS(3371), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1313), 7, + STATE(1314), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105808,30 +106135,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50200] = 9, + [50669] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3335), 1, + ACTIONS(3373), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1317), 7, + STATE(1324), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105839,128 +106166,82 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50240] = 14, + [50709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(2394), 5, anon_sym_SLASH, - ACTIONS(3203), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3205), 1, - anon_sym_AMP_AMP, - ACTIONS(3207), 1, anon_sym_PIPE, - ACTIONS(3209), 1, - anon_sym_CARET, - ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3197), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2392), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3199), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3213), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3215), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3217), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3337), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50290] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 1, - sym_identifier, - ACTIONS(3181), 1, - anon_sym_LPAREN2, - ACTIONS(3183), 1, - anon_sym_defined, - ACTIONS(3339), 1, - sym_number_literal, - ACTIONS(3185), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3187), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3191), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1285), 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, - [50330] = 9, + [50737] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, - sym_identifier, - ACTIONS(3181), 1, - anon_sym_LPAREN2, - ACTIONS(3183), 1, - anon_sym_defined, - ACTIONS(3341), 1, - sym_number_literal, - ACTIONS(3185), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3209), 1, + anon_sym_SLASH, + ACTIONS(3207), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3297), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3295), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1270), 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, - [50370] = 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_LT_LT, + anon_sym_GT_GT, + [50769] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3343), 1, + ACTIONS(3375), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1297), 7, + STATE(1328), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105968,30 +106249,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50410] = 9, + [50809] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3345), 1, + ACTIONS(3377), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1271), 7, + STATE(1318), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105999,30 +106280,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50450] = 9, + [50849] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3263), 1, sym_identifier, - ACTIONS(3235), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3237), 1, + ACTIONS(3267), 1, anon_sym_defined, - ACTIONS(3347), 1, + ACTIONS(3379), 1, sym_number_literal, - ACTIONS(3239), 2, + ACTIONS(3269), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3241), 2, + ACTIONS(3271), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3245), 5, + ACTIONS(3275), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1305), 7, + STATE(1309), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -106030,248 +106311,146 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [50490] = 3, + [50889] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2416), 5, + ACTIONS(3209), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2414), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(3211), 1, anon_sym_PIPE_PIPE, + ACTIONS(3213), 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, - [50518] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1855), 1, - anon_sym_LPAREN2, - ACTIONS(1857), 1, - anon_sym_STAR, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2496), 1, - sym_identifier, - ACTIONS(2504), 1, - anon_sym_LBRACK, - STATE(1431), 1, - sym__declarator, - STATE(1498), 1, - sym__abstract_declarator, - STATE(1499), 1, - sym_parameter_list, - STATE(1886), 1, - sym_ms_based_modifier, - ACTIONS(3349), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1475), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1422), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [50566] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3233), 1, - sym_identifier, - ACTIONS(3235), 1, - anon_sym_LPAREN2, - ACTIONS(3237), 1, - anon_sym_defined, - ACTIONS(3351), 1, - sym_number_literal, - ACTIONS(3239), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3241), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3245), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1298), 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, - [50606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 5, - anon_sym_SLASH, + ACTIONS(3215), 1, anon_sym_PIPE, + ACTIONS(3217), 1, + anon_sym_CARET, + ACTIONS(3219), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3353), 15, - anon_sym_COMMA, + ACTIONS(3381), 1, anon_sym_RPAREN, + ACTIONS(3205), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3207), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3221), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3223), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3225), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3227), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50634] = 3, - ACTIONS(3223), 1, + [50938] = 12, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(3383), 1, anon_sym_LF, - ACTIONS(3355), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3389), 1, anon_sym_PIPE_PIPE, + ACTIONS(3391), 1, anon_sym_AMP_AMP, + ACTIONS(3393), 1, anon_sym_PIPE, + ACTIONS(3395), 1, anon_sym_CARET, + ACTIONS(3397), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50661] = 9, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3297), 1, - anon_sym_LF, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3357), 2, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3299), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50700] = 12, - ACTIONS(3223), 1, + [50983] = 12, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3369), 1, - anon_sym_LF, - ACTIONS(3371), 1, + ACTIONS(3389), 1, anon_sym_PIPE_PIPE, - ACTIONS(3373), 1, + ACTIONS(3391), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3393), 1, anon_sym_PIPE, - ACTIONS(3377), 1, + ACTIONS(3395), 1, anon_sym_CARET, - ACTIONS(3357), 2, + ACTIONS(3397), 1, + anon_sym_AMP, + ACTIONS(3405), 1, + anon_sym_LF, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50745] = 12, - ACTIONS(3223), 1, + [51028] = 12, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3371), 1, + ACTIONS(3389), 1, anon_sym_PIPE_PIPE, - ACTIONS(3373), 1, + ACTIONS(3391), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3393), 1, anon_sym_PIPE, - ACTIONS(3377), 1, + ACTIONS(3395), 1, anon_sym_CARET, - ACTIONS(3379), 1, + ACTIONS(3397), 1, + anon_sym_AMP, + ACTIONS(3407), 1, anon_sym_LF, - ACTIONS(3357), 2, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50790] = 3, - ACTIONS(3223), 1, + [51073] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3313), 1, anon_sym_LF, - ACTIONS(3291), 18, + ACTIONS(3315), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106290,36 +106469,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50817] = 3, - ACTIONS(3223), 1, + [51100] = 12, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3295), 1, anon_sym_LF, - ACTIONS(3327), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3297), 1, anon_sym_PIPE_PIPE, + ACTIONS(3391), 1, anon_sym_AMP_AMP, + ACTIONS(3393), 1, anon_sym_PIPE, + ACTIONS(3395), 1, anon_sym_CARET, + ACTIONS(3397), 1, anon_sym_AMP, + ACTIONS(3385), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3403), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50844] = 3, - ACTIONS(3223), 1, + [51145] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(3295), 1, anon_sym_LF, - ACTIONS(3319), 18, + ACTIONS(3297), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106338,45 +106526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50871] = 12, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3371), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3373), 1, - anon_sym_AMP_AMP, - ACTIONS(3375), 1, - anon_sym_PIPE, - ACTIONS(3377), 1, - anon_sym_CARET, - ACTIONS(3381), 1, - anon_sym_LF, - ACTIONS(3357), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3359), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3365), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [50916] = 3, - ACTIONS(3223), 1, + [51172] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3367), 1, anon_sym_LF, - ACTIONS(3287), 18, + ACTIONS(3369), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106395,82 +106550,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50943] = 12, - ACTIONS(3223), 1, + [51199] = 12, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3371), 1, + ACTIONS(3389), 1, anon_sym_PIPE_PIPE, - ACTIONS(3373), 1, + ACTIONS(3391), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3393), 1, anon_sym_PIPE, - ACTIONS(3377), 1, + ACTIONS(3395), 1, anon_sym_CARET, - ACTIONS(3383), 1, - anon_sym_LF, - ACTIONS(3357), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3359), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3365), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [50988] = 12, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3361), 1, + ACTIONS(3397), 1, anon_sym_AMP, - ACTIONS(3371), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3373), 1, - anon_sym_AMP_AMP, - ACTIONS(3375), 1, - anon_sym_PIPE, - ACTIONS(3377), 1, - anon_sym_CARET, - ACTIONS(3385), 1, + ACTIONS(3409), 1, anon_sym_LF, - ACTIONS(3357), 2, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51033] = 4, - ACTIONS(3223), 1, + [51244] = 4, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(3295), 1, anon_sym_LF, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3299), 15, + ACTIONS(3297), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE_PIPE, @@ -106486,12 +106608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51062] = 3, - ACTIONS(3223), 1, + [51273] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(3325), 1, anon_sym_LF, - ACTIONS(3299), 18, + ACTIONS(3327), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106510,177 +106632,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51089] = 12, - ACTIONS(3223), 1, + [51300] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3371), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3373), 1, - anon_sym_AMP_AMP, - ACTIONS(3375), 1, - anon_sym_PIPE, - ACTIONS(3377), 1, - anon_sym_CARET, - ACTIONS(3387), 1, + ACTIONS(3353), 1, anon_sym_LF, - ACTIONS(3357), 2, + ACTIONS(3355), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [51134] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3201), 1, - anon_sym_SLASH, - ACTIONS(3203), 1, anon_sym_PIPE_PIPE, - ACTIONS(3205), 1, anon_sym_AMP_AMP, - ACTIONS(3207), 1, anon_sym_PIPE, - ACTIONS(3209), 1, anon_sym_CARET, - ACTIONS(3211), 1, anon_sym_AMP, - ACTIONS(3389), 1, - anon_sym_RPAREN, - ACTIONS(3197), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3213), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3215), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3217), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3219), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51183] = 12, - ACTIONS(3223), 1, + [51327] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3297), 1, - anon_sym_LF, ACTIONS(3299), 1, + anon_sym_LF, + ACTIONS(3301), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3373), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, anon_sym_PIPE, - ACTIONS(3377), 1, anon_sym_CARET, - ACTIONS(3357), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3363), 2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3359), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3365), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51228] = 14, - ACTIONS(3), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51354] = 12, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3201), 1, - anon_sym_SLASH, - ACTIONS(3203), 1, + ACTIONS(3389), 1, anon_sym_PIPE_PIPE, - ACTIONS(3205), 1, + ACTIONS(3391), 1, anon_sym_AMP_AMP, - ACTIONS(3207), 1, + ACTIONS(3393), 1, anon_sym_PIPE, - ACTIONS(3209), 1, + ACTIONS(3395), 1, anon_sym_CARET, - ACTIONS(3211), 1, + ACTIONS(3397), 1, anon_sym_AMP, - ACTIONS(3391), 1, - anon_sym_RPAREN, - ACTIONS(3197), 2, + ACTIONS(3411), 1, + anon_sym_LF, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3199), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3213), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3215), 2, + ACTIONS(3403), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3401), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3217), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51277] = 12, - ACTIONS(3223), 1, + anon_sym_LT, + [51399] = 12, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3371), 1, + ACTIONS(3389), 1, anon_sym_PIPE_PIPE, - ACTIONS(3373), 1, + ACTIONS(3391), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3393), 1, anon_sym_PIPE, - ACTIONS(3377), 1, + ACTIONS(3395), 1, anon_sym_CARET, - ACTIONS(3393), 1, + ACTIONS(3397), 1, + anon_sym_AMP, + ACTIONS(3413), 1, anon_sym_LF, - ACTIONS(3357), 2, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51322] = 3, - ACTIONS(3223), 1, + [51444] = 3, + ACTIONS(3233), 1, sym_comment, ACTIONS(3259), 1, anon_sym_LF, @@ -106703,12 +106770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51349] = 3, - ACTIONS(3223), 1, + [51471] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(3357), 1, anon_sym_LF, - ACTIONS(3323), 18, + ACTIONS(3359), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106727,174 +106794,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51376] = 11, - ACTIONS(3223), 1, + [51498] = 12, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3297), 1, - anon_sym_LF, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3375), 1, - anon_sym_PIPE, - ACTIONS(3377), 1, - anon_sym_CARET, - ACTIONS(3299), 2, + ACTIONS(3389), 1, anon_sym_PIPE_PIPE, + ACTIONS(3391), 1, anon_sym_AMP_AMP, - ACTIONS(3357), 2, + ACTIONS(3393), 1, + anon_sym_PIPE, + ACTIONS(3395), 1, + anon_sym_CARET, + ACTIONS(3397), 1, + anon_sym_AMP, + ACTIONS(3415), 1, + anon_sym_LF, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51419] = 3, - ACTIONS(2414), 1, - anon_sym_LF, - ACTIONS(3223), 1, + [51543] = 12, + ACTIONS(3233), 1, sym_comment, - ACTIONS(2416), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3389), 1, anon_sym_PIPE_PIPE, + ACTIONS(3391), 1, anon_sym_AMP_AMP, + ACTIONS(3393), 1, anon_sym_PIPE, + ACTIONS(3395), 1, anon_sym_CARET, + ACTIONS(3397), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51446] = 12, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3371), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3373), 1, - anon_sym_AMP_AMP, - ACTIONS(3375), 1, - anon_sym_PIPE, - ACTIONS(3377), 1, - anon_sym_CARET, - ACTIONS(3395), 1, + ACTIONS(3417), 1, anon_sym_LF, - ACTIONS(3357), 2, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51491] = 12, - ACTIONS(3223), 1, + [51588] = 11, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3371), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3373), 1, - anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3295), 1, + anon_sym_LF, + ACTIONS(3393), 1, anon_sym_PIPE, - ACTIONS(3377), 1, + ACTIONS(3395), 1, anon_sym_CARET, ACTIONS(3397), 1, - anon_sym_LF, - ACTIONS(3357), 2, + anon_sym_AMP, + ACTIONS(3297), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51536] = 12, - ACTIONS(3223), 1, + [51631] = 12, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3361), 1, - anon_sym_AMP, - ACTIONS(3371), 1, + ACTIONS(3389), 1, anon_sym_PIPE_PIPE, - ACTIONS(3373), 1, + ACTIONS(3391), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3393), 1, anon_sym_PIPE, - ACTIONS(3377), 1, + ACTIONS(3395), 1, anon_sym_CARET, - ACTIONS(3399), 1, + ACTIONS(3397), 1, + anon_sym_AMP, + ACTIONS(3419), 1, anon_sym_LF, - ACTIONS(3357), 2, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51581] = 5, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3297), 1, + [51676] = 3, + ACTIONS(2392), 1, anon_sym_LF, - ACTIONS(3357), 2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(2394), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3359), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3299), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106908,86 +106949,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51612] = 12, - ACTIONS(3223), 1, + [51703] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3209), 1, + anon_sym_SLASH, + ACTIONS(3211), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3213), 1, + anon_sym_AMP_AMP, + ACTIONS(3215), 1, + anon_sym_PIPE, + ACTIONS(3217), 1, + anon_sym_CARET, + ACTIONS(3219), 1, anon_sym_AMP, - ACTIONS(3371), 1, + ACTIONS(3421), 1, + anon_sym_RPAREN, + ACTIONS(3205), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3207), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3221), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3223), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3225), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3227), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51752] = 12, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(3389), 1, anon_sym_PIPE_PIPE, - ACTIONS(3373), 1, + ACTIONS(3391), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3393), 1, anon_sym_PIPE, - ACTIONS(3377), 1, + ACTIONS(3395), 1, anon_sym_CARET, - ACTIONS(3401), 1, + ACTIONS(3397), 1, + anon_sym_AMP, + ACTIONS(3423), 1, anon_sym_LF, - ACTIONS(3357), 2, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51657] = 10, - ACTIONS(3223), 1, + [51797] = 12, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3297), 1, - anon_sym_LF, - ACTIONS(3361), 1, + ACTIONS(3389), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3391), 1, + anon_sym_AMP_AMP, + ACTIONS(3393), 1, + anon_sym_PIPE, + ACTIONS(3395), 1, + anon_sym_CARET, + ACTIONS(3397), 1, anon_sym_AMP, - ACTIONS(3377), 1, + ACTIONS(3425), 1, + anon_sym_LF, + ACTIONS(3385), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3399), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3403), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3401), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51842] = 10, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(3295), 1, + anon_sym_LF, + ACTIONS(3395), 1, anon_sym_CARET, - ACTIONS(3357), 2, + ACTIONS(3397), 1, + anon_sym_AMP, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, + ACTIONS(3399), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3299), 3, + ACTIONS(3297), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51698] = 6, - ACTIONS(3223), 1, + [51883] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(3295), 1, anon_sym_LF, - ACTIONS(3357), 2, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3367), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3299), 11, + ACTIONS(3297), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106999,69 +107105,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [51731] = 7, - ACTIONS(3223), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51914] = 9, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(3295), 1, + anon_sym_LF, + ACTIONS(3397), 1, + anon_sym_AMP, + ACTIONS(3385), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3399), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3403), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3297), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(3401), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51953] = 8, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(3295), 1, anon_sym_LF, - ACTIONS(3357), 2, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3367), 2, + ACTIONS(3399), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3299), 7, + ACTIONS(3297), 5, 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, - [51766] = 8, - ACTIONS(3223), 1, + [51990] = 7, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(3295), 1, anon_sym_LF, - ACTIONS(3357), 2, + ACTIONS(3385), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3363), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3367), 2, + ACTIONS(3403), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3359), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3365), 4, + ACTIONS(3401), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3299), 5, + ACTIONS(3297), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [51803] = 3, - ACTIONS(3223), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [52025] = 6, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3295), 1, + anon_sym_LF, + ACTIONS(3385), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3403), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3387), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3297), 11, + 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, + [52058] = 3, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(3361), 1, anon_sym_LF, - ACTIONS(3295), 18, + ACTIONS(3363), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -107080,24 +107245,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [51830] = 7, + [52085] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 1, + ACTIONS(2739), 1, sym_identifier, - ACTIONS(3406), 1, + ACTIONS(3430), 1, sym_primitive_type, - STATE(922), 1, + STATE(919), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2805), 2, + ACTIONS(2742), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3403), 4, + ACTIONS(3427), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2807), 9, + ACTIONS(2744), 9, anon_sym___based, anon_sym_const, anon_sym_constexpr, @@ -107107,10 +107272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51864] = 10, + [52119] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -107120,25 +107285,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1440), 1, + STATE(1456), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51902] = 10, + [52157] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(2873), 1, + anon_sym_const, + ACTIONS(2880), 1, + anon_sym_LBRACE, + ACTIONS(3433), 1, + anon_sym___attribute__, + ACTIONS(3435), 1, + anon_sym_COLON, + STATE(1008), 1, + sym_attribute_specifier, + STATE(1222), 1, + sym_enumerator_list, + ACTIONS(2875), 10, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [52191] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2584), 1, sym_identifier, @@ -107148,1048 +107339,942 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2592), 1, sym_primitive_type, - STATE(1448), 1, + STATE(1443), 1, sym__type_declarator, - STATE(1907), 1, + STATE(1894), 1, sym_ms_based_modifier, ACTIONS(2590), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1463), 5, + STATE(1471), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51940] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2863), 1, - anon_sym_const, - ACTIONS(2870), 1, - anon_sym_LBRACE, - ACTIONS(3409), 1, - anon_sym___attribute__, - ACTIONS(3411), 1, - anon_sym_COLON, - STATE(1013), 1, - sym_attribute_specifier, - STATE(1215), 1, - sym_enumerator_list, - ACTIONS(2865), 10, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [51974] = 11, + [52229] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2865), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2867), 1, anon_sym_STAR, - ACTIONS(3414), 1, + ACTIONS(3438), 1, anon_sym_SEMI, - STATE(1335), 1, + STATE(1344), 1, sym__field_declarator, - STATE(1833), 1, + STATE(1801), 1, sym_ms_based_modifier, - STATE(1834), 1, + STATE(1955), 1, sym_attribute_specifier, - STATE(1425), 5, + STATE(1430), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [52012] = 11, + [52267] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2865), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2867), 1, anon_sym_STAR, - ACTIONS(3416), 1, + ACTIONS(3440), 1, anon_sym_SEMI, - STATE(1336), 1, + STATE(1343), 1, sym__field_declarator, - STATE(1833), 1, - sym_ms_based_modifier, - STATE(1942), 1, + STATE(1787), 1, sym_attribute_specifier, - STATE(1425), 5, + STATE(1801), 1, + sym_ms_based_modifier, + STATE(1430), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [52050] = 11, + [52305] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2865), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2867), 1, anon_sym_STAR, - ACTIONS(3418), 1, + ACTIONS(3442), 1, anon_sym_SEMI, - STATE(1338), 1, + STATE(1341), 1, sym__field_declarator, - STATE(1811), 1, - sym_attribute_specifier, - STATE(1833), 1, + STATE(1801), 1, sym_ms_based_modifier, - STATE(1425), 5, + STATE(1817), 1, + sym_attribute_specifier, + STATE(1430), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [52088] = 11, + [52343] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, anon_sym___attribute__, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2865), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2867), 1, anon_sym_STAR, - ACTIONS(3420), 1, + ACTIONS(3444), 1, anon_sym_SEMI, - STATE(1337), 1, + STATE(1342), 1, sym__field_declarator, - STATE(1833), 1, - sym_ms_based_modifier, - STATE(1882), 1, + STATE(1735), 1, sym_attribute_specifier, - STATE(1425), 5, + STATE(1801), 1, + sym_ms_based_modifier, + STATE(1430), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [52126] = 13, + [52381] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3409), 1, + ACTIONS(3433), 1, anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3426), 1, + ACTIONS(3450), 1, anon_sym_SEMI, - ACTIONS(3428), 1, + ACTIONS(3452), 1, anon_sym_LBRACK, - ACTIONS(3430), 1, + ACTIONS(3454), 1, anon_sym_COLON, - STATE(1444), 1, + STATE(1442), 1, sym_parameter_list, + STATE(1487), 1, + sym_bitfield_clause, STATE(1488), 1, aux_sym_field_declaration_repeat1, - STATE(1491), 1, - sym_bitfield_clause, - STATE(1781), 1, + STATE(1827), 1, sym_attribute_specifier, - STATE(1388), 2, + STATE(1395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52167] = 13, + [52422] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3409), 1, + ACTIONS(3433), 1, anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3452), 1, anon_sym_LBRACK, - ACTIONS(3430), 1, + ACTIONS(3454), 1, anon_sym_COLON, - ACTIONS(3432), 1, + ACTIONS(3456), 1, anon_sym_SEMI, - STATE(1444), 1, + STATE(1442), 1, sym_parameter_list, - STATE(1493), 1, - sym_bitfield_clause, - STATE(1500), 1, + STATE(1486), 1, aux_sym_field_declaration_repeat1, - STATE(1917), 1, + STATE(1490), 1, + sym_bitfield_clause, + STATE(1794), 1, sym_attribute_specifier, - STATE(1388), 2, + STATE(1395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52208] = 13, + [52463] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3409), 1, + ACTIONS(3433), 1, anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3452), 1, anon_sym_LBRACK, - ACTIONS(3430), 1, + ACTIONS(3454), 1, anon_sym_COLON, - ACTIONS(3434), 1, + ACTIONS(3458), 1, anon_sym_SEMI, - STATE(1444), 1, + STATE(1442), 1, sym_parameter_list, - STATE(1494), 1, + STATE(1504), 1, sym_bitfield_clause, - STATE(1496), 1, + STATE(1505), 1, aux_sym_field_declaration_repeat1, - STATE(1913), 1, + STATE(1777), 1, sym_attribute_specifier, - STATE(1388), 2, + STATE(1395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52249] = 13, + [52504] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3409), 1, + ACTIONS(3433), 1, anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3452), 1, anon_sym_LBRACK, - ACTIONS(3430), 1, + ACTIONS(3454), 1, anon_sym_COLON, - ACTIONS(3436), 1, + ACTIONS(3460), 1, anon_sym_SEMI, - STATE(1444), 1, + STATE(1442), 1, sym_parameter_list, - STATE(1487), 1, - aux_sym_field_declaration_repeat1, - STATE(1489), 1, + STATE(1483), 1, sym_bitfield_clause, - STATE(1802), 1, + STATE(1499), 1, + aux_sym_field_declaration_repeat1, + STATE(1945), 1, sym_attribute_specifier, - STATE(1388), 2, + STATE(1395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52290] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2496), 1, - sym_identifier, - ACTIONS(2841), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_STAR, - STATE(1381), 1, - sym__declarator, - STATE(1571), 1, - sym_init_declarator, - STATE(1886), 1, - sym_ms_based_modifier, - STATE(1422), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [52322] = 9, + [52545] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1353), 1, + STATE(1346), 1, sym__declarator, - STATE(1620), 1, + STATE(1593), 1, sym_init_declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52354] = 12, + [52577] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(460), 1, + ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(3440), 1, + ACTIONS(3464), 1, anon_sym_SEMI, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, + ACTIONS(3468), 1, anon_sym_EQ, - STATE(460), 1, + STATE(503), 1, sym_compound_statement, - STATE(1377), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1542), 1, + STATE(1643), 1, aux_sym_declaration_repeat1, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52392] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2496), 1, - sym_identifier, - ACTIONS(2841), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_STAR, - STATE(1349), 1, - sym__declarator, - STATE(1571), 1, - sym_init_declarator, - STATE(1886), 1, - sym_ms_based_modifier, - STATE(1422), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [52424] = 5, + [52615] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3451), 1, + ACTIONS(460), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3462), 1, + anon_sym_COMMA, + ACTIONS(3466), 1, anon_sym_LBRACK, - STATE(1343), 2, + ACTIONS(3468), 1, + anon_sym_EQ, + ACTIONS(3470), 1, + anon_sym_SEMI, + STATE(490), 1, + sym_compound_statement, + STATE(1382), 1, + sym_parameter_list, + STATE(1606), 1, + aux_sym_declaration_repeat1, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3446), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [52448] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2496), 1, - sym_identifier, - ACTIONS(2841), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_STAR, - STATE(1380), 1, - sym__declarator, - STATE(1628), 1, - sym_init_declarator, - STATE(1886), 1, - sym_ms_based_modifier, - STATE(1422), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [52480] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1859), 1, - anon_sym___based, - ACTIONS(2496), 1, - sym_identifier, - ACTIONS(2841), 1, - anon_sym_LPAREN2, - ACTIONS(2843), 1, - anon_sym_STAR, - STATE(1347), 1, - sym__declarator, - STATE(1598), 1, - sym_init_declarator, - STATE(1886), 1, - sym_ms_based_modifier, - STATE(1422), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [52512] = 9, + [52653] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1420), 1, + STATE(1354), 1, sym__declarator, - STATE(1657), 1, + STATE(1624), 1, sym_init_declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52544] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(39), 1, - anon_sym_LBRACE, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3438), 1, - anon_sym_COMMA, - ACTIONS(3442), 1, - anon_sym_LBRACK, - ACTIONS(3444), 1, - anon_sym_EQ, - ACTIONS(3453), 1, - anon_sym_SEMI, - STATE(495), 1, - sym_compound_statement, - STATE(1377), 1, - sym_parameter_list, - STATE(1584), 1, - aux_sym_declaration_repeat1, - STATE(1383), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [52582] = 9, + [52685] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1390), 1, + STATE(1393), 1, sym__declarator, - STATE(1573), 1, + STATE(1598), 1, sym_init_declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52614] = 12, + [52717] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(3424), 1, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(3438), 1, - anon_sym_COMMA, - ACTIONS(3442), 1, - anon_sym_LBRACK, - ACTIONS(3444), 1, - anon_sym_EQ, - ACTIONS(3455), 1, - anon_sym_SEMI, - STATE(220), 1, - sym_compound_statement, - STATE(1377), 1, - sym_parameter_list, - STATE(1552), 1, - aux_sym_declaration_repeat1, - STATE(1383), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [52652] = 9, + ACTIONS(2861), 1, + anon_sym_STAR, + STATE(1387), 1, + sym__declarator, + STATE(1593), 1, + sym_init_declarator, + STATE(1874), 1, + sym_ms_based_modifier, + STATE(1434), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [52749] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1382), 1, + STATE(1388), 1, sym__declarator, - STATE(1620), 1, + STATE(1624), 1, sym_init_declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52684] = 9, + [52781] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1355), 1, + STATE(1356), 1, sym__declarator, - STATE(1628), 1, + STATE(1638), 1, sym_init_declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52716] = 9, + [52813] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1387), 1, + STATE(1394), 1, sym__declarator, - STATE(1605), 1, + STATE(1581), 1, sym_init_declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52748] = 12, + [52845] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(652), 1, + ACTIONS(123), 1, anon_sym_LBRACE, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, + ACTIONS(3468), 1, anon_sym_EQ, - ACTIONS(3457), 1, + ACTIONS(3472), 1, anon_sym_SEMI, - STATE(475), 1, + STATE(133), 1, sym_compound_statement, - STATE(1377), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1622), 1, + STATE(1588), 1, aux_sym_declaration_repeat1, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52786] = 9, + [52883] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1386), 1, + STATE(1358), 1, sym__declarator, STATE(1598), 1, sym_init_declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52818] = 12, + [52915] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(123), 1, + ACTIONS(189), 1, anon_sym_LBRACE, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, + ACTIONS(3468), 1, anon_sym_EQ, - ACTIONS(3459), 1, + ACTIONS(3474), 1, anon_sym_SEMI, - STATE(147), 1, + STATE(208), 1, sym_compound_statement, - STATE(1377), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1610), 1, + STATE(1641), 1, aux_sym_declaration_repeat1, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52856] = 9, + [52953] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1341), 1, + STATE(1347), 1, sym__declarator, - STATE(1605), 1, + STATE(1632), 1, sym_init_declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52888] = 5, + [52985] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, - anon_sym___attribute__, - ACTIONS(3463), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(670), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3462), 1, + anon_sym_COMMA, + ACTIONS(3466), 1, anon_sym_LBRACK, - STATE(1364), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3461), 7, + ACTIONS(3468), 1, + anon_sym_EQ, + ACTIONS(3476), 1, + anon_sym_SEMI, + STATE(463), 1, + sym_compound_statement, + STATE(1382), 1, + sym_parameter_list, + STATE(1596), 1, + aux_sym_declaration_repeat1, + STATE(1385), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [53023] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3480), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3483), 1, + anon_sym_LBRACK, + STATE(1359), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3478), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - [52911] = 8, + anon_sym_COLON, + [53047] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1451), 1, + STATE(1403), 1, sym__declarator, - STATE(1886), 1, + STATE(1660), 1, + sym_init_declarator, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52940] = 8, + [53079] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1432), 1, + STATE(1386), 1, sym__declarator, - STATE(1886), 1, + STATE(1638), 1, + sym_init_declarator, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [52969] = 8, + [53111] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1371), 1, - sym__field_declarator, - STATE(1833), 1, + STATE(1397), 1, + sym__declarator, + STATE(1632), 1, + sym_init_declarator, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1425), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [52998] = 7, + STATE(1434), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [53143] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2496), 1, + sym_identifier, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, - anon_sym_LBRACK, - STATE(1444), 1, - sym_parameter_list, - STATE(1388), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3465), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [53025] = 7, + ACTIONS(2861), 1, + anon_sym_STAR, + STATE(1437), 1, + sym__declarator, + STATE(1874), 1, + sym_ms_based_modifier, + STATE(1434), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [53172] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3452), 1, anon_sym_LBRACK, - STATE(1444), 1, + STATE(1442), 1, sym_parameter_list, - STATE(1388), 2, + STATE(1395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3467), 5, + ACTIONS(3485), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [53052] = 7, + [53199] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3442), 1, + ACTIONS(3452), 1, anon_sym_LBRACK, - STATE(1377), 1, + STATE(1442), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3469), 5, + ACTIONS(3487), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [53079] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3473), 1, anon_sym___attribute__, - ACTIONS(3476), 1, - anon_sym_LBRACK, - STATE(1364), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3471), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [53102] = 8, + anon_sym_COLON, + [53226] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2829), 1, + ACTIONS(2863), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(2865), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, + ACTIONS(2867), 1, anon_sym_STAR, - STATE(1447), 1, + STATE(1458), 1, sym__field_declarator, - STATE(1833), 1, + STATE(1801), 1, sym_ms_based_modifier, - STATE(1425), 5, + STATE(1430), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [53131] = 8, + [53255] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, STATE(1438), 1, sym__declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53160] = 7, + [53284] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2863), 1, + sym_identifier, + ACTIONS(2865), 1, + anon_sym_LPAREN2, + ACTIONS(2867), 1, + anon_sym_STAR, + STATE(1377), 1, + sym__field_declarator, + STATE(1801), 1, + sym_ms_based_modifier, + STATE(1430), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [53313] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3491), 1, + anon_sym___attribute__, + ACTIONS(3494), 1, + anon_sym_LBRACK, + STATE(1369), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3489), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53336] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3442), 1, + ACTIONS(3452), 1, anon_sym_LBRACK, - STATE(1377), 1, + STATE(1442), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3478), 5, + ACTIONS(3496), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [53187] = 8, + anon_sym___attribute__, + anon_sym_COLON, + [53363] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1445), 1, + STATE(1429), 1, sym__declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53216] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2238), 1, - sym_identifier, - ACTIONS(3480), 1, - anon_sym_RPAREN, - ACTIONS(3482), 1, - anon_sym_COLON, - STATE(1568), 1, - sym_gnu_asm_output_operand_list, - STATE(753), 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, - [53243] = 7, + [53392] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - STATE(1444), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1388), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3484), 5, + ACTIONS(3498), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [53270] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(3430), 1, - anon_sym_COLON, - STATE(1444), 1, - sym_parameter_list, - STATE(1546), 1, - sym_bitfield_clause, - STATE(1388), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3486), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [53301] = 7, + anon_sym_LBRACE, + anon_sym_EQ, + [53419] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - STATE(1444), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1388), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3488), 5, + ACTIONS(3500), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [53328] = 7, + anon_sym_LBRACE, + anon_sym_EQ, + [53446] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - STATE(1377), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3490), 5, + ACTIONS(3502), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - [53355] = 7, + [53473] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2238), 1, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2496), 1, sym_identifier, - ACTIONS(3482), 1, - anon_sym_COLON, - ACTIONS(3492), 1, + ACTIONS(2859), 1, + anon_sym_LPAREN2, + ACTIONS(2861), 1, + anon_sym_STAR, + STATE(1441), 1, + sym__declarator, + STATE(1874), 1, + sym_ms_based_modifier, + STATE(1434), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [53502] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2232), 1, + sym_identifier, + ACTIONS(3504), 1, anon_sym_RPAREN, - STATE(1635), 1, + ACTIONS(3506), 1, + anon_sym_COLON, + STATE(1577), 1, sym_gnu_asm_output_operand_list, - STATE(753), 2, + STATE(755), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(91), 5, @@ -108198,58 +108283,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [53382] = 8, + [53529] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3452), 1, + anon_sym_LBRACK, + ACTIONS(3454), 1, + anon_sym_COLON, + STATE(1442), 1, + sym_parameter_list, + STATE(1550), 1, + sym_bitfield_clause, + STATE(1395), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3508), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [53560] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3433), 1, + anon_sym___attribute__, + ACTIONS(3512), 1, + anon_sym_LBRACK, + STATE(1369), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3510), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [53583] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1427), 1, + STATE(1436), 1, sym__declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53411] = 7, + [53612] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2232), 1, + sym_identifier, + ACTIONS(3506), 1, + anon_sym_COLON, + ACTIONS(3514), 1, + anon_sym_RPAREN, + STATE(1627), 1, + sym_gnu_asm_output_operand_list, + STATE(755), 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, + [53639] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3442), 1, + ACTIONS(3452), 1, anon_sym_LBRACK, - STATE(1377), 1, + STATE(1442), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3494), 5, + ACTIONS(3516), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [53438] = 5, + anon_sym___attribute__, + anon_sym_COLON, + [53666] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, + ACTIONS(3433), 1, anon_sym___attribute__, - ACTIONS(3498), 1, + ACTIONS(3520), 1, anon_sym_LBRACK, - STATE(1357), 2, + STATE(1378), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3496), 7, + ACTIONS(3518), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108257,134 +108402,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [53461] = 8, + [53689] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3466), 1, + anon_sym_LBRACK, + STATE(1382), 1, + sym_parameter_list, + STATE(1385), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3522), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [53716] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, ACTIONS(2496), 1, sym_identifier, - ACTIONS(2841), 1, + ACTIONS(2859), 1, anon_sym_LPAREN2, - ACTIONS(2843), 1, + ACTIONS(2861), 1, anon_sym_STAR, - STATE(1424), 1, + STATE(1454), 1, sym__declarator, - STATE(1886), 1, + STATE(1874), 1, sym_ms_based_modifier, - STATE(1422), 5, + STATE(1434), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [53490] = 6, + [53745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3526), 1, anon_sym_LBRACK, - STATE(1527), 1, - sym_gnu_asm_output_operand, - STATE(1766), 1, - sym_string_literal, - ACTIONS(3500), 2, + STATE(1359), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3524), 6, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [53514] = 10, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [53767] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, + ACTIONS(3468), 1, anon_sym_EQ, - ACTIONS(3459), 1, + ACTIONS(3474), 1, anon_sym_SEMI, - STATE(1377), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1610), 1, + STATE(1641), 1, aux_sym_declaration_repeat1, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53546] = 10, + [53799] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(3442), 1, + ACTIONS(3464), 1, + anon_sym_SEMI, + ACTIONS(3466), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, + ACTIONS(3468), 1, anon_sym_EQ, - ACTIONS(3455), 1, - anon_sym_SEMI, - STATE(1377), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1552), 1, + STATE(1643), 1, aux_sym_declaration_repeat1, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53578] = 10, + [53831] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, + ACTIONS(3468), 1, anon_sym_EQ, - ACTIONS(3457), 1, + ACTIONS(3472), 1, anon_sym_SEMI, - STATE(1377), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1622), 1, + STATE(1588), 1, aux_sym_declaration_repeat1, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53610] = 5, + [53863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3506), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - STATE(1343), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3504), 6, - anon_sym_COMMA, + STATE(1514), 1, + sym_gnu_asm_input_operand, + STATE(1923), 1, + sym_string_literal, + ACTIONS(3528), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [53632] = 3, + anon_sym_COLON, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [53887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3508), 9, + ACTIONS(3532), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108394,12 +108559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [53650] = 3, + [53905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, + ACTIONS(3538), 1, anon_sym_LBRACK, - ACTIONS(3512), 9, + ACTIONS(3536), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108409,73 +108574,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [53668] = 10, + [53923] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3542), 1, + anon_sym_LBRACK, + STATE(1535), 1, + sym_gnu_asm_output_operand, + STATE(1935), 1, + sym_string_literal, + ACTIONS(3540), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [53947] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, + ACTIONS(3468), 1, anon_sym_EQ, - ACTIONS(3453), 1, + ACTIONS(3476), 1, anon_sym_SEMI, - STATE(1377), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1584), 1, + STATE(1596), 1, aux_sym_declaration_repeat1, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53700] = 10, + [53979] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(3440), 1, - anon_sym_SEMI, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, + ACTIONS(3468), 1, anon_sym_EQ, - STATE(1377), 1, + ACTIONS(3544), 1, + anon_sym_SEMI, + STATE(1382), 1, sym_parameter_list, - STATE(1542), 1, + STATE(1592), 1, aux_sym_declaration_repeat1, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53732] = 5, + [54011] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - STATE(1343), 2, + STATE(1359), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3516), 6, + ACTIONS(3546), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [53754] = 3, + [54033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3522), 1, + ACTIONS(3552), 1, anon_sym_LBRACK, - ACTIONS(3520), 9, + ACTIONS(3550), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108485,668 +108668,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [53772] = 10, + [54051] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, + ACTIONS(3468), 1, anon_sym_EQ, - ACTIONS(3524), 1, + ACTIONS(3470), 1, anon_sym_SEMI, - STATE(1377), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1534), 1, + STATE(1606), 1, aux_sym_declaration_repeat1, - STATE(1383), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [53804] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3528), 1, - anon_sym_LBRACK, - STATE(1523), 1, - sym_gnu_asm_input_operand, - STATE(1718), 1, - sym_string_literal, - ACTIONS(3526), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [53828] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3532), 1, - anon_sym_SEMI, - ACTIONS(3534), 1, - anon_sym_LBRACK, - STATE(1461), 1, - sym_parameter_list, - STATE(1577), 1, - aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53857] = 7, + [54083] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3536), 3, + ACTIONS(3554), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [53882] = 5, + [54108] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 1, + ACTIONS(3558), 1, sym_identifier, - ACTIONS(3542), 1, + ACTIONS(3562), 1, + sym_system_lib_string, + STATE(1834), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3560), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [54129] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3564), 1, + sym_identifier, + ACTIONS(3566), 1, sym_system_lib_string, - STATE(1823), 2, + STATE(1724), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3540), 5, + ACTIONS(3560), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [53903] = 9, + [54150] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3544), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3570), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1603), 1, + STATE(1644), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53932] = 9, + [54179] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3546), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3572), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1561), 1, + STATE(1583), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53961] = 9, + [54208] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - ACTIONS(3548), 1, - anon_sym_SEMI, - STATE(1461), 1, + ACTIONS(3468), 1, + anon_sym_EQ, + STATE(1382), 1, sym_parameter_list, - STATE(1588), 1, - aux_sym_type_definition_repeat2, - STATE(1443), 2, + ACTIONS(3574), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53990] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3550), 1, - sym_identifier, - ACTIONS(3552), 1, - sym_system_lib_string, - STATE(1864), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3540), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54011] = 9, + [54235] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3554), 1, - anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1607), 1, - aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54040] = 9, + ACTIONS(3576), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [54260] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, - anon_sym_LBRACK, ACTIONS(3556), 1, + anon_sym_LBRACK, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3578), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1593), 1, + STATE(1555), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54069] = 9, + [54289] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3558), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3580), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1579), 1, + STATE(1564), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54098] = 9, + [54318] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3560), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3582), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1617), 1, + STATE(1590), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54127] = 9, + [54347] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3562), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3584), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1616), 1, + STATE(1591), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54156] = 9, + [54376] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3564), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3586), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1572), 1, + STATE(1609), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54185] = 9, + [54405] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3566), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3588), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1594), 1, + STATE(1575), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54214] = 9, + [54434] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3590), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1570), 1, + STATE(1610), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54243] = 9, + [54463] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3592), 1, + sym_identifier, + ACTIONS(3594), 1, + sym_system_lib_string, + STATE(1841), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3560), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [54484] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3596), 1, + sym_identifier, + ACTIONS(3598), 1, + sym_system_lib_string, + STATE(1800), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3560), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [54505] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3570), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3600), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1563), 1, + STATE(1540), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54272] = 7, + [54534] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - STATE(1461), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3602), 1, + anon_sym_SEMI, + STATE(1472), 1, sym_parameter_list, - STATE(1443), 2, + STATE(1602), 1, + aux_sym_type_definition_repeat2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3572), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [54297] = 9, + [54563] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3574), 1, - anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1549), 1, - aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54326] = 9, + ACTIONS(3604), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [54588] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3576), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3606), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1560), 1, + STATE(1613), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54355] = 7, + [54617] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - STATE(1461), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3608), 1, + anon_sym_SEMI, + STATE(1472), 1, sym_parameter_list, - STATE(1443), 2, + STATE(1570), 1, + aux_sym_type_definition_repeat2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3578), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [54380] = 5, + [54646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3610), 1, sym_identifier, - ACTIONS(3582), 1, + ACTIONS(3612), 1, sym_system_lib_string, - STATE(1777), 2, + STATE(1994), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3540), 5, + ACTIONS(3560), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54401] = 9, + [54667] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK, + STATE(1472), 1, + sym_parameter_list, + STATE(1439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3614), 3, anon_sym_COMMA, - ACTIONS(3534), 1, + anon_sym_RPAREN, + anon_sym_SEMI, + [54692] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3584), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3616), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1595), 1, + STATE(1544), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54430] = 9, + [54721] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3586), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3618), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1596), 1, + STATE(1614), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54459] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3588), 1, - sym_identifier, - ACTIONS(3590), 1, - sym_system_lib_string, - STATE(1961), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3540), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54480] = 9, + [54750] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3592), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3620), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1538), 1, + STATE(1566), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54509] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3594), 1, - sym_identifier, - ACTIONS(3596), 1, - sym_system_lib_string, - STATE(1852), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3540), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54530] = 9, + [54779] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3598), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3622), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1604), 1, + STATE(1607), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54559] = 7, + [54808] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - STATE(1461), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3624), 1, + anon_sym_SEMI, + STATE(1472), 1, sym_parameter_list, - STATE(1443), 2, + STATE(1619), 1, + aux_sym_type_definition_repeat2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3600), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [54584] = 8, + [54837] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3442), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, - anon_sym_EQ, - STATE(1377), 1, - sym_parameter_list, - ACTIONS(3602), 2, + ACTIONS(3568), 1, anon_sym_COMMA, + ACTIONS(3626), 1, anon_sym_SEMI, - STATE(1383), 2, + STATE(1472), 1, + sym_parameter_list, + STATE(1601), 1, + aux_sym_type_definition_repeat2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54611] = 9, + [54866] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3534), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3604), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3628), 1, anon_sym_SEMI, - STATE(1461), 1, + STATE(1472), 1, sym_parameter_list, - STATE(1559), 1, + STATE(1599), 1, aux_sym_type_definition_repeat2, - STATE(1443), 2, + STATE(1439), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54640] = 3, + [54895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, + ACTIONS(3632), 1, anon_sym_LBRACK, - ACTIONS(3606), 7, + ACTIONS(3630), 7, 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, - [54656] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1507), 1, - sym_string_literal, - ACTIONS(3610), 2, - anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54674] = 8, + [54911] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(123), 1, + ACTIONS(189), 1, anon_sym_LBRACE, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - STATE(140), 1, + STATE(216), 1, sym_compound_statement, - STATE(1377), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54700] = 3, + [54937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, + ACTIONS(3636), 1, anon_sym_LBRACK, - ACTIONS(3612), 7, + ACTIONS(3634), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109154,12 +109305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54716] = 3, + [54953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, + ACTIONS(3640), 1, anon_sym_LBRACK, - ACTIONS(3616), 7, + ACTIONS(3638), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109167,43 +109318,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54732] = 8, + [54969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(460), 1, - anon_sym_LBRACE, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3442), 1, + ACTIONS(3542), 1, anon_sym_LBRACK, - STATE(467), 1, - sym_compound_statement, - STATE(1377), 1, - sym_parameter_list, - STATE(1383), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54758] = 3, + STATE(1554), 1, + sym_gnu_asm_output_operand, + STATE(1935), 1, + sym_string_literal, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [54989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3622), 1, + ACTIONS(3530), 1, + anon_sym_LBRACK, + STATE(1633), 1, + sym_gnu_asm_input_operand, + STATE(1923), 1, + sym_string_literal, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3620), 7, + ACTIONS(3642), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [54774] = 3, + anon_sym_LBRACE, + anon_sym_EQ, + [55025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(3648), 1, anon_sym_LBRACK, - ACTIONS(3624), 7, + ACTIONS(3646), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109211,75 +109374,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54790] = 5, + [55041] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3528), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(123), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3466), 1, anon_sym_LBRACK, - STATE(1623), 1, - sym_gnu_asm_input_operand, - STATE(1718), 1, - sym_string_literal, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [54810] = 7, + STATE(139), 1, + sym_compound_statement, + STATE(1382), 1, + sym_parameter_list, + STATE(1385), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55067] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(460), 1, + anon_sym_LBRACE, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - STATE(1377), 1, + STATE(486), 1, + sym_compound_statement, + STATE(1382), 1, sym_parameter_list, - ACTIONS(3628), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54834] = 8, + [55093] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, ACTIONS(39), 1, anon_sym_LBRACE, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3442), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - STATE(514), 1, + STATE(498), 1, sym_compound_statement, - STATE(1377), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [54860] = 3, + [55119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3630), 7, + STATE(1359), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3650), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + [55139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3654), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [55155] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(670), 1, anon_sym_LBRACE, - anon_sym_EQ, - [54876] = 3, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3466), 1, + anon_sym_LBRACK, + STATE(458), 1, + sym_compound_statement, + STATE(1382), 1, + sym_parameter_list, + STATE(1385), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3636), 1, + ACTIONS(3660), 1, anon_sym_LBRACK, - ACTIONS(3634), 7, + ACTIONS(3658), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109287,25 +109487,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54892] = 3, + [55197] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3556), 1, anon_sym_LBRACK, - ACTIONS(3638), 7, + STATE(1472), 1, + sym_parameter_list, + ACTIONS(3662), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [54908] = 3, + STATE(1439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(3666), 1, anon_sym_LBRACK, - ACTIONS(3642), 7, + ACTIONS(3664), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109313,12 +109517,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [54924] = 3, + [55237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3648), 1, + ACTIONS(3670), 1, anon_sym_LBRACK, - ACTIONS(3646), 7, + ACTIONS(3668), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109326,62 +109530,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [54940] = 8, + [55253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(3674), 1, + anon_sym_LBRACK, + ACTIONS(3672), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(652), 1, anon_sym_LBRACE, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3442), 1, - anon_sym_LBRACK, - STATE(464), 1, - sym_compound_statement, - STATE(1377), 1, - sym_parameter_list, - STATE(1383), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [54966] = 5, + anon_sym_EQ, + [55269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, - anon_sym_LBRACK, - STATE(1564), 1, - sym_gnu_asm_output_operand, - STATE(1766), 1, + STATE(1515), 1, sym_string_literal, + ACTIONS(3676), 2, + anon_sym_RPAREN, + anon_sym_COLON, ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [54986] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3534), 1, - anon_sym_LBRACK, - STATE(1461), 1, - sym_parameter_list, - ACTIONS(3650), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1443), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55010] = 3, + [55287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3654), 1, + ACTIONS(3680), 1, anon_sym_LBRACK, - ACTIONS(3652), 7, + ACTIONS(3678), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109389,12 +109570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55026] = 3, + [55303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3684), 1, anon_sym_LBRACK, - ACTIONS(3656), 7, + ACTIONS(3682), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109402,27 +109583,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55042] = 5, + [55319] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3662), 1, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3466), 1, anon_sym_LBRACK, - STATE(1343), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3660), 4, + STATE(1382), 1, + sym_parameter_list, + ACTIONS(3686), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - [55062] = 3, + STATE(1385), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(3690), 1, anon_sym_LBRACK, - ACTIONS(3664), 7, + ACTIONS(3688), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109430,30 +109613,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [55078] = 8, + [55359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(189), 1, - anon_sym_LBRACE, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3442), 1, - anon_sym_LBRACK, - STATE(212), 1, - sym_compound_statement, - STATE(1377), 1, - sym_parameter_list, - STATE(1383), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3670), 1, + ACTIONS(3694), 1, anon_sym_LBRACK, - ACTIONS(3668), 7, + ACTIONS(3692), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109461,44 +109626,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55120] = 7, + [55375] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3428), 1, - anon_sym_LBRACK, - ACTIONS(3672), 1, - anon_sym_RPAREN, - STATE(1444), 1, - sym_parameter_list, - STATE(1388), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [55143] = 7, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(3696), 1, + sym_identifier, + STATE(963), 1, + sym_field_declaration_list, + STATE(1497), 1, + sym_attribute_specifier, + STATE(1565), 1, + sym_ms_declspec_modifier, + [55400] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3534), 1, + ACTIONS(3466), 1, anon_sym_LBRACK, - ACTIONS(3674), 1, + ACTIONS(3698), 1, anon_sym_RPAREN, - STATE(1461), 1, + STATE(1382), 1, sym_parameter_list, - STATE(1443), 2, + STATE(1385), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55166] = 4, + [55423] = 4, ACTIONS(3), 1, sym_comment, - STATE(1369), 1, + STATE(1376), 1, sym_string_literal, - STATE(1550), 1, + STATE(1618), 1, sym_concatenated_string, ACTIONS(91), 5, anon_sym_L_DQUOTE, @@ -109506,12 +109672,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55183] = 4, + [55440] = 7, ACTIONS(3), 1, sym_comment, - STATE(1374), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3556), 1, + anon_sym_LBRACK, + ACTIONS(3700), 1, + anon_sym_RPAREN, + STATE(1472), 1, + sym_parameter_list, + STATE(1439), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [55463] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1380), 1, sym_string_literal, - STATE(1569), 1, + STATE(1560), 1, sym_concatenated_string, ACTIONS(91), 5, anon_sym_L_DQUOTE, @@ -109519,193 +109701,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55200] = 7, + [55480] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3442), 1, + ACTIONS(3452), 1, anon_sym_LBRACK, - ACTIONS(3676), 1, + ACTIONS(3702), 1, anon_sym_RPAREN, - STATE(1377), 1, + STATE(1442), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [55223] = 5, + [55503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3706), 1, + anon_sym_LBRACK, + ACTIONS(3704), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [55517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3680), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - STATE(1483), 1, + STATE(1485), 1, sym_parameter_list, - ACTIONS(3678), 3, + ACTIONS(3708), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [55241] = 3, + [55535] = 3, ACTIONS(3), 1, sym_comment, - STATE(1779), 1, - sym_string_literal, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [55255] = 3, + ACTIONS(3714), 1, + anon_sym_LBRACK, + ACTIONS(3712), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [55549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3684), 1, + ACTIONS(3718), 1, anon_sym_LBRACK, - ACTIONS(3682), 5, + ACTIONS(3716), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [55269] = 4, + [55563] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3710), 1, + anon_sym_LBRACK, + STATE(1485), 1, + sym_parameter_list, + ACTIONS(3720), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [55581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3686), 1, + ACTIONS(3722), 1, anon_sym_LPAREN2, - STATE(1455), 2, + STATE(1464), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3688), 3, + ACTIONS(3724), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [55285] = 5, + [55597] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1808), 1, + sym_string_literal, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3680), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - STATE(1483), 1, + STATE(1485), 1, sym_parameter_list, - ACTIONS(3691), 3, + ACTIONS(3727), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [55303] = 5, + [55629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3729), 1, anon_sym_LPAREN2, - ACTIONS(3680), 1, - anon_sym_LBRACK, - STATE(1483), 1, - sym_parameter_list, - ACTIONS(3693), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55321] = 5, + STATE(1464), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3731), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [55645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3695), 1, - anon_sym_LBRACK, - ACTIONS(3698), 1, - anon_sym_EQ, - ACTIONS(3700), 1, - anon_sym_DOT, - STATE(1458), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [55339] = 5, + STATE(1838), 1, + sym_string_literal, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [55659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3733), 1, anon_sym_LPAREN2, - ACTIONS(3680), 1, + STATE(1467), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3731), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [55675] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3710), 1, anon_sym_LBRACK, - STATE(1483), 1, + STATE(1485), 1, sym_parameter_list, - ACTIONS(3703), 3, + ACTIONS(3735), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [55357] = 3, + [55693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 1, + ACTIONS(3739), 1, anon_sym_LBRACK, - ACTIONS(3705), 5, + ACTIONS(3737), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [55371] = 3, + [55707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3711), 1, + ACTIONS(3743), 1, anon_sym_LBRACK, - ACTIONS(3709), 5, + ACTIONS(3741), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [55385] = 3, + [55721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3715), 1, + ACTIONS(3747), 1, anon_sym_LBRACK, - ACTIONS(3713), 5, + ACTIONS(3745), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [55399] = 3, + [55735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 1, + ACTIONS(3749), 1, anon_sym_LBRACK, - ACTIONS(3717), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [55413] = 3, + ACTIONS(3752), 1, + anon_sym_EQ, + ACTIONS(3754), 1, + anon_sym_DOT, + STATE(1474), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [55753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3723), 1, + ACTIONS(3759), 1, anon_sym_LBRACK, - ACTIONS(3721), 5, + ACTIONS(3757), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [55427] = 5, + [55767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3680), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - STATE(1483), 1, + STATE(1485), 1, sym_parameter_list, - ACTIONS(3725), 3, + ACTIONS(3761), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [55445] = 3, + [55785] = 3, ACTIONS(3), 1, sym_comment, - STATE(1795), 1, + STATE(1628), 1, sym_string_literal, ACTIONS(91), 5, anon_sym_L_DQUOTE, @@ -109713,3574 +109941,3537 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [55459] = 3, + [55799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(3765), 1, anon_sym_LBRACK, - ACTIONS(3727), 5, + ACTIONS(3763), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [55473] = 4, + [55813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3769), 1, + anon_sym_LBRACK, + ACTIONS(3767), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1455), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3733), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [55489] = 5, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [55827] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3448), 1, anon_sym_LPAREN2, - ACTIONS(3680), 1, + ACTIONS(3710), 1, anon_sym_LBRACK, - STATE(1483), 1, + STATE(1485), 1, sym_parameter_list, - ACTIONS(3735), 3, + ACTIONS(3771), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [55507] = 5, + [55845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(1879), 1, anon_sym_LBRACK, - ACTIONS(3737), 1, + ACTIONS(3773), 1, anon_sym_EQ, - ACTIONS(3739), 1, + ACTIONS(3775), 1, anon_sym_DOT, - STATE(1458), 3, + STATE(1474), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [55525] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3741), 1, - anon_sym_LPAREN2, - STATE(1468), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3733), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [55541] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1606), 1, - sym_string_literal, - ACTIONS(91), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [55555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3745), 1, - anon_sym_LBRACK, - ACTIONS(3743), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [55569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3747), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [55583] = 2, + [55863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3751), 5, + ACTIONS(3777), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [55594] = 2, + [55874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3753), 5, + ACTIONS(3433), 1, + anon_sym___attribute__, + ACTIONS(3446), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [55605] = 2, + ACTIONS(3779), 1, + anon_sym_SEMI, + STATE(1500), 1, + aux_sym_field_declaration_repeat1, + STATE(1913), 1, + sym_attribute_specifier, + [55893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3755), 5, + ACTIONS(3433), 1, + anon_sym___attribute__, + ACTIONS(3446), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [55616] = 2, + ACTIONS(3781), 1, + anon_sym_SEMI, + STATE(1529), 1, + aux_sym_field_declaration_repeat1, + STATE(1881), 1, + sym_attribute_specifier, + [55912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3757), 5, + ACTIONS(3783), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [55627] = 6, + [55923] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, + ACTIONS(3433), 1, anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3759), 1, + ACTIONS(3785), 1, anon_sym_SEMI, - STATE(1518), 1, + STATE(1529), 1, aux_sym_field_declaration_repeat1, - STATE(1791), 1, + STATE(1946), 1, sym_attribute_specifier, - [55646] = 2, + [55942] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3761), 5, + ACTIONS(3433), 1, + anon_sym___attribute__, + ACTIONS(3446), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [55657] = 2, + ACTIONS(3787), 1, + anon_sym_SEMI, + STATE(1491), 1, + aux_sym_field_declaration_repeat1, + STATE(1987), 1, + sym_attribute_specifier, + [55961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3763), 5, + ACTIONS(3433), 1, + anon_sym___attribute__, + ACTIONS(3446), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [55668] = 2, + ACTIONS(3789), 1, + anon_sym_SEMI, + STATE(1529), 1, + aux_sym_field_declaration_repeat1, + STATE(1914), 1, + sym_attribute_specifier, + [55980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3765), 5, + ACTIONS(3791), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [55679] = 2, + [55991] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 5, + ACTIONS(3433), 1, + anon_sym___attribute__, + ACTIONS(3446), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [55690] = 6, + ACTIONS(3793), 1, + anon_sym_SEMI, + STATE(1484), 1, + aux_sym_field_declaration_repeat1, + STATE(1949), 1, + sym_attribute_specifier, + [56010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, + ACTIONS(3433), 1, anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3769), 1, + ACTIONS(3795), 1, anon_sym_SEMI, - STATE(1518), 1, + STATE(1529), 1, aux_sym_field_declaration_repeat1, - STATE(1870), 1, + STATE(1972), 1, sym_attribute_specifier, - [55709] = 5, + [56029] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - ACTIONS(3773), 1, + ACTIONS(3799), 1, anon_sym_COLON_COLON, - STATE(1680), 1, + STATE(1669), 1, sym_argument_list, - ACTIONS(3771), 2, + ACTIONS(3797), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [55726] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3409), 1, - anon_sym___attribute__, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3775), 1, - anon_sym_SEMI, - STATE(1518), 1, - aux_sym_field_declaration_repeat1, - STATE(1749), 1, - sym_attribute_specifier, - [55745] = 6, + [56046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, - anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3801), 5, anon_sym_COMMA, - ACTIONS(3777), 1, - anon_sym_SEMI, - STATE(1518), 1, - aux_sym_field_declaration_repeat1, - STATE(1796), 1, - sym_attribute_specifier, - [55764] = 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [56057] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, - anon_sym___attribute__, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3779), 1, - anon_sym_SEMI, - STATE(1518), 1, - aux_sym_field_declaration_repeat1, - STATE(1734), 1, - sym_attribute_specifier, - [55783] = 6, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(3803), 1, + sym_identifier, + STATE(969), 1, + sym_field_declaration_list, + STATE(1616), 1, + sym_ms_declspec_modifier, + [56076] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, + ACTIONS(3433), 1, anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3781), 1, + ACTIONS(3805), 1, anon_sym_SEMI, - STATE(1479), 1, + STATE(1529), 1, aux_sym_field_declaration_repeat1, - STATE(1799), 1, + STATE(1756), 1, sym_attribute_specifier, - [55802] = 2, + [56095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3448), 1, anon_sym_LPAREN2, + ACTIONS(3710), 1, anon_sym_LBRACK, - anon_sym_COLON, - [55813] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3409), 1, - anon_sym___attribute__, - ACTIONS(3422), 1, + STATE(1485), 1, + sym_parameter_list, + ACTIONS(3686), 2, anon_sym_COMMA, - ACTIONS(3785), 1, - anon_sym_SEMI, - STATE(1486), 1, - aux_sym_field_declaration_repeat1, - STATE(1736), 1, - sym_attribute_specifier, - [55832] = 6, + anon_sym_RPAREN, + [56112] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___declspec, ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(3787), 1, + ACTIONS(3807), 1, sym_identifier, - STATE(988), 1, + STATE(926), 1, sym_field_declaration_list, - STATE(1601), 1, + STATE(1553), 1, sym_ms_declspec_modifier, - [55851] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3409), 1, - anon_sym___attribute__, - ACTIONS(3422), 1, - anon_sym_COMMA, - ACTIONS(3789), 1, - anon_sym_SEMI, - STATE(1484), 1, - aux_sym_field_declaration_repeat1, - STATE(1901), 1, - sym_attribute_specifier, - [55870] = 6, + [56131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, - anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3809), 5, anon_sym_COMMA, - ACTIONS(3791), 1, - anon_sym_SEMI, - STATE(1495), 1, - aux_sym_field_declaration_repeat1, - STATE(1930), 1, - sym_attribute_specifier, - [55889] = 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [56142] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, + ACTIONS(3433), 1, anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3793), 1, + ACTIONS(3811), 1, anon_sym_SEMI, - STATE(1518), 1, + STATE(1529), 1, aux_sym_field_declaration_repeat1, - STATE(1949), 1, + STATE(1911), 1, sym_attribute_specifier, - [55908] = 6, + [56161] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, + ACTIONS(3433), 1, anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3795), 1, + ACTIONS(3813), 1, anon_sym_SEMI, - STATE(1518), 1, + STATE(1529), 1, aux_sym_field_declaration_repeat1, - STATE(1935), 1, + STATE(1898), 1, sym_attribute_specifier, - [55927] = 2, + [56180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 5, + ACTIONS(3815), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [55938] = 5, + [56191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3680), 1, - anon_sym_LBRACK, - STATE(1483), 1, - sym_parameter_list, - ACTIONS(3628), 2, + ACTIONS(3817), 5, anon_sym_COMMA, anon_sym_RPAREN, - [55955] = 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [56202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 5, + ACTIONS(3819), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [55966] = 6, + [56213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 1, + ACTIONS(3433), 1, anon_sym___attribute__, - ACTIONS(3422), 1, + ACTIONS(3446), 1, anon_sym_COMMA, - ACTIONS(3801), 1, + ACTIONS(3821), 1, anon_sym_SEMI, - STATE(1518), 1, + STATE(1495), 1, aux_sym_field_declaration_repeat1, - STATE(1897), 1, + STATE(1766), 1, + sym_attribute_specifier, + [56232] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3433), 1, + anon_sym___attribute__, + ACTIONS(3446), 1, + anon_sym_COMMA, + ACTIONS(3823), 1, + anon_sym_SEMI, + STATE(1529), 1, + aux_sym_field_declaration_repeat1, + STATE(1765), 1, sym_attribute_specifier, - [55985] = 2, + [56251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 5, + ACTIONS(3825), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_COLON, - [55996] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(3805), 1, - sym_identifier, - STATE(990), 1, - sym_field_declaration_list, - STATE(1600), 1, - sym_ms_declspec_modifier, - [56015] = 5, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3807), 1, - anon_sym_LF, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3811), 1, - sym_preproc_arg, - STATE(1706), 1, - sym_preproc_params, - [56031] = 5, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_LF, - ACTIONS(3815), 1, - sym_preproc_arg, - STATE(1712), 1, - sym_preproc_params, - [56047] = 5, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3817), 1, - anon_sym_LF, - ACTIONS(3819), 1, - sym_preproc_arg, - STATE(1700), 1, - sym_preproc_params, - [56063] = 5, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3821), 1, - anon_sym_DQUOTE, - ACTIONS(3823), 1, - aux_sym_string_literal_token1, - ACTIONS(3825), 1, - sym_escape_sequence, - STATE(1524), 1, - aux_sym_string_literal_repeat1, - [56079] = 4, + anon_sym_COLON, + [56262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3827), 5, anon_sym_COMMA, - STATE(1513), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3829), 2, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [56093] = 5, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3831), 1, - anon_sym_LF, - ACTIONS(3833), 1, - sym_preproc_arg, - STATE(1697), 1, - sym_preproc_params, - [56109] = 5, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3835), 1, - anon_sym_DQUOTE, - ACTIONS(3837), 1, - aux_sym_string_literal_token1, - ACTIONS(3839), 1, - sym_escape_sequence, - STATE(1530), 1, - aux_sym_string_literal_repeat1, - [56125] = 4, + [56273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3841), 1, + ACTIONS(3829), 5, anon_sym_COMMA, - STATE(1517), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3843), 2, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_COLON, - [56139] = 5, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3837), 1, - aux_sym_string_literal_token1, - ACTIONS(3839), 1, - sym_escape_sequence, - ACTIONS(3845), 1, - anon_sym_DQUOTE, - STATE(1530), 1, - aux_sym_string_literal_repeat1, - [56155] = 2, + [56284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 4, + ACTIONS(3831), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [56165] = 4, + anon_sym_LBRACK, + anon_sym_COLON, + [56295] = 5, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(3833), 1, + anon_sym_LF, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3837), 1, + sym_preproc_arg, + STATE(1699), 1, + sym_preproc_params, + [56311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, + ACTIONS(3839), 1, anon_sym_COMMA, STATE(1521), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3849), 2, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(3841), 2, anon_sym_RPAREN, anon_sym_COLON, - [56179] = 5, + [56325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, - anon_sym_LPAREN2, - ACTIONS(3680), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(3843), 1, + anon_sym_COMMA, + STATE(1530), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(3845), 2, anon_sym_RPAREN, - STATE(1483), 1, - sym_parameter_list, - [56195] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + [56339] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(2264), 1, - anon_sym_LPAREN2, - STATE(1692), 1, - sym_argument_list, - ACTIONS(3853), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [56209] = 4, + ACTIONS(3847), 1, + anon_sym_DQUOTE, + ACTIONS(3849), 1, + aux_sym_string_literal_token1, + ACTIONS(3852), 1, + sym_escape_sequence, + STATE(1513), 1, + aux_sym_string_literal_repeat1, + [56355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(3843), 1, anon_sym_COMMA, - STATE(1529), 1, + STATE(1512), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3857), 2, + ACTIONS(3855), 2, anon_sym_RPAREN, anon_sym_COLON, - [56223] = 4, + [56369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3857), 1, anon_sym_COMMA, - STATE(1517), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3862), 2, + STATE(1525), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3859), 2, anon_sym_RPAREN, anon_sym_COLON, - [56237] = 4, + [56383] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3864), 1, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + STATE(1718), 1, + sym_argument_list, + ACTIONS(3861), 2, anon_sym_COMMA, - STATE(1518), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(3867), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [56251] = 5, - ACTIONS(3223), 1, + anon_sym_RBRACK_RBRACK, + [56397] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3869), 1, - anon_sym_LF, - ACTIONS(3871), 1, - sym_preproc_arg, - STATE(1691), 1, - sym_preproc_params, - [56267] = 5, + ACTIONS(3863), 1, + anon_sym_DQUOTE, + ACTIONS(3865), 1, + aux_sym_string_literal_token1, + ACTIONS(3867), 1, + sym_escape_sequence, + STATE(1513), 1, + aux_sym_string_literal_repeat1, + [56413] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3873), 1, + ACTIONS(3869), 1, sym_identifier, - ACTIONS(3875), 1, + ACTIONS(3871), 1, anon_sym_COMMA, - ACTIONS(3877), 1, + ACTIONS(3873), 1, anon_sym_RBRACE, - STATE(1556), 1, + STATE(1542), 1, sym_enumerator, - [56283] = 4, - ACTIONS(3), 1, + [56429] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3879), 1, - anon_sym_COMMA, - STATE(1521), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3882), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [56297] = 5, - ACTIONS(3223), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3875), 1, + anon_sym_LF, + ACTIONS(3877), 1, + sym_preproc_arg, + STATE(1698), 1, + sym_preproc_params, + [56445] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3884), 1, + ACTIONS(3879), 1, anon_sym_LF, - ACTIONS(3886), 1, + ACTIONS(3881), 1, sym_preproc_arg, - STATE(1656), 1, + STATE(1653), 1, sym_preproc_params, - [56313] = 4, + [56461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(3883), 1, anon_sym_COMMA, - STATE(1516), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3888), 2, + STATE(1521), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(3886), 2, anon_sym_RPAREN, anon_sym_COLON, - [56327] = 5, - ACTIONS(3223), 1, + [56475] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3837), 1, + ACTIONS(3888), 1, + anon_sym_DQUOTE, + ACTIONS(3890), 1, aux_sym_string_literal_token1, - ACTIONS(3839), 1, + ACTIONS(3892), 1, sym_escape_sequence, - ACTIONS(3890), 1, - anon_sym_DQUOTE, - STATE(1530), 1, + STATE(1539), 1, aux_sym_string_literal_repeat1, - [56343] = 5, - ACTIONS(3223), 1, + [56491] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3892), 1, - anon_sym_LF, ACTIONS(3894), 1, + anon_sym_LF, + ACTIONS(3896), 1, sym_preproc_arg, - STATE(1668), 1, + STATE(1720), 1, sym_preproc_params, - [56359] = 5, - ACTIONS(3223), 1, + [56507] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3896), 1, - anon_sym_LF, ACTIONS(3898), 1, + anon_sym_LF, + ACTIONS(3900), 1, sym_preproc_arg, - STATE(1684), 1, + STATE(1714), 1, sym_preproc_params, - [56375] = 4, + [56523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3841), 1, + ACTIONS(3857), 1, anon_sym_COMMA, - STATE(1510), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3900), 2, + STATE(1536), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3902), 2, anon_sym_RPAREN, anon_sym_COLON, - [56389] = 5, - ACTIONS(3223), 1, + [56537] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_DQUOTE, + ACTIONS(3835), 1, + anon_sym_LPAREN, ACTIONS(3904), 1, - aux_sym_string_literal_token1, + anon_sym_LF, ACTIONS(3906), 1, - sym_escape_sequence, - STATE(1509), 1, - aux_sym_string_literal_repeat1, - [56405] = 4, - ACTIONS(3), 1, + sym_preproc_arg, + STATE(1708), 1, + sym_preproc_params, + [56553] = 5, + ACTIONS(3233), 1, sym_comment, + ACTIONS(3835), 1, + anon_sym_LPAREN, ACTIONS(3908), 1, + anon_sym_LF, + ACTIONS(3910), 1, + sym_preproc_arg, + STATE(1654), 1, + sym_preproc_params, + [56569] = 5, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3912), 1, + anon_sym_LF, + ACTIONS(3914), 1, + sym_preproc_arg, + STATE(1645), 1, + sym_preproc_params, + [56585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3916), 1, anon_sym_COMMA, STATE(1529), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(3919), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [56599] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3921), 1, + anon_sym_COMMA, + STATE(1530), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3911), 2, + ACTIONS(3924), 2, anon_sym_RPAREN, anon_sym_COLON, - [56419] = 5, - ACTIONS(3223), 1, + [56613] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3913), 1, + ACTIONS(3926), 1, anon_sym_DQUOTE, - ACTIONS(3915), 1, + ACTIONS(3928), 1, aux_sym_string_literal_token1, - ACTIONS(3918), 1, + ACTIONS(3930), 1, sym_escape_sequence, - STATE(1530), 1, + STATE(1534), 1, aux_sym_string_literal_repeat1, - [56435] = 5, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - ACTIONS(3921), 1, - anon_sym_LF, - ACTIONS(3923), 1, - sym_preproc_arg, - STATE(1659), 1, - sym_preproc_params, - [56451] = 5, - ACTIONS(3223), 1, + [56629] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3925), 1, + ACTIONS(3932), 1, anon_sym_DQUOTE, - ACTIONS(3927), 1, + ACTIONS(3934), 1, aux_sym_string_literal_token1, - ACTIONS(3929), 1, + ACTIONS(3936), 1, sym_escape_sequence, - STATE(1511), 1, + STATE(1517), 1, aux_sym_string_literal_repeat1, - [56467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3931), 1, - anon_sym_COMMA, - ACTIONS(3933), 1, - anon_sym_RBRACK_RBRACK, - STATE(1566), 1, - aux_sym_attribute_declaration_repeat1, - [56480] = 4, + [56645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_COMMA, - ACTIONS(3935), 1, - anon_sym_SEMI, - STATE(1578), 1, - aux_sym_declaration_repeat1, - [56493] = 4, - ACTIONS(3), 1, + ACTIONS(3448), 1, + anon_sym_LPAREN2, + ACTIONS(3710), 1, + anon_sym_LBRACK, + ACTIONS(3938), 1, + anon_sym_RPAREN, + STATE(1485), 1, + sym_parameter_list, + [56661] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_COMMA, - ACTIONS(3937), 1, - anon_sym_SEMI, - STATE(1578), 1, - aux_sym_declaration_repeat1, - [56506] = 4, + ACTIONS(3865), 1, + aux_sym_string_literal_token1, + ACTIONS(3867), 1, + sym_escape_sequence, + ACTIONS(3940), 1, + anon_sym_DQUOTE, + STATE(1513), 1, + aux_sym_string_literal_repeat1, + [56677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, + ACTIONS(3839), 1, anon_sym_COMMA, - ACTIONS(2849), 1, + STATE(1511), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(3942), 2, anon_sym_RPAREN, - STATE(1580), 1, - aux_sym_argument_list_repeat1, - [56519] = 4, + anon_sym_COLON, + [56691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3939), 1, + ACTIONS(3944), 1, anon_sym_COMMA, - ACTIONS(3941), 1, + STATE(1536), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3947), 2, anon_sym_RPAREN, - STATE(1586), 1, - aux_sym_preproc_params_repeat1, - [56532] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + [56705] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3943), 1, - anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [56545] = 4, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3949), 1, + anon_sym_LF, + ACTIONS(3951), 1, + sym_preproc_arg, + STATE(1667), 1, + sym_preproc_params, + [56721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, - anon_sym_RBRACE, - ACTIONS(3945), 1, - anon_sym_COMMA, - STATE(1551), 1, - aux_sym_initializer_list_repeat1, - [56558] = 4, - ACTIONS(3), 1, + ACTIONS(3953), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [56731] = 5, + ACTIONS(3233), 1, sym_comment, - ACTIONS(2847), 1, - anon_sym_COMMA, - ACTIONS(2876), 1, - anon_sym_RPAREN, - STATE(1553), 1, - aux_sym_argument_list_repeat1, - [56571] = 4, + ACTIONS(3865), 1, + aux_sym_string_literal_token1, + ACTIONS(3867), 1, + sym_escape_sequence, + ACTIONS(3955), 1, + anon_sym_DQUOTE, + STATE(1513), 1, + aux_sym_string_literal_repeat1, + [56747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3947), 1, + ACTIONS(3957), 1, anon_sym_SEMI, - STATE(1578), 1, - aux_sym_declaration_repeat1, - [56584] = 4, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [56760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(3949), 1, + ACTIONS(3959), 1, anon_sym_SEMI, STATE(1578), 1, aux_sym_declaration_repeat1, - [56597] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3951), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [56606] = 4, + [56773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2904), 1, - anon_sym_RPAREN, - ACTIONS(3953), 1, + ACTIONS(3961), 1, anon_sym_COMMA, - STATE(1544), 1, - aux_sym_argument_list_repeat1, - [56619] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 1, - anon_sym_RPAREN, - ACTIONS(3958), 1, - anon_sym_COLON, - STATE(1763), 1, - sym_gnu_asm_goto_list, - [56632] = 2, + ACTIONS(3963), 1, + anon_sym_RBRACE, + STATE(1574), 1, + aux_sym_enumerator_list_repeat1, + [56786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3960), 3, + ACTIONS(3967), 1, + anon_sym_EQ, + ACTIONS(3965), 2, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [56641] = 4, + anon_sym_RBRACE, + [56797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3962), 1, + ACTIONS(3969), 1, anon_sym_SEMI, - STATE(1578), 1, - aux_sym_declaration_repeat1, - [56654] = 4, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [56810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(3971), 1, anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_RPAREN, - STATE(1597), 1, - aux_sym_parameter_list_repeat1, - [56667] = 4, + ACTIONS(3973), 1, + anon_sym_RBRACK_RBRACK, + STATE(1547), 1, + aux_sym_attribute_declaration_repeat1, + [56823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(2869), 1, anon_sym_COMMA, - ACTIONS(3968), 1, - anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [56680] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3480), 1, - anon_sym_RPAREN, - ACTIONS(3482), 1, - anon_sym_COLON, - STATE(1568), 1, - sym_gnu_asm_output_operand_list, - [56693] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 1, + ACTIONS(2871), 1, anon_sym_RBRACE, - ACTIONS(3970), 1, - anon_sym_COMMA, - STATE(1551), 1, + STATE(1623), 1, aux_sym_initializer_list_repeat1, - [56706] = 4, + [56836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3971), 1, anon_sym_COMMA, - ACTIONS(3973), 1, - anon_sym_SEMI, - STATE(1578), 1, - aux_sym_declaration_repeat1, - [56719] = 4, + ACTIONS(3975), 1, + anon_sym_RBRACK_RBRACK, + STATE(1620), 1, + aux_sym_attribute_declaration_repeat1, + [56849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, + ACTIONS(3977), 1, anon_sym_COMMA, - ACTIONS(3975), 1, + ACTIONS(3979), 1, anon_sym_RPAREN, - STATE(1544), 1, - aux_sym_argument_list_repeat1, - [56732] = 4, + STATE(1549), 1, + aux_sym_parameter_list_repeat1, + [56862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, - anon_sym_COMMA, ACTIONS(3977), 1, + anon_sym_COMMA, + ACTIONS(3981), 1, anon_sym_RPAREN, - STATE(1576), 1, - aux_sym_preproc_argument_list_repeat1, - [56745] = 4, - ACTIONS(3221), 1, - anon_sym_LPAREN2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3979), 1, - anon_sym_LF, - STATE(1295), 1, - sym_preproc_argument_list, - [56758] = 4, + STATE(1635), 1, + aux_sym_parameter_list_repeat1, + [56875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 1, + ACTIONS(3983), 3, anon_sym_COMMA, - ACTIONS(3983), 1, - anon_sym_RBRACE, - STATE(1567), 1, - aux_sym_enumerator_list_repeat1, - [56771] = 3, + anon_sym_SEMI, + anon_sym___attribute__, + [56884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 1, - anon_sym_EQ, - ACTIONS(3985), 2, - anon_sym_COMMA, + ACTIONS(3057), 1, anon_sym_RBRACE, - [56782] = 4, + ACTIONS(3985), 1, + anon_sym_COMMA, + STATE(1551), 1, + aux_sym_initializer_list_repeat1, + [56897] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 1, + ACTIONS(3988), 1, anon_sym_COMMA, - ACTIONS(3989), 1, - anon_sym_RBRACK_RBRACK, - STATE(1566), 1, - aux_sym_attribute_declaration_repeat1, - [56795] = 4, + ACTIONS(3990), 1, + anon_sym_RPAREN, + STATE(1559), 1, + aux_sym_preproc_params_repeat1, + [56910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(3991), 1, - anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [56808] = 4, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(3992), 1, + sym_identifier, + STATE(994), 1, + sym_field_declaration_list, + [56923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3994), 3, anon_sym_COMMA, - ACTIONS(3993), 1, - anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [56821] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [56932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3995), 1, + ACTIONS(3996), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1561), 1, aux_sym_type_definition_repeat2, - [56834] = 4, + [56945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3997), 1, - anon_sym_COMMA, + ACTIONS(2880), 1, + anon_sym_LBRACE, + ACTIONS(3998), 1, + sym_identifier, + STATE(1188), 1, + sym_enumerator_list, + [56958] = 4, + ACTIONS(3231), 1, + anon_sym_LPAREN2, + ACTIONS(3233), 1, + sym_comment, ACTIONS(4000), 1, - anon_sym_RPAREN, - STATE(1562), 1, - aux_sym_parameter_list_repeat1, - [56847] = 4, + anon_sym_LF, + STATE(1332), 1, + sym_preproc_argument_list, + [56971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(4002), 1, - anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [56860] = 2, + ACTIONS(4002), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [56980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 3, + ACTIONS(3988), 1, anon_sym_COMMA, + ACTIONS(4004), 1, anon_sym_RPAREN, + STATE(1636), 1, + aux_sym_preproc_params_repeat1, + [56993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3506), 1, anon_sym_COLON, - [56869] = 4, + ACTIONS(3514), 1, + anon_sym_RPAREN, + STATE(1627), 1, + sym_gnu_asm_output_operand_list, + [57006] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 1, - anon_sym_COMMA, ACTIONS(4006), 1, - anon_sym_RBRACK_RBRACK, - STATE(1533), 1, - aux_sym_attribute_declaration_repeat1, - [56882] = 4, + anon_sym_COMMA, + ACTIONS(4009), 1, + anon_sym_SEMI, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [57019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4008), 1, + ACTIONS(3201), 1, anon_sym_COMMA, ACTIONS(4011), 1, - anon_sym_RBRACK_RBRACK, - STATE(1566), 1, - aux_sym_attribute_declaration_repeat1, - [56895] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + STATE(1637), 1, + aux_sym_preproc_argument_list_repeat1, + [57032] = 4, + ACTIONS(3231), 1, + anon_sym_LPAREN2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4013), 1, + anon_sym_LF, + STATE(1332), 1, + sym_preproc_argument_list, + [57045] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3568), 1, anon_sym_COMMA, ACTIONS(4015), 1, - anon_sym_RBRACE, - STATE(1627), 1, - aux_sym_enumerator_list_repeat1, - [56908] = 4, + anon_sym_SEMI, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [57058] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(2598), 1, + anon_sym_LBRACE, ACTIONS(4017), 1, - anon_sym_RPAREN, - ACTIONS(4019), 1, - anon_sym_COLON, - STATE(1634), 1, - sym_gnu_asm_input_operand_list, - [56921] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 1, - anon_sym_COLON, - ACTIONS(3492), 1, - anon_sym_RPAREN, - STATE(1635), 1, - sym_gnu_asm_output_operand_list, - [56934] = 4, + sym_identifier, + STATE(926), 1, + sym_field_declaration_list, + [57071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(4021), 1, + ACTIONS(4019), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1561), 1, aux_sym_type_definition_repeat2, - [56947] = 4, + [57084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_COMMA, + ACTIONS(4021), 1, + anon_sym_RPAREN, ACTIONS(4023), 1, - anon_sym_SEMI, - STATE(1547), 1, - aux_sym_declaration_repeat1, - [56960] = 4, + anon_sym_COLON, + STATE(1608), 1, + sym_gnu_asm_clobber_list, + [57097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, - anon_sym_COMMA, + ACTIONS(3869), 1, + sym_identifier, ACTIONS(4025), 1, - anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [56973] = 4, + anon_sym_RBRACE, + STATE(1697), 1, + sym_enumerator, + [57110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(2851), 1, anon_sym_COMMA, ACTIONS(4027), 1, - anon_sym_SEMI, - STATE(1585), 1, - aux_sym_declaration_repeat1, - [56986] = 4, - ACTIONS(3221), 1, - anon_sym_LPAREN2, - ACTIONS(3223), 1, + anon_sym_RPAREN, + STATE(1640), 1, + aux_sym_argument_list_repeat1, + [57123] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(3568), 1, + anon_sym_COMMA, ACTIONS(4029), 1, - anon_sym_LF, - STATE(1295), 1, - sym_preproc_argument_list, - [56999] = 4, + anon_sym_SEMI, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [57136] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4031), 1, - anon_sym_COMMA, - ACTIONS(4034), 1, anon_sym_RPAREN, - STATE(1575), 1, - aux_sym_preproc_params_repeat1, - [57012] = 4, + ACTIONS(4033), 1, + anon_sym_COLON, + STATE(1848), 1, + sym_gnu_asm_goto_list, + [57149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3337), 1, - anon_sym_RPAREN, - ACTIONS(4036), 1, - anon_sym_COMMA, - STATE(1576), 1, - aux_sym_preproc_argument_list_repeat1, - [57025] = 4, + ACTIONS(2880), 1, + anon_sym_LBRACE, + ACTIONS(4035), 1, + sym_identifier, + STATE(1220), 1, + sym_enumerator_list, + [57162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(2855), 1, anon_sym_COMMA, - ACTIONS(4039), 1, - anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [57038] = 4, + ACTIONS(4037), 1, + anon_sym_RPAREN, + STATE(1631), 1, + aux_sym_generic_expression_repeat1, + [57175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4041), 1, + ACTIONS(4025), 1, + anon_sym_RBRACE, + ACTIONS(4039), 1, anon_sym_COMMA, - ACTIONS(4044), 1, - anon_sym_SEMI, - STATE(1578), 1, - aux_sym_declaration_repeat1, - [57051] = 4, + STATE(1580), 1, + aux_sym_enumerator_list_repeat1, + [57188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(4046), 1, + ACTIONS(4041), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1561), 1, aux_sym_type_definition_repeat2, - [57064] = 4, + [57201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 1, - anon_sym_COMMA, - ACTIONS(4048), 1, + ACTIONS(4023), 1, + anon_sym_COLON, + ACTIONS(4043), 1, anon_sym_RPAREN, - STATE(1544), 1, - aux_sym_argument_list_repeat1, - [57077] = 4, + STATE(1571), 1, + sym_gnu_asm_clobber_list, + [57214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 1, - anon_sym_COMMA, - ACTIONS(4050), 1, + ACTIONS(4045), 1, anon_sym_RPAREN, - STATE(1576), 1, - aux_sym_preproc_argument_list_repeat1, - [57090] = 4, + ACTIONS(4047), 1, + anon_sym_COLON, + STATE(1567), 1, + sym_gnu_asm_input_operand_list, + [57227] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(4049), 1, + anon_sym_COMMA, ACTIONS(4052), 1, - anon_sym_RPAREN, - ACTIONS(4054), 1, - anon_sym_COLON, - STATE(1636), 1, - sym_gnu_asm_clobber_list, - [57103] = 3, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [57240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4058), 1, - anon_sym_RPAREN, - ACTIONS(4056), 2, - anon_sym_DOT_DOT_DOT, + ACTIONS(3869), 1, sym_identifier, - [57114] = 4, + ACTIONS(4054), 1, + anon_sym_RBRACE, + STATE(1697), 1, + sym_enumerator, + [57253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(4056), 1, anon_sym_COMMA, - ACTIONS(4060), 1, - anon_sym_SEMI, - STATE(1578), 1, - aux_sym_declaration_repeat1, - [57127] = 4, + ACTIONS(4059), 1, + anon_sym_RBRACE, + STATE(1580), 1, + aux_sym_enumerator_list_repeat1, + [57266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, - ACTIONS(4062), 1, + ACTIONS(4061), 1, anon_sym_SEMI, - STATE(1578), 1, + STATE(1541), 1, aux_sym_declaration_repeat1, - [57140] = 4, + [57279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3939), 1, + ACTIONS(4063), 1, anon_sym_COMMA, - ACTIONS(4064), 1, + ACTIONS(4065), 1, anon_sym_RPAREN, - STATE(1575), 1, - aux_sym_preproc_params_repeat1, - [57153] = 4, + STATE(1625), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [57292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(4067), 1, + anon_sym_SEMI, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [57305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(2880), 1, anon_sym_LBRACE, - ACTIONS(4066), 1, + ACTIONS(4069), 1, sym_identifier, - STATE(1214), 1, + STATE(1220), 1, sym_enumerator_list, - [57166] = 4, + [57318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3971), 1, anon_sym_COMMA, - ACTIONS(4068), 1, - anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [57179] = 4, + ACTIONS(4071), 1, + anon_sym_RBRACK_RBRACK, + STATE(1594), 1, + aux_sym_attribute_declaration_repeat1, + [57331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4070), 1, + ACTIONS(2851), 1, anon_sym_COMMA, - ACTIONS(4072), 1, + ACTIONS(2890), 1, anon_sym_RPAREN, - STATE(1592), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [57192] = 2, + STATE(1569), 1, + aux_sym_argument_list_repeat1, + [57344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4074), 3, + ACTIONS(3462), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57201] = 2, + ACTIONS(4073), 1, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [57357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4076), 3, + ACTIONS(3462), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57210] = 4, + ACTIONS(4075), 1, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [57370] = 4, + ACTIONS(3231), 1, + anon_sym_LPAREN2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4077), 1, + anon_sym_LF, + STATE(1332), 1, + sym_preproc_argument_list, + [57383] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(4079), 1, + anon_sym_SEMI, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [57396] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3568), 1, anon_sym_COMMA, ACTIONS(4081), 1, - anon_sym_RPAREN, - STATE(1592), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [57223] = 4, + anon_sym_SEMI, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [57409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3462), 1, anon_sym_COMMA, ACTIONS(4083), 1, anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [57236] = 4, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [57422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3462), 1, anon_sym_COMMA, ACTIONS(4085), 1, anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [57249] = 4, + STATE(1622), 1, + aux_sym_declaration_repeat1, + [57435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3971), 1, anon_sym_COMMA, ACTIONS(4087), 1, - anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [57262] = 4, + anon_sym_RBRACK_RBRACK, + STATE(1620), 1, + aux_sym_attribute_declaration_repeat1, + [57448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3462), 1, anon_sym_COMMA, ACTIONS(4089), 1, anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [57275] = 4, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [57461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(3462), 1, anon_sym_COMMA, ACTIONS(4091), 1, - anon_sym_RPAREN, - STATE(1562), 1, - aux_sym_parameter_list_repeat1, - [57288] = 4, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [57474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3201), 1, anon_sym_COMMA, ACTIONS(4093), 1, - anon_sym_SEMI, - STATE(1535), 1, - aux_sym_declaration_repeat1, - [57301] = 2, + anon_sym_RPAREN, + STATE(1637), 1, + aux_sym_preproc_argument_list_repeat1, + [57487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [57310] = 4, + ACTIONS(3462), 1, + anon_sym_COMMA, + ACTIONS(4095), 1, + anon_sym_SEMI, + STATE(1595), 1, + aux_sym_declaration_repeat1, + [57500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2598), 1, - anon_sym_LBRACE, + ACTIONS(3568), 1, + anon_sym_COMMA, ACTIONS(4097), 1, - sym_identifier, - STATE(991), 1, - sym_field_declaration_list, - [57323] = 4, + anon_sym_SEMI, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [57513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2598), 1, - anon_sym_LBRACE, + ACTIONS(2851), 1, + anon_sym_COMMA, ACTIONS(4099), 1, - sym_identifier, - STATE(956), 1, - sym_field_declaration_list, - [57336] = 4, + anon_sym_RPAREN, + STATE(1640), 1, + aux_sym_argument_list_repeat1, + [57526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 1, + ACTIONS(3568), 1, anon_sym_COMMA, ACTIONS(4101), 1, - anon_sym_RBRACK_RBRACK, - STATE(1558), 1, - aux_sym_attribute_declaration_repeat1, - [57349] = 4, + anon_sym_SEMI, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [57539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3568), 1, anon_sym_COMMA, ACTIONS(4103), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1561), 1, aux_sym_type_definition_repeat2, - [57362] = 4, + [57552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(2851), 1, anon_sym_COMMA, + ACTIONS(2853), 1, + anon_sym_RPAREN, + STATE(1600), 1, + aux_sym_argument_list_repeat1, + [57565] = 4, + ACTIONS(3231), 1, + anon_sym_LPAREN2, + ACTIONS(3233), 1, + sym_comment, ACTIONS(4105), 1, - anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [57375] = 4, + anon_sym_LF, + STATE(1332), 1, + sym_preproc_argument_list, + [57578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, ACTIONS(4107), 1, anon_sym_SEMI, - STATE(1541), 1, + STATE(1578), 1, aux_sym_declaration_repeat1, - [57388] = 2, + [57591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4109), 3, + ACTIONS(3462), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57397] = 4, + ACTIONS(4109), 1, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [57604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3568), 1, anon_sym_COMMA, ACTIONS(4111), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1561), 1, aux_sym_type_definition_repeat2, - [57410] = 4, + [57617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 1, - anon_sym_COMMA, - ACTIONS(2853), 1, - anon_sym_RBRACE, - STATE(1539), 1, - aux_sym_initializer_list_repeat1, - [57423] = 4, + ACTIONS(4033), 1, + anon_sym_COLON, + ACTIONS(4113), 1, + anon_sym_RPAREN, + STATE(1824), 1, + sym_gnu_asm_goto_list, + [57630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(4113), 1, + ACTIONS(4115), 1, anon_sym_SEMI, - STATE(1578), 1, - aux_sym_declaration_repeat1, - [57436] = 4, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [57643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(4115), 1, + ACTIONS(4117), 1, anon_sym_SEMI, - STATE(1578), 1, - aux_sym_declaration_repeat1, - [57449] = 2, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [57656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 3, + ACTIONS(4119), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [57458] = 4, - ACTIONS(3221), 1, - anon_sym_LPAREN2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4119), 1, - anon_sym_LF, - STATE(1295), 1, - sym_preproc_argument_list, - [57471] = 4, + [57665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 1, + ACTIONS(3971), 1, anon_sym_COMMA, ACTIONS(4121), 1, anon_sym_RBRACK_RBRACK, - STATE(1566), 1, + STATE(1620), 1, aux_sym_attribute_declaration_repeat1, - [57484] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4123), 1, - anon_sym_COMMA, - ACTIONS(4126), 1, - anon_sym_RPAREN, - STATE(1614), 1, - aux_sym_generic_expression_repeat1, - [57497] = 4, + [57678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4128), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(4131), 1, + ACTIONS(4123), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1561), 1, aux_sym_type_definition_repeat2, - [57510] = 4, + [57691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(4133), 1, + ACTIONS(4125), 1, anon_sym_SEMI, - STATE(1615), 1, + STATE(1561), 1, aux_sym_type_definition_repeat2, - [57523] = 4, + [57704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, - anon_sym_COMMA, - ACTIONS(4135), 1, - anon_sym_SEMI, - STATE(1615), 1, - aux_sym_type_definition_repeat2, - [57536] = 4, + ACTIONS(4129), 1, + anon_sym_RPAREN, + ACTIONS(4127), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [57715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3873), 1, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(4131), 1, sym_identifier, - ACTIONS(4015), 1, - anon_sym_RBRACE, - STATE(1648), 1, - sym_enumerator, - [57549] = 4, + STATE(931), 1, + sym_field_declaration_list, + [57728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4070), 1, + ACTIONS(4133), 3, anon_sym_COMMA, - ACTIONS(4137), 1, anon_sym_RPAREN, - STATE(1589), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [57562] = 4, + anon_sym_COLON, + [57737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3504), 1, + anon_sym_RPAREN, + ACTIONS(3506), 1, + anon_sym_COLON, + STATE(1577), 1, + sym_gnu_asm_output_operand_list, + [57750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(4139), 1, + ACTIONS(4135), 1, anon_sym_SEMI, - STATE(1624), 1, - aux_sym_declaration_repeat1, - [57575] = 4, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [57763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3931), 1, + ACTIONS(4137), 1, anon_sym_COMMA, - ACTIONS(4141), 1, + ACTIONS(4140), 1, anon_sym_RBRACK_RBRACK, - STATE(1613), 1, + STATE(1620), 1, aux_sym_attribute_declaration_repeat1, - [57588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3438), 1, - anon_sym_COMMA, - ACTIONS(4143), 1, - anon_sym_SEMI, - STATE(1578), 1, - aux_sym_declaration_repeat1, - [57601] = 2, + [57776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4145), 3, + ACTIONS(4142), 1, anon_sym_COMMA, + ACTIONS(4145), 1, anon_sym_RPAREN, - anon_sym_COLON, - [57610] = 4, + STATE(1621), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [57789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, + ACTIONS(3462), 1, anon_sym_COMMA, ACTIONS(4147), 1, anon_sym_SEMI, STATE(1578), 1, aux_sym_declaration_repeat1, - [57623] = 4, + [57802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3873), 1, - sym_identifier, - ACTIONS(4149), 1, + ACTIONS(1885), 1, anon_sym_RBRACE, - STATE(1648), 1, - sym_enumerator, - [57636] = 2, + ACTIONS(4149), 1, + anon_sym_COMMA, + STATE(1551), 1, + aux_sym_initializer_list_repeat1, + [57815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4151), 3, + ACTIONS(3462), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [57645] = 4, + ACTIONS(4151), 1, + anon_sym_SEMI, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [57828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4153), 1, + ACTIONS(4063), 1, anon_sym_COMMA, - ACTIONS(4156), 1, - anon_sym_RBRACE, - STATE(1627), 1, - aux_sym_enumerator_list_repeat1, - [57658] = 4, + ACTIONS(4153), 1, + anon_sym_RPAREN, + STATE(1621), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [57841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_COMMA, - ACTIONS(4158), 1, - anon_sym_SEMI, - STATE(1609), 1, - aux_sym_declaration_repeat1, - [57671] = 4, - ACTIONS(3221), 1, - anon_sym_LPAREN2, - ACTIONS(3223), 1, + ACTIONS(4155), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [57850] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 1, - anon_sym_LF, - STATE(1295), 1, - sym_preproc_argument_list, - [57684] = 4, + ACTIONS(4047), 1, + anon_sym_COLON, + ACTIONS(4157), 1, + anon_sym_RPAREN, + STATE(1576), 1, + sym_gnu_asm_input_operand_list, + [57863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 1, + ACTIONS(4159), 3, anon_sym_COMMA, - ACTIONS(4162), 1, anon_sym_RPAREN, - STATE(1614), 1, - aux_sym_generic_expression_repeat1, - [57697] = 4, + anon_sym_COLON, + [57872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, - anon_sym_LBRACE, - ACTIONS(4164), 1, - sym_identifier, - STATE(1197), 1, - sym_enumerator_list, - [57710] = 4, - ACTIONS(3221), 1, + ACTIONS(4161), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [57881] = 4, + ACTIONS(3231), 1, anon_sym_LPAREN2, - ACTIONS(3223), 1, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4163), 1, anon_sym_LF, - STATE(1295), 1, + STATE(1332), 1, sym_preproc_argument_list, - [57723] = 4, + [57894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, - anon_sym_LBRACE, + ACTIONS(4165), 1, + anon_sym_COMMA, ACTIONS(4168), 1, - sym_identifier, - STATE(1214), 1, - sym_enumerator_list, - [57736] = 4, + anon_sym_RPAREN, + STATE(1631), 1, + aux_sym_generic_expression_repeat1, + [57907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4054), 1, - anon_sym_COLON, + ACTIONS(3462), 1, + anon_sym_COMMA, ACTIONS(4170), 1, - anon_sym_RPAREN, - STATE(1545), 1, - sym_gnu_asm_clobber_list, - [57749] = 4, + anon_sym_SEMI, + STATE(1605), 1, + aux_sym_declaration_repeat1, + [57920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_COLON, - ACTIONS(4172), 1, + ACTIONS(4172), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1582), 1, - sym_gnu_asm_input_operand_list, - [57762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3958), 1, anon_sym_COLON, - ACTIONS(4174), 1, - anon_sym_RPAREN, - STATE(1789), 1, - sym_gnu_asm_goto_list, - [57775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4176), 1, - anon_sym_LPAREN2, - STATE(330), 1, - sym_parenthesized_expression, - [57785] = 2, + [57929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4178), 2, + ACTIONS(4174), 3, anon_sym_COMMA, anon_sym_RPAREN, - [57793] = 3, + anon_sym_COLON, + [57938] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4176), 1, - anon_sym_LPAREN2, - STATE(270), 1, - sym_parenthesized_expression, - [57803] = 3, + anon_sym_COMMA, + ACTIONS(4179), 1, + anon_sym_RPAREN, + STATE(1635), 1, + aux_sym_parameter_list_repeat1, + [57951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, - anon_sym_LPAREN2, - STATE(328), 1, - sym_parenthesized_expression, - [57813] = 2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4180), 2, - anon_sym_LF, - sym_preproc_arg, - [57821] = 3, + ACTIONS(4181), 1, + anon_sym_COMMA, + ACTIONS(4184), 1, + anon_sym_RPAREN, + STATE(1636), 1, + aux_sym_preproc_params_repeat1, + [57964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - sym_identifier, - STATE(1621), 1, - sym_attribute, - [57831] = 3, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4184), 1, - anon_sym_LF, + ACTIONS(3337), 1, + anon_sym_RPAREN, ACTIONS(4186), 1, - sym_preproc_arg, - [57841] = 3, + anon_sym_COMMA, + STATE(1637), 1, + aux_sym_preproc_argument_list_repeat1, + [57977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, - anon_sym_LPAREN2, - STATE(269), 1, - sym_parenthesized_expression, - [57851] = 3, + ACTIONS(3462), 1, + anon_sym_COMMA, + ACTIONS(4189), 1, + anon_sym_SEMI, + STATE(1642), 1, + aux_sym_declaration_repeat1, + [57990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 1, - anon_sym_LPAREN2, - STATE(1652), 1, - sym_parenthesized_expression, - [57861] = 2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4190), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [57869] = 2, + ACTIONS(3971), 1, + anon_sym_COMMA, + ACTIONS(4191), 1, + anon_sym_RBRACK_RBRACK, + STATE(1612), 1, + aux_sym_attribute_declaration_repeat1, + [58003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2904), 2, - anon_sym_COMMA, + ACTIONS(2910), 1, anon_sym_RPAREN, - [57877] = 2, + ACTIONS(4193), 1, + anon_sym_COMMA, + STATE(1640), 1, + aux_sym_argument_list_repeat1, + [58016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 2, + ACTIONS(3462), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [57885] = 3, + ACTIONS(4196), 1, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [58029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4192), 1, - sym_identifier, - ACTIONS(4194), 1, - anon_sym_RPAREN, - [57895] = 3, + ACTIONS(3462), 1, + anon_sym_COMMA, + ACTIONS(4198), 1, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [58042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(652), 1, - anon_sym_LBRACE, - STATE(259), 1, - sym_compound_statement, - [57905] = 2, + ACTIONS(3462), 1, + anon_sym_COMMA, + ACTIONS(4200), 1, + anon_sym_SEMI, + STATE(1578), 1, + aux_sym_declaration_repeat1, + [58055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4196), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [57913] = 3, - ACTIONS(3), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(4202), 1, + anon_sym_SEMI, + STATE(1561), 1, + aux_sym_type_definition_repeat2, + [58068] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(123), 1, - anon_sym_LBRACE, - STATE(104), 1, - sym_compound_statement, - [57923] = 2, + ACTIONS(4204), 1, + anon_sym_LF, + ACTIONS(4206), 1, + sym_preproc_arg, + [58078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 2, + ACTIONS(4140), 2, anon_sym_COMMA, - anon_sym_SEMI, - [57931] = 2, + anon_sym_RBRACK_RBRACK, + [58086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4034), 2, + ACTIONS(2910), 2, anon_sym_COMMA, anon_sym_RPAREN, - [57939] = 2, - ACTIONS(3223), 1, + [58094] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4198), 2, + ACTIONS(4208), 1, anon_sym_LF, + ACTIONS(4210), 1, sym_preproc_arg, - [57947] = 3, - ACTIONS(3223), 1, + [58104] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4200), 1, + ACTIONS(460), 1, + anon_sym_LBRACE, + STATE(336), 1, + sym_compound_statement, + [58114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4184), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58122] = 2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4212), 2, anon_sym_LF, - ACTIONS(4202), 1, sym_preproc_arg, - [57957] = 2, + [58130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 2, + ACTIONS(4179), 2, anon_sym_COMMA, - anon_sym_SEMI, - [57965] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [58138] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4188), 1, - anon_sym_LPAREN2, - STATE(1888), 1, - sym_parenthesized_expression, - [57975] = 3, - ACTIONS(3223), 1, + ACTIONS(4214), 1, + anon_sym_LF, + ACTIONS(4216), 1, + sym_preproc_arg, + [58148] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4204), 1, + ACTIONS(4218), 1, anon_sym_LF, - ACTIONS(4206), 1, + ACTIONS(4220), 1, sym_preproc_arg, - [57985] = 3, + [58158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(3869), 1, sym_identifier, - ACTIONS(4210), 1, - anon_sym_LPAREN2, - [57995] = 2, - ACTIONS(3), 1, + STATE(1697), 1, + sym_enumerator, + [58168] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4000), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [58003] = 3, - ACTIONS(3), 1, + ACTIONS(4222), 1, + anon_sym_LF, + ACTIONS(4224), 1, + sym_preproc_arg, + [58178] = 2, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4188), 1, - anon_sym_LPAREN2, - STATE(1933), 1, - sym_parenthesized_expression, - [58013] = 3, + ACTIONS(4226), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [58186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(189), 1, + ACTIONS(670), 1, anon_sym_LBRACE, - STATE(173), 1, + STATE(259), 1, sym_compound_statement, - [58023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4011), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [58031] = 3, + [58196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(460), 1, - anon_sym_LBRACE, - STATE(345), 1, - sym_compound_statement, - [58041] = 2, + ACTIONS(4228), 1, + sym_identifier, + STATE(1545), 1, + sym_attribute, + [58206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 2, - anon_sym_RPAREN, + ACTIONS(3574), 2, + anon_sym_COMMA, anon_sym_SEMI, - [58049] = 3, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4212), 1, - anon_sym_LF, - ACTIONS(4214), 1, - sym_preproc_arg, - [58059] = 3, - ACTIONS(3223), 1, + [58214] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 1, - anon_sym_LF, - ACTIONS(4218), 1, - sym_preproc_arg, - [58069] = 3, - ACTIONS(3223), 1, + ACTIONS(4230), 1, + anon_sym_LPAREN2, + STATE(310), 1, + sym_parenthesized_expression, + [58224] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4220), 1, - anon_sym_LF, - ACTIONS(4222), 1, - sym_preproc_arg, - [58079] = 3, + ACTIONS(4230), 1, + anon_sym_LPAREN2, + STATE(308), 1, + sym_parenthesized_expression, + [58234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, + ACTIONS(4232), 1, anon_sym_LPAREN2, - STATE(326), 1, + STATE(1826), 1, sym_parenthesized_expression, - [58089] = 3, + [58244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 1, + ACTIONS(4232), 1, anon_sym_LPAREN2, - STATE(1663), 1, + STATE(1837), 1, sym_parenthesized_expression, - [58099] = 3, + [58254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, + ACTIONS(4232), 1, anon_sym_LPAREN2, - STATE(325), 1, + STATE(1658), 1, sym_parenthesized_expression, - [58109] = 2, + [58264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 2, + ACTIONS(3057), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [58117] = 2, - ACTIONS(3223), 1, + anon_sym_RBRACE, + [58272] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4226), 2, + ACTIONS(4234), 1, anon_sym_LF, + ACTIONS(4236), 1, sym_preproc_arg, - [58125] = 2, + [58282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 2, + ACTIONS(3027), 2, anon_sym_COMMA, anon_sym_RBRACE, - [58133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4188), 1, - anon_sym_LPAREN2, - STATE(1810), 1, - sym_parenthesized_expression, - [58143] = 3, + [58290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 1, - anon_sym_LPAREN2, - STATE(1831), 1, - sym_parenthesized_expression, - [58153] = 3, + ACTIONS(4238), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [58298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 1, + ACTIONS(4230), 1, anon_sym_LPAREN2, - STATE(1650), 1, + STATE(367), 1, sym_parenthesized_expression, - [58163] = 3, + [58308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(4228), 1, sym_identifier, - STATE(1664), 1, + STATE(1646), 1, sym_attribute, - [58173] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4228), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [58181] = 2, + [58318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [58189] = 3, + ACTIONS(4232), 1, + anon_sym_LPAREN2, + STATE(1819), 1, + sym_parenthesized_expression, + [58328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 1, + ACTIONS(4240), 1, + sym_identifier, + ACTIONS(4242), 1, anon_sym_LPAREN2, - STATE(1744), 1, - sym_parenthesized_expression, - [58199] = 3, - ACTIONS(3223), 1, + [58338] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4230), 1, + ACTIONS(4244), 1, anon_sym_LF, - ACTIONS(4232), 1, + ACTIONS(4246), 1, sym_preproc_arg, - [58209] = 3, - ACTIONS(3223), 1, + [58348] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - anon_sym_LF, - ACTIONS(4236), 1, - sym_preproc_arg, - [58219] = 3, + ACTIONS(4230), 1, + anon_sym_LPAREN2, + STATE(222), 1, + sym_parenthesized_expression, + [58358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, + ACTIONS(4232), 1, anon_sym_LPAREN2, - STATE(1876), 1, - sym_argument_list, - [58229] = 3, + STATE(1717), 1, + sym_parenthesized_expression, + [58368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym_LBRACE, - STATE(255), 1, - sym_compound_statement, - [58239] = 3, + ACTIONS(4230), 1, + anon_sym_LPAREN2, + STATE(401), 1, + sym_parenthesized_expression, + [58378] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2264), 1, anon_sym_LPAREN2, - STATE(1905), 1, + STATE(1750), 1, sym_argument_list, - [58249] = 3, + [58388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 1, - sym_identifier, - ACTIONS(4240), 1, - anon_sym_LPAREN2, - [58259] = 2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4242), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [58267] = 3, + ACTIONS(3061), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [58396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3873), 1, + ACTIONS(4248), 1, sym_identifier, - STATE(1648), 1, - sym_enumerator, - [58277] = 3, - ACTIONS(3223), 1, + ACTIONS(4250), 1, + anon_sym_RPAREN, + [58406] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4244), 1, + ACTIONS(4252), 1, anon_sym_LF, - ACTIONS(4246), 1, + ACTIONS(4254), 1, sym_preproc_arg, - [58287] = 2, + [58416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4248), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [58295] = 3, - ACTIONS(3223), 1, + ACTIONS(4230), 1, + anon_sym_LPAREN2, + STATE(337), 1, + sym_parenthesized_expression, + [58426] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 1, - anon_sym_LF, - ACTIONS(4252), 1, - sym_preproc_arg, - [58305] = 3, + ACTIONS(4230), 1, + anon_sym_LPAREN2, + STATE(339), 1, + sym_parenthesized_expression, + [58436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, + ACTIONS(4232), 1, anon_sym_LPAREN2, - STATE(440), 1, + STATE(1688), 1, sym_parenthesized_expression, - [58315] = 3, + [58446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, + ACTIONS(4232), 1, anon_sym_LPAREN2, - STATE(384), 1, + STATE(1784), 1, sym_parenthesized_expression, - [58325] = 3, - ACTIONS(3223), 1, + [58456] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 1, - anon_sym_LF, - ACTIONS(4256), 1, - sym_preproc_arg, - [58335] = 3, - ACTIONS(3223), 1, + ACTIONS(123), 1, + anon_sym_LBRACE, + STATE(125), 1, + sym_compound_statement, + [58466] = 2, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4258), 1, + ACTIONS(4256), 2, anon_sym_LF, - ACTIONS(4260), 1, sym_preproc_arg, - [58345] = 3, + [58474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 1, - anon_sym_LPAREN2, - STATE(1686), 1, - sym_parenthesized_expression, - [58355] = 2, - ACTIONS(3223), 1, + ACTIONS(39), 1, + anon_sym_LBRACE, + STATE(256), 1, + sym_compound_statement, + [58484] = 2, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4262), 2, + ACTIONS(4258), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [58363] = 3, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4264), 1, - anon_sym_LF, - ACTIONS(4266), 1, - sym_preproc_arg, - [58373] = 3, + [58492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, + ACTIONS(4230), 1, anon_sym_LPAREN2, - STATE(332), 1, + STATE(370), 1, sym_parenthesized_expression, - [58383] = 3, - ACTIONS(3223), 1, + [58502] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4268), 1, + ACTIONS(4260), 1, anon_sym_LF, - ACTIONS(4270), 1, + ACTIONS(4262), 1, sym_preproc_arg, - [58393] = 3, + [58512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, + ACTIONS(4232), 1, anon_sym_LPAREN2, - STATE(387), 1, + STATE(1686), 1, sym_parenthesized_expression, - [58403] = 3, + [58522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, - sym_identifier, - STATE(1602), 1, - sym_attribute, - [58413] = 3, + ACTIONS(4230), 1, + anon_sym_LPAREN2, + STATE(369), 1, + sym_parenthesized_expression, + [58532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4188), 1, + ACTIONS(4230), 1, anon_sym_LPAREN2, - STATE(1665), 1, + STATE(368), 1, sym_parenthesized_expression, - [58423] = 3, - ACTIONS(3223), 1, + [58542] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, - anon_sym_LF, - ACTIONS(4274), 1, - sym_preproc_arg, - [58433] = 3, + ACTIONS(4228), 1, + sym_identifier, + STATE(1585), 1, + sym_attribute, + [58552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, - anon_sym_LPAREN2, - STATE(331), 1, - sym_parenthesized_expression, - [58443] = 3, - ACTIONS(3223), 1, + ACTIONS(4264), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58560] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4059), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [58568] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4276), 1, + ACTIONS(4266), 1, anon_sym_LF, - ACTIONS(4278), 1, + ACTIONS(4268), 1, sym_preproc_arg, - [58453] = 3, - ACTIONS(3223), 1, + [58578] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4280), 1, + ACTIONS(4270), 1, anon_sym_LF, - ACTIONS(4282), 1, + ACTIONS(4272), 1, sym_preproc_arg, - [58463] = 3, + [58588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4274), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [58596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(4276), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(1565), 1, - sym_attribute, - [58473] = 3, + [58604] = 2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4278), 2, + anon_sym_LF, + sym_preproc_arg, + [58612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 1, + ACTIONS(4280), 1, + sym_identifier, + ACTIONS(4282), 1, anon_sym_LPAREN2, - STATE(438), 1, - sym_parenthesized_expression, - [58483] = 3, - ACTIONS(3223), 1, + [58622] = 3, + ACTIONS(3233), 1, sym_comment, ACTIONS(4284), 1, anon_sym_LF, ACTIONS(4286), 1, sym_preproc_arg, - [58493] = 2, + [58632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 1, - aux_sym_preproc_if_token2, - [58500] = 2, + ACTIONS(4228), 1, + sym_identifier, + STATE(1639), 1, + sym_attribute, + [58642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 1, - anon_sym_RPAREN, - [58507] = 2, + ACTIONS(4230), 1, + anon_sym_LPAREN2, + STATE(302), 1, + sym_parenthesized_expression, + [58652] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4232), 1, + anon_sym_LPAREN2, + STATE(1649), 1, + sym_parenthesized_expression, + [58662] = 3, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4288), 1, + anon_sym_LF, ACTIONS(4290), 1, - sym_identifier, - [58514] = 2, - ACTIONS(3), 1, + sym_preproc_arg, + [58672] = 3, + ACTIONS(3233), 1, sym_comment, ACTIONS(4292), 1, - sym_identifier, - [58521] = 2, - ACTIONS(3223), 1, - sym_comment, + anon_sym_LF, ACTIONS(4294), 1, + sym_preproc_arg, + [58682] = 3, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4296), 1, anon_sym_LF, - [58528] = 2, + ACTIONS(4298), 1, + sym_preproc_arg, + [58692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4230), 1, anon_sym_LPAREN2, - [58535] = 2, - ACTIONS(3223), 1, + STATE(303), 1, + sym_parenthesized_expression, + [58702] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, - anon_sym_LF, - [58542] = 2, - ACTIONS(3223), 1, + ACTIONS(4232), 1, + anon_sym_LPAREN2, + STATE(1954), 1, + sym_parenthesized_expression, + [58712] = 2, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4300), 1, - anon_sym_LF, - [58549] = 2, - ACTIONS(3223), 1, + ACTIONS(4300), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [58720] = 3, + ACTIONS(3233), 1, sym_comment, ACTIONS(4302), 1, anon_sym_LF, - [58556] = 2, - ACTIONS(3223), 1, - sym_comment, ACTIONS(4304), 1, - anon_sym_LF, - [58563] = 2, - ACTIONS(3223), 1, + sym_preproc_arg, + [58730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2898), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [58738] = 3, + ACTIONS(3233), 1, sym_comment, ACTIONS(4306), 1, anon_sym_LF, - [58570] = 2, - ACTIONS(3), 1, - sym_comment, ACTIONS(4308), 1, - sym_identifier, - [58577] = 2, - ACTIONS(3223), 1, + sym_preproc_arg, + [58748] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 1, - anon_sym_LF, - [58584] = 2, + ACTIONS(189), 1, + anon_sym_LBRACE, + STATE(179), 1, + sym_compound_statement, + [58758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4312), 1, - sym_identifier, - [58591] = 2, + ACTIONS(4310), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [58766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - sym_identifier, - [58598] = 2, - ACTIONS(3223), 1, + ACTIONS(2264), 1, + anon_sym_LPAREN2, + STATE(1892), 1, + sym_argument_list, + [58776] = 3, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4312), 1, anon_sym_LF, - [58605] = 2, + ACTIONS(4314), 1, + sym_preproc_arg, + [58786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_RBRACK, - [58612] = 2, + ACTIONS(3011), 1, + anon_sym_SEMI, + [58793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, + ACTIONS(2954), 1, anon_sym_RPAREN, - [58619] = 2, + [58800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_RPAREN, - [58626] = 2, + ACTIONS(4316), 1, + aux_sym_preproc_if_token2, + [58807] = 2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4077), 1, + anon_sym_LF, + [58814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 1, - anon_sym_RPAREN, - [58633] = 2, - ACTIONS(3223), 1, + ACTIONS(4318), 1, + aux_sym_preproc_if_token2, + [58821] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4320), 1, anon_sym_LF, - [58640] = 2, - ACTIONS(3), 1, + [58828] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4322), 1, - anon_sym_SEMI, - [58647] = 2, - ACTIONS(3), 1, + anon_sym_LF, + [58835] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4324), 1, - aux_sym_preproc_if_token2, - [58654] = 2, - ACTIONS(3), 1, + anon_sym_LF, + [58842] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4326), 1, - anon_sym_SEMI, - [58661] = 2, - ACTIONS(3), 1, + anon_sym_LF, + [58849] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4328), 1, - aux_sym_preproc_if_token2, - [58668] = 2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4330), 1, anon_sym_LF, - [58675] = 2, + [58856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 1, + ACTIONS(4330), 1, aux_sym_preproc_if_token2, - [58682] = 2, - ACTIONS(3223), 1, + [58863] = 2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4332), 1, + anon_sym_LF, + [58870] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4334), 1, anon_sym_LF, - [58689] = 2, - ACTIONS(3223), 1, + [58877] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4336), 1, anon_sym_LF, - [58696] = 2, + [58884] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4338), 1, - anon_sym_COLON, - [58703] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [58891] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4340), 1, - aux_sym_preproc_if_token2, - [58710] = 2, - ACTIONS(3), 1, + anon_sym_LF, + [58898] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4342), 1, - anon_sym_SEMI, - [58717] = 2, - ACTIONS(3), 1, + anon_sym_LF, + [58905] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4344), 1, - aux_sym_preproc_if_token2, - [58724] = 2, + anon_sym_LF, + [58912] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4346), 1, - aux_sym_preproc_if_token2, - [58731] = 2, + sym_identifier, + [58919] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4348), 1, - aux_sym_preproc_if_token2, - [58738] = 2, - ACTIONS(3223), 1, + sym_identifier, + [58926] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4350), 1, anon_sym_LF, - [58745] = 2, + [58933] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4352), 1, anon_sym_SEMI, - [58752] = 2, + [58940] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4354), 1, sym_identifier, - [58759] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_RPAREN, - [58766] = 2, + [58947] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4356), 1, - aux_sym_preproc_if_token2, - [58773] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [58954] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4358), 1, - aux_sym_preproc_if_token2, - [58780] = 2, + anon_sym_LF, + [58961] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(2982), 1, + anon_sym_SEMI, + [58968] = 2, + ACTIONS(3233), 1, + sym_comment, ACTIONS(4360), 1, - sym_identifier, - [58787] = 2, + anon_sym_LF, + [58975] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4362), 1, - aux_sym_preproc_if_token2, - [58794] = 2, - ACTIONS(3223), 1, + anon_sym_SEMI, + [58982] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4364), 1, - anon_sym_LF, - [58801] = 2, + anon_sym_SEMI, + [58989] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4366), 1, - anon_sym_RPAREN, - [58808] = 2, + anon_sym_STAR, + [58996] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4368), 1, - anon_sym_RPAREN, - [58815] = 2, + aux_sym_preproc_if_token2, + [59003] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4370), 1, - anon_sym_SEMI, - [58822] = 2, + anon_sym_COLON, + [59010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_SEMI, - [58829] = 2, + ACTIONS(2952), 1, + anon_sym_RPAREN, + [59017] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4372), 1, - anon_sym_RBRACK, - [58836] = 2, + anon_sym_RPAREN, + [59024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 1, - anon_sym_SEMI, - [58843] = 2, + ACTIONS(2950), 1, + anon_sym_RPAREN, + [59031] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4374), 1, + anon_sym_SEMI, + [59038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 1, + aux_sym_preproc_if_token2, + [59045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2908), 1, anon_sym_RPAREN, - [58850] = 2, + [59052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, - anon_sym_SEMI, - [58857] = 2, - ACTIONS(3223), 1, + ACTIONS(2918), 1, + anon_sym_RPAREN, + [59059] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 1, - anon_sym_LF, - [58864] = 2, + ACTIONS(2932), 1, + anon_sym_RPAREN, + [59066] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4378), 1, - anon_sym_LPAREN2, - [58871] = 2, + sym_identifier, + [59073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 1, - anon_sym_SEMI, - [58878] = 2, + ACTIONS(2871), 1, + anon_sym_RBRACE, + [59080] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4380), 1, - aux_sym_preproc_if_token2, - [58885] = 2, + sym_identifier, + [59087] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4382), 1, sym_identifier, - [58892] = 2, + [59094] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4384), 1, - anon_sym_COLON, - [58899] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2937), 1, - anon_sym_RPAREN, - [58906] = 2, + anon_sym_SEMI, + [59101] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4386), 1, - anon_sym_RPAREN, - [58913] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, anon_sym_SEMI, - [58920] = 2, + [59108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, + ACTIONS(4388), 1, anon_sym_RPAREN, - [58927] = 2, + [59115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 1, - anon_sym_RPAREN, - [58934] = 2, + ACTIONS(4390), 1, + aux_sym_preproc_if_token2, + [59122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, - anon_sym_RPAREN, - [58941] = 2, - ACTIONS(3223), 1, + ACTIONS(4392), 1, + aux_sym_preproc_if_token2, + [59129] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2940), 1, + anon_sym_RPAREN, + [59136] = 2, + ACTIONS(2256), 1, anon_sym_LF, - [58948] = 2, + ACTIONS(3233), 1, + sym_comment, + [59143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 1, + ACTIONS(2942), 1, anon_sym_SEMI, - [58955] = 2, + [59150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 1, - anon_sym_LPAREN2, - [58962] = 2, + ACTIONS(4394), 1, + aux_sym_preproc_if_token2, + [59157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 1, - anon_sym_RPAREN, - [58969] = 2, + ACTIONS(4396), 1, + sym_identifier, + [59164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4390), 1, + ACTIONS(2956), 1, anon_sym_SEMI, - [58976] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2880), 1, - anon_sym_RPAREN, - [58983] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 1, - aux_sym_preproc_if_token2, - [58990] = 2, + [59171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 1, + ACTIONS(2944), 1, anon_sym_RPAREN, - [58997] = 2, + [59178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(4398), 1, anon_sym_SEMI, - [59004] = 2, + [59185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(2948), 1, anon_sym_SEMI, - [59011] = 2, + [59192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(2958), 1, anon_sym_RPAREN, - [59018] = 2, + [59199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, - anon_sym_COLON, - [59025] = 2, + ACTIONS(4400), 1, + aux_sym_preproc_if_token2, + [59206] = 2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4402), 1, + anon_sym_LF, + [59213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4400), 1, + ACTIONS(2974), 1, anon_sym_RPAREN, - [59032] = 2, + [59220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(4404), 1, aux_sym_preproc_if_token2, - [59039] = 2, + [59227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 1, + ACTIONS(4406), 1, anon_sym_SEMI, - [59046] = 2, + [59234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 1, + ACTIONS(4408), 1, aux_sym_preproc_if_token2, - [59053] = 2, + [59241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 1, - anon_sym_COLON, - [59060] = 2, + ACTIONS(3015), 1, + anon_sym_SEMI, + [59248] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4410), 1, - sym_identifier, - [59067] = 2, + anon_sym_SEMI, + [59255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3019), 1, + anon_sym_RPAREN, + [59262] = 2, + ACTIONS(2252), 1, + anon_sym_LF, + ACTIONS(3233), 1, + sym_comment, + [59269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_RPAREN, + [59276] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4412), 1, - anon_sym_LPAREN2, - [59074] = 2, + aux_sym_preproc_if_token2, + [59283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, + ACTIONS(3035), 1, + anon_sym_RPAREN, + [59290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, anon_sym_SEMI, - [59081] = 2, + [59297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 1, - sym_identifier, - [59088] = 2, + ACTIONS(4414), 1, + anon_sym_SEMI, + [59304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 1, - anon_sym_RBRACE, - [59095] = 2, + ACTIONS(3059), 1, + anon_sym_RPAREN, + [59311] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(4416), 1, + aux_sym_preproc_if_token2, + [59318] = 2, + ACTIONS(3233), 1, + sym_comment, ACTIONS(4418), 1, - anon_sym_SEMI, - [59102] = 2, + anon_sym_LF, + [59325] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4420), 1, - aux_sym_preproc_if_token2, - [59109] = 2, + anon_sym_RPAREN, + [59332] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4422), 1, aux_sym_preproc_if_token2, - [59116] = 2, + [59339] = 2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4000), 1, + anon_sym_LF, + [59346] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4424), 1, - anon_sym_SEMI, - [59123] = 2, + anon_sym_STAR, + [59353] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4426), 1, - sym_identifier, - [59130] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [59360] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4428), 1, - aux_sym_preproc_if_token2, - [59137] = 2, + anon_sym_LF, + [59367] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4430), 1, sym_identifier, - [59144] = 2, + [59374] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4432), 1, - sym_identifier, - [59151] = 2, + aux_sym_preproc_if_token2, + [59381] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4434), 1, - anon_sym_RPAREN, - [59158] = 2, + anon_sym_SQUOTE, + [59388] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4436), 1, - aux_sym_preproc_if_token2, - [59165] = 2, + anon_sym_RPAREN, + [59395] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4438), 1, - aux_sym_preproc_if_token2, - [59172] = 2, + anon_sym_LPAREN2, + [59402] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4440), 1, - anon_sym_SEMI, - [59179] = 2, + sym_identifier, + [59409] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4442), 1, anon_sym_SEMI, - [59186] = 2, + [59416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 1, - aux_sym_preproc_if_token2, - [59193] = 2, - ACTIONS(2252), 1, - anon_sym_LF, - ACTIONS(3223), 1, + ACTIONS(4444), 1, + anon_sym_COLON, + [59423] = 2, + ACTIONS(3), 1, sym_comment, - [59200] = 2, + ACTIONS(2972), 1, + anon_sym_SEMI, + [59430] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4446), 1, sym_identifier, - [59207] = 2, - ACTIONS(2256), 1, - anon_sym_LF, - ACTIONS(3223), 1, - sym_comment, - [59214] = 2, + [59437] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4448), 1, - aux_sym_preproc_if_token2, - [59221] = 2, + sym_identifier, + [59444] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4450), 1, - anon_sym_SEMI, - [59228] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [59451] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4452), 1, - anon_sym_RPAREN, - [59235] = 2, + anon_sym_LF, + [59458] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4454), 1, - anon_sym_COLON, - [59242] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [59465] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4456), 1, - anon_sym_SEMI, - [59249] = 2, + anon_sym_LF, + [59472] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4458), 1, anon_sym_SEMI, - [59256] = 2, + [59479] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4460), 1, aux_sym_preproc_if_token2, - [59263] = 2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4029), 1, - anon_sym_LF, - [59270] = 2, + [59486] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4462), 1, - sym_identifier, - [59277] = 2, - ACTIONS(3223), 1, + anon_sym_COLON, + [59493] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4464), 1, - anon_sym_LF, - [59284] = 2, + sym_identifier, + [59500] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4466), 1, - anon_sym_SEMI, - [59291] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2892), 1, - anon_sym_SEMI, - [59298] = 2, + aux_sym_preproc_if_token2, + [59507] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4468), 1, - sym_identifier, - [59305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2947), 1, - anon_sym_SEMI, - [59312] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 1, - anon_sym_SEMI, - [59319] = 2, + anon_sym_RPAREN, + [59514] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4470), 1, - anon_sym_SEMI, - [59326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 1, - anon_sym_SEMI, - [59333] = 2, + aux_sym_preproc_if_token2, + [59521] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4472), 1, - anon_sym_STAR, - [59340] = 2, + anon_sym_SEMI, + [59528] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4474), 1, anon_sym_SEMI, - [59347] = 2, + [59535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(2992), 1, anon_sym_SEMI, - [59354] = 2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4476), 1, - anon_sym_LF, - [59361] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4478), 1, - aux_sym_preproc_if_token2, - [59368] = 2, + [59542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(4476), 1, anon_sym_RPAREN, - [59375] = 2, - ACTIONS(3), 1, + [59549] = 2, + ACTIONS(3233), 1, sym_comment, - ACTIONS(2886), 1, - anon_sym_RPAREN, - [59382] = 2, + ACTIONS(4478), 1, + anon_sym_LF, + [59556] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4480), 1, - anon_sym_RPAREN, - [59389] = 2, + anon_sym_while, + [59563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 1, - anon_sym_RPAREN, - [59396] = 2, + ACTIONS(4482), 1, + sym_identifier, + [59570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2961), 1, - anon_sym_SEMI, - [59403] = 2, - ACTIONS(3), 1, + ACTIONS(4484), 1, + aux_sym_preproc_if_token2, + [59577] = 2, + ACTIONS(3233), 1, sym_comment, - ACTIONS(2989), 1, - anon_sym_SEMI, - [59410] = 2, + ACTIONS(4105), 1, + anon_sym_LF, + [59584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3003), 1, + ACTIONS(4486), 1, anon_sym_SEMI, - [59417] = 2, + [59591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 1, + ACTIONS(4488), 1, anon_sym_SEMI, - [59424] = 2, + [59598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 1, + ACTIONS(4490), 1, anon_sym_SEMI, - [59431] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2908), 1, - anon_sym_RPAREN, - [59438] = 2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4484), 1, - anon_sym_LF, - [59445] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_RPAREN, - [59452] = 2, + [59605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, - anon_sym_SQUOTE, - [59459] = 2, + ACTIONS(4492), 1, + anon_sym_LPAREN2, + [59612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, - anon_sym_RPAREN, - [59466] = 2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(3979), 1, - anon_sym_LF, - [59473] = 2, + ACTIONS(4494), 1, + anon_sym_COLON, + [59619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 1, + ACTIONS(3033), 1, anon_sym_SEMI, - [59480] = 2, - ACTIONS(3223), 1, + [59626] = 2, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4490), 1, + ACTIONS(4013), 1, anon_sym_LF, - [59487] = 2, + [59633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 1, + ACTIONS(3047), 1, anon_sym_SEMI, - [59494] = 2, + [59640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 1, - sym_identifier, - [59501] = 2, + ACTIONS(3025), 1, + anon_sym_SEMI, + [59647] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4496), 1, - sym_identifier, - [59508] = 2, - ACTIONS(3223), 1, + anon_sym_SEMI, + [59654] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4498), 1, - anon_sym_LF, - [59515] = 2, + aux_sym_preproc_if_token2, + [59661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3017), 1, + anon_sym_RPAREN, + [59668] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4500), 1, - anon_sym_COLON, - [59522] = 2, + anon_sym_SEMI, + [59675] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4502), 1, - aux_sym_preproc_if_token2, - [59529] = 2, + anon_sym_RPAREN, + [59682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, - sym_primitive_type, - [59536] = 2, + ACTIONS(3005), 1, + anon_sym_RPAREN, + [59689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3009), 1, - anon_sym_RPAREN, - [59543] = 2, + ACTIONS(4504), 1, + aux_sym_preproc_if_token2, + [59696] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4506), 1, sym_identifier, - [59550] = 2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4160), 1, - anon_sym_LF, - [59557] = 2, + [59703] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4508), 1, - aux_sym_preproc_if_token2, - [59564] = 2, + anon_sym_SQUOTE, + [59710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 1, + ACTIONS(2980), 1, anon_sym_SEMI, - [59571] = 2, + [59717] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4510), 1, anon_sym_RPAREN, - [59578] = 2, - ACTIONS(3223), 1, + [59724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2976), 1, + anon_sym_RPAREN, + [59731] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4512), 1, - anon_sym_LF, - [59585] = 2, - ACTIONS(3223), 1, + anon_sym_RBRACK, + [59738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2966), 1, + anon_sym_RPAREN, + [59745] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4514), 1, - anon_sym_LF, - [59592] = 2, + anon_sym_RPAREN, + [59752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_RPAREN, + [59759] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4516), 1, - anon_sym_SEMI, - [59599] = 2, + aux_sym_preproc_if_token2, + [59766] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4518), 1, - sym_identifier, - [59606] = 2, - ACTIONS(3), 1, + anon_sym_COMMA, + [59773] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4520), 1, - aux_sym_preproc_if_token2, - [59613] = 2, + anon_sym_LF, + [59780] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4522), 1, anon_sym_RPAREN, - [59620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2965), 1, - anon_sym_RPAREN, - [59627] = 2, + [59787] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4524), 1, - aux_sym_preproc_if_token2, - [59634] = 2, + sym_identifier, + [59794] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4526), 1, - anon_sym_STAR, - [59641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4528), 1, - anon_sym_RPAREN, - [59648] = 2, + sym_identifier, + [59801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, - anon_sym_RPAREN, - [59655] = 2, + ACTIONS(3045), 1, + anon_sym_SEMI, + [59808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 1, + ACTIONS(4528), 1, aux_sym_preproc_if_token2, - [59662] = 2, + [59815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_RPAREN, - [59669] = 2, + ACTIONS(4530), 1, + ts_builtin_sym_end, + [59822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 1, + ACTIONS(2926), 1, anon_sym_RPAREN, - [59676] = 2, + [59829] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4532), 1, - anon_sym_SEMI, - [59683] = 2, + anon_sym_COLON, + [59836] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4534), 1, - anon_sym_COMMA, - [59690] = 2, + sym_identifier, + [59843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 1, - anon_sym_RPAREN, - [59697] = 2, + ACTIONS(2924), 1, + anon_sym_SEMI, + [59850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, - anon_sym_RPAREN, - [59704] = 2, + ACTIONS(4536), 1, + sym_identifier, + [59857] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4538), 1, anon_sym_STAR, - [59711] = 2, + [59864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, + ACTIONS(2960), 1, anon_sym_RPAREN, - [59718] = 2, + [59871] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4540), 1, - anon_sym_SEMI, - [59725] = 2, + sym_primitive_type, + [59878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, - anon_sym_RPAREN, - [59732] = 2, + ACTIONS(3963), 1, + anon_sym_RBRACE, + [59885] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4542), 1, - sym_identifier, - [59739] = 2, + anon_sym_RPAREN, + [59892] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4544), 1, - sym_primitive_type, - [59746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 1, - anon_sym_RPAREN, - [59753] = 2, + sym_identifier, + [59899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3023), 1, - anon_sym_RPAREN, - [59760] = 2, + ACTIONS(2902), 1, + anon_sym_SEMI, + [59906] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4546), 1, - sym_identifier, - [59767] = 2, + anon_sym_SEMI, + [59913] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4548), 1, - sym_identifier, - [59774] = 2, + anon_sym_RPAREN, + [59920] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4550), 1, - aux_sym_preproc_if_token2, - [59781] = 2, + anon_sym_COLON, + [59927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2990), 1, + anon_sym_RPAREN, + [59934] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4552), 1, - anon_sym_SEMI, - [59788] = 2, + sym_identifier, + [59941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3983), 1, - anon_sym_RBRACE, - [59795] = 2, + ACTIONS(3003), 1, + anon_sym_RPAREN, + [59948] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4554), 1, sym_identifier, - [59802] = 2, + [59955] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4556), 1, + anon_sym_COLON, + [59962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3009), 1, anon_sym_RPAREN, - [59809] = 2, + [59969] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4558), 1, - anon_sym_SEMI, - [59816] = 2, + aux_sym_preproc_if_token2, + [59976] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4560), 1, - aux_sym_preproc_if_token2, - [59823] = 2, + sym_identifier, + [59983] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4562), 1, - aux_sym_preproc_if_token2, - [59830] = 2, + anon_sym_RPAREN, + [59990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3049), 1, + anon_sym_RPAREN, + [59997] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4564), 1, - sym_identifier, - [59837] = 2, + anon_sym_STAR, + [60004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2904), 1, + anon_sym_RPAREN, + [60011] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4566), 1, + aux_sym_preproc_if_token2, + [60018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3053), 1, anon_sym_RPAREN, - [59844] = 2, + [60025] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4568), 1, - aux_sym_preproc_if_token2, - [59851] = 2, + anon_sym_SEMI, + [60032] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4570), 1, - anon_sym_STAR, - [59858] = 2, + aux_sym_preproc_if_token2, + [60039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 1, - sym_identifier, - [59865] = 2, + ACTIONS(3055), 1, + anon_sym_RPAREN, + [60046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 1, + ACTIONS(2988), 1, anon_sym_RPAREN, - [59872] = 2, + [60053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 1, + ACTIONS(4572), 1, sym_identifier, - [59879] = 2, + [60060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4576), 1, + ACTIONS(4574), 1, sym_identifier, - [59886] = 2, + [60067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 1, - sym_identifier, - [59893] = 2, - ACTIONS(3), 1, + ACTIONS(4576), 1, + anon_sym_LPAREN2, + [60074] = 2, + ACTIONS(3233), 1, sym_comment, - ACTIONS(4580), 1, - anon_sym_SEMI, - [59900] = 2, + ACTIONS(4578), 1, + anon_sym_LF, + [60081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2945), 1, + ACTIONS(2986), 1, anon_sym_RPAREN, - [59907] = 2, + [60088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 1, - anon_sym_RPAREN, - [59914] = 2, + ACTIONS(4580), 1, + sym_identifier, + [60095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, + ACTIONS(2970), 1, anon_sym_RPAREN, - [59921] = 2, + [60102] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4582), 1, - anon_sym_SEMI, - [59928] = 2, + aux_sym_preproc_if_token2, + [60109] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4584), 1, - aux_sym_preproc_if_token2, - [59935] = 2, + sym_identifier, + [60116] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4586), 1, - sym_identifier, - [59942] = 2, + anon_sym_SEMI, + [60123] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4588), 1, - sym_identifier, - [59949] = 2, + aux_sym_preproc_if_token2, + [60130] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4590), 1, - anon_sym_RPAREN, - [59956] = 2, + anon_sym_SEMI, + [60137] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4592), 1, - aux_sym_preproc_if_token2, - [59963] = 2, + anon_sym_SEMI, + [60144] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4594), 1, - anon_sym_while, - [59970] = 2, - ACTIONS(3223), 1, + aux_sym_preproc_if_token2, + [60151] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4596), 1, - anon_sym_LF, - [59977] = 2, + sym_identifier, + [60158] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4598), 1, - aux_sym_preproc_if_token2, - [59984] = 2, + anon_sym_LPAREN2, + [60165] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4600), 1, sym_identifier, - [59991] = 2, + [60172] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4602), 1, - aux_sym_preproc_if_token2, - [59998] = 2, + sym_identifier, + [60179] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4604), 1, sym_identifier, - [60005] = 2, + [60186] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4606), 1, aux_sym_preproc_if_token2, - [60012] = 2, + [60193] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4608), 1, - anon_sym_SEMI, - [60019] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_SEMI, - [60026] = 2, + sym_identifier, + [60200] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4610), 1, - anon_sym_SQUOTE, - [60033] = 2, + anon_sym_LPAREN2, + [60207] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4612), 1, anon_sym_SEMI, - [60040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3011), 1, - anon_sym_SEMI, - [60047] = 2, + [60214] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4614), 1, - anon_sym_SEMI, - [60054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2977), 1, - anon_sym_SEMI, - [60061] = 2, + sym_identifier, + [60221] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4616), 1, - anon_sym_SEMI, - [60068] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2971), 1, - anon_sym_SEMI, - [60075] = 2, + sym_identifier, + [60228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, - anon_sym_SEMI, - [60082] = 2, + ACTIONS(2936), 1, + anon_sym_RPAREN, + [60235] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4618), 1, - anon_sym_while, - [60089] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2943), 1, - anon_sym_RPAREN, - [60096] = 2, + anon_sym_COLON, + [60242] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4620), 1, - anon_sym_SEMI, - [60103] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2973), 1, anon_sym_RPAREN, - [60110] = 2, + [60249] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4622), 1, - anon_sym_while, - [60117] = 2, + anon_sym_RBRACK, + [60256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, - anon_sym_RPAREN, - [60124] = 2, + ACTIONS(4624), 1, + anon_sym_while, + [60263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 1, + ACTIONS(3063), 1, anon_sym_SEMI, - [60131] = 2, + [60270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4624), 1, - sym_identifier, - [60138] = 2, + ACTIONS(4626), 1, + anon_sym_LPAREN2, + [60277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, - aux_sym_preproc_if_token2, - [60145] = 2, + ACTIONS(3043), 1, + anon_sym_RPAREN, + [60284] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4628), 1, - anon_sym_SEMI, - [60152] = 2, + anon_sym_LPAREN2, + [60291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 1, - anon_sym_SEMI, - [60159] = 2, + ACTIONS(3029), 1, + anon_sym_RPAREN, + [60298] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4630), 1, - aux_sym_preproc_if_token2, - [60166] = 2, + anon_sym_SEMI, + [60305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_RPAREN, + [60312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(3031), 1, anon_sym_SEMI, - [60173] = 2, + [60319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4632), 1, + ACTIONS(2930), 1, anon_sym_RPAREN, - [60180] = 2, + [60326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(4632), 1, anon_sym_SEMI, - [60187] = 2, + [60333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 1, - anon_sym_RPAREN, - [60194] = 2, - ACTIONS(3223), 1, + ACTIONS(3051), 1, + anon_sym_SEMI, + [60340] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4634), 1, - anon_sym_LF, - [60201] = 2, + aux_sym_preproc_if_token2, + [60347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3015), 1, + ACTIONS(3007), 1, anon_sym_SEMI, - [60208] = 2, + [60354] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4636), 1, - aux_sym_preproc_if_token2, - [60215] = 2, - ACTIONS(3223), 1, + anon_sym_SEMI, + [60361] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4638), 1, - anon_sym_LF, - [60222] = 2, + anon_sym_SEMI, + [60368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 1, - anon_sym_RPAREN, - [60229] = 2, - ACTIONS(3223), 1, - sym_comment, - ACTIONS(4119), 1, - anon_sym_LF, - [60236] = 2, + ACTIONS(3001), 1, + anon_sym_SEMI, + [60375] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4640), 1, - anon_sym_while, - [60243] = 2, + aux_sym_preproc_if_token2, + [60382] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4642), 1, - ts_builtin_sym_end, - [60250] = 2, + anon_sym_SEMI, + [60389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4644), 1, + ACTIONS(3021), 1, anon_sym_RPAREN, - [60257] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4646), 1, - anon_sym_SEMI, - [60264] = 2, + [60396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3031), 1, - anon_sym_SEMI, - [60271] = 2, + ACTIONS(4644), 1, + aux_sym_preproc_if_token2, + [60403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, - anon_sym_SEMI, - [60278] = 2, + ACTIONS(4646), 1, + anon_sym_while, + [60410] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4648), 1, anon_sym_LPAREN2, - [60285] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2896), 1, - anon_sym_SEMI, - [60292] = 2, + [60417] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4650), 1, - anon_sym_LPAREN2, - [60299] = 2, + anon_sym_SEMI, + [60424] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4652), 1, - sym_identifier, - [60306] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2888), 1, anon_sym_SEMI, - [60313] = 2, + [60431] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4654), 1, - anon_sym_SEMI, - [60320] = 2, + aux_sym_preproc_if_token2, + [60438] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4656), 1, + aux_sym_preproc_if_token2, + [60445] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2984), 1, anon_sym_SEMI, - [60327] = 2, + [60452] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4658), 1, - anon_sym_LPAREN2, - [60334] = 2, + aux_sym_preproc_if_token2, + [60459] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2978), 1, + anon_sym_SEMI, + [60466] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4660), 1, aux_sym_preproc_if_token2, - [60341] = 2, + [60473] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 1, + anon_sym_SEMI, + [60480] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3039), 1, + anon_sym_SEMI, + [60487] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4662), 1, - anon_sym_while, - [60348] = 2, + anon_sym_RPAREN, + [60494] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(2964), 1, + anon_sym_SEMI, + [60501] = 2, + ACTIONS(3233), 1, + sym_comment, ACTIONS(4664), 1, - anon_sym_COLON, - [60355] = 2, + anon_sym_LF, + [60508] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4666), 1, anon_sym_RPAREN, - [60362] = 2, + [60515] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4668), 1, - anon_sym_LPAREN2, - [60369] = 2, - ACTIONS(3223), 1, + sym_primitive_type, + [60522] = 2, + ACTIONS(3233), 1, sym_comment, ACTIONS(4670), 1, anon_sym_LF, - [60376] = 2, - ACTIONS(3223), 1, + [60529] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(4672), 1, + anon_sym_while, + [60536] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, + aux_sym_preproc_if_token2, + [60543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, + anon_sym_SEMI, + [60550] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 1, + aux_sym_preproc_if_token2, + [60557] = 2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4680), 1, anon_sym_LF, - [60383] = 2, + [60564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 1, + ACTIONS(2938), 1, anon_sym_SEMI, - [60390] = 2, + [60571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 1, - anon_sym_COLON, - [60397] = 2, + ACTIONS(4682), 1, + sym_identifier, + [60578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LPAREN2, - [60404] = 2, + ACTIONS(2934), 1, + anon_sym_SEMI, + [60585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4684), 1, anon_sym_SQUOTE, - [60411] = 2, + [60592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4680), 1, + ACTIONS(4686), 1, + anon_sym_SEMI, + [60599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2928), 1, + anon_sym_SEMI, + [60606] = 2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4688), 1, + anon_sym_LF, + [60613] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 1, + aux_sym_preproc_if_token2, + [60620] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4692), 1, + aux_sym_preproc_if_token2, + [60627] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2914), 1, + anon_sym_SEMI, + [60634] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 1, + anon_sym_while, + [60641] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4696), 1, + anon_sym_SEMI, + [60648] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 1, + anon_sym_SEMI, + [60655] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4700), 1, anon_sym_LPAREN2, - [60418] = 2, + [60662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 1, + ACTIONS(4702), 1, + aux_sym_preproc_if_token2, + [60669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2916), 1, anon_sym_SEMI, - [60425] = 2, + [60676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4682), 1, + ACTIONS(2912), 1, anon_sym_SEMI, - [60432] = 2, + [60683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4684), 1, + ACTIONS(4704), 1, + anon_sym_RPAREN, + [60690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4706), 1, anon_sym_LPAREN2, - [60439] = 2, + [60697] = 2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4163), 1, + anon_sym_LF, + [60704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3019), 1, + ACTIONS(4708), 1, anon_sym_SEMI, - [60446] = 2, + [60711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, + ACTIONS(2906), 1, anon_sym_SEMI, - [60453] = 2, + [60718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4686), 1, + ACTIONS(4710), 1, sym_identifier, - [60460] = 2, + [60725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4688), 1, + ACTIONS(2920), 1, + anon_sym_RPAREN, + [60732] = 2, + ACTIONS(3233), 1, + sym_comment, + ACTIONS(4712), 1, + anon_sym_LF, + [60739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3041), 1, + anon_sym_SEMI, + [60746] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 1, + sym_identifier, + [60753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4716), 1, anon_sym_LPAREN2, - [60467] = 2, + [60760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4690), 1, + ACTIONS(4718), 1, anon_sym_LPAREN2, - [60474] = 2, + [60767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4692), 1, + ACTIONS(4720), 1, anon_sym_LPAREN2, }; @@ -113297,11 +113488,11 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(539)] = 1017, [SMALL_STATE(540)] = 1130, [SMALL_STATE(541)] = 1248, - [SMALL_STATE(542)] = 1372, - [SMALL_STATE(543)] = 1490, - [SMALL_STATE(544)] = 1608, - [SMALL_STATE(545)] = 1726, - [SMALL_STATE(546)] = 1844, + [SMALL_STATE(542)] = 1366, + [SMALL_STATE(543)] = 1484, + [SMALL_STATE(544)] = 1602, + [SMALL_STATE(545)] = 1720, + [SMALL_STATE(546)] = 1838, [SMALL_STATE(547)] = 1962, [SMALL_STATE(548)] = 2080, [SMALL_STATE(549)] = 2198, @@ -113310,7 +113501,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(552)] = 2546, [SMALL_STATE(553)] = 2658, [SMALL_STATE(554)] = 2771, - [SMALL_STATE(555)] = 2878, + [SMALL_STATE(555)] = 2884, [SMALL_STATE(556)] = 2991, [SMALL_STATE(557)] = 3104, [SMALL_STATE(558)] = 3217, @@ -113320,18 +113511,18 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(562)] = 3669, [SMALL_STATE(563)] = 3782, [SMALL_STATE(564)] = 3895, - [SMALL_STATE(565)] = 3975, - [SMALL_STATE(566)] = 4055, + [SMALL_STATE(565)] = 3977, + [SMALL_STATE(566)] = 4057, [SMALL_STATE(567)] = 4137, - [SMALL_STATE(568)] = 4219, - [SMALL_STATE(569)] = 4299, - [SMALL_STATE(570)] = 4379, + [SMALL_STATE(568)] = 4217, + [SMALL_STATE(569)] = 4297, + [SMALL_STATE(570)] = 4377, [SMALL_STATE(571)] = 4459, - [SMALL_STATE(572)] = 4541, + [SMALL_STATE(572)] = 4539, [SMALL_STATE(573)] = 4621, [SMALL_STATE(574)] = 4703, - [SMALL_STATE(575)] = 4784, - [SMALL_STATE(576)] = 4889, + [SMALL_STATE(575)] = 4780, + [SMALL_STATE(576)] = 4861, [SMALL_STATE(577)] = 4966, [SMALL_STATE(578)] = 5069, [SMALL_STATE(579)] = 5172, @@ -113355,8 +113546,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(597)] = 6990, [SMALL_STATE(598)] = 7090, [SMALL_STATE(599)] = 7190, - [SMALL_STATE(600)] = 7290, - [SMALL_STATE(601)] = 7390, + [SMALL_STATE(600)] = 7286, + [SMALL_STATE(601)] = 7386, [SMALL_STATE(602)] = 7486, [SMALL_STATE(603)] = 7586, [SMALL_STATE(604)] = 7686, @@ -113376,138 +113567,138 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(618)] = 9086, [SMALL_STATE(619)] = 9186, [SMALL_STATE(620)] = 9286, - [SMALL_STATE(621)] = 9394, - [SMALL_STATE(622)] = 9494, - [SMALL_STATE(623)] = 9594, - [SMALL_STATE(624)] = 9694, - [SMALL_STATE(625)] = 9794, - [SMALL_STATE(626)] = 9894, - [SMALL_STATE(627)] = 9990, - [SMALL_STATE(628)] = 10090, - [SMALL_STATE(629)] = 10190, - [SMALL_STATE(630)] = 10290, - [SMALL_STATE(631)] = 10390, - [SMALL_STATE(632)] = 10490, - [SMALL_STATE(633)] = 10590, - [SMALL_STATE(634)] = 10690, - [SMALL_STATE(635)] = 10790, - [SMALL_STATE(636)] = 10890, - [SMALL_STATE(637)] = 10990, - [SMALL_STATE(638)] = 11090, - [SMALL_STATE(639)] = 11190, - [SMALL_STATE(640)] = 11290, - [SMALL_STATE(641)] = 11390, - [SMALL_STATE(642)] = 11490, - [SMALL_STATE(643)] = 11590, - [SMALL_STATE(644)] = 11690, - [SMALL_STATE(645)] = 11790, - [SMALL_STATE(646)] = 11890, - [SMALL_STATE(647)] = 11990, - [SMALL_STATE(648)] = 12090, - [SMALL_STATE(649)] = 12190, + [SMALL_STATE(621)] = 9386, + [SMALL_STATE(622)] = 9486, + [SMALL_STATE(623)] = 9586, + [SMALL_STATE(624)] = 9686, + [SMALL_STATE(625)] = 9786, + [SMALL_STATE(626)] = 9886, + [SMALL_STATE(627)] = 9986, + [SMALL_STATE(628)] = 10086, + [SMALL_STATE(629)] = 10194, + [SMALL_STATE(630)] = 10294, + [SMALL_STATE(631)] = 10394, + [SMALL_STATE(632)] = 10494, + [SMALL_STATE(633)] = 10594, + [SMALL_STATE(634)] = 10694, + [SMALL_STATE(635)] = 10794, + [SMALL_STATE(636)] = 10894, + [SMALL_STATE(637)] = 10994, + [SMALL_STATE(638)] = 11094, + [SMALL_STATE(639)] = 11194, + [SMALL_STATE(640)] = 11294, + [SMALL_STATE(641)] = 11394, + [SMALL_STATE(642)] = 11494, + [SMALL_STATE(643)] = 11594, + [SMALL_STATE(644)] = 11694, + [SMALL_STATE(645)] = 11794, + [SMALL_STATE(646)] = 11894, + [SMALL_STATE(647)] = 11994, + [SMALL_STATE(648)] = 12094, + [SMALL_STATE(649)] = 12194, [SMALL_STATE(650)] = 12290, [SMALL_STATE(651)] = 12390, [SMALL_STATE(652)] = 12490, - [SMALL_STATE(653)] = 12583, + [SMALL_STATE(653)] = 12587, [SMALL_STATE(654)] = 12680, [SMALL_STATE(655)] = 12773, [SMALL_STATE(656)] = 12870, - [SMALL_STATE(657)] = 12963, - [SMALL_STATE(658)] = 13056, + [SMALL_STATE(657)] = 12967, + [SMALL_STATE(658)] = 13060, [SMALL_STATE(659)] = 13153, [SMALL_STATE(660)] = 13246, [SMALL_STATE(661)] = 13339, - [SMALL_STATE(662)] = 13432, - [SMALL_STATE(663)] = 13525, - [SMALL_STATE(664)] = 13618, - [SMALL_STATE(665)] = 13715, - [SMALL_STATE(666)] = 13812, + [SMALL_STATE(662)] = 13436, + [SMALL_STATE(663)] = 13533, + [SMALL_STATE(664)] = 13626, + [SMALL_STATE(665)] = 13719, + [SMALL_STATE(666)] = 13816, [SMALL_STATE(667)] = 13909, - [SMALL_STATE(668)] = 14006, + [SMALL_STATE(668)] = 14002, [SMALL_STATE(669)] = 14099, [SMALL_STATE(670)] = 14193, - [SMALL_STATE(671)] = 14287, - [SMALL_STATE(672)] = 14381, - [SMALL_STATE(673)] = 14477, - [SMALL_STATE(674)] = 14571, - [SMALL_STATE(675)] = 14665, - [SMALL_STATE(676)] = 14755, - [SMALL_STATE(677)] = 14849, - [SMALL_STATE(678)] = 14943, - [SMALL_STATE(679)] = 15037, - [SMALL_STATE(680)] = 15131, - [SMALL_STATE(681)] = 15225, - [SMALL_STATE(682)] = 15319, - [SMALL_STATE(683)] = 15409, - [SMALL_STATE(684)] = 15499, - [SMALL_STATE(685)] = 15593, - [SMALL_STATE(686)] = 15687, - [SMALL_STATE(687)] = 15777, - [SMALL_STATE(688)] = 15867, - [SMALL_STATE(689)] = 15961, - [SMALL_STATE(690)] = 16055, - [SMALL_STATE(691)] = 16149, - [SMALL_STATE(692)] = 16239, - [SMALL_STATE(693)] = 16333, - [SMALL_STATE(694)] = 16427, - [SMALL_STATE(695)] = 16517, - [SMALL_STATE(696)] = 16611, - [SMALL_STATE(697)] = 16705, - [SMALL_STATE(698)] = 16801, - [SMALL_STATE(699)] = 16891, - [SMALL_STATE(700)] = 16985, - [SMALL_STATE(701)] = 17075, - [SMALL_STATE(702)] = 17165, - [SMALL_STATE(703)] = 17255, - [SMALL_STATE(704)] = 17345, - [SMALL_STATE(705)] = 17435, + [SMALL_STATE(671)] = 14283, + [SMALL_STATE(672)] = 14377, + [SMALL_STATE(673)] = 14467, + [SMALL_STATE(674)] = 14561, + [SMALL_STATE(675)] = 14655, + [SMALL_STATE(676)] = 14745, + [SMALL_STATE(677)] = 14839, + [SMALL_STATE(678)] = 14929, + [SMALL_STATE(679)] = 15025, + [SMALL_STATE(680)] = 15119, + [SMALL_STATE(681)] = 15209, + [SMALL_STATE(682)] = 15299, + [SMALL_STATE(683)] = 15393, + [SMALL_STATE(684)] = 15487, + [SMALL_STATE(685)] = 15577, + [SMALL_STATE(686)] = 15667, + [SMALL_STATE(687)] = 15761, + [SMALL_STATE(688)] = 15855, + [SMALL_STATE(689)] = 15945, + [SMALL_STATE(690)] = 16039, + [SMALL_STATE(691)] = 16133, + [SMALL_STATE(692)] = 16227, + [SMALL_STATE(693)] = 16321, + [SMALL_STATE(694)] = 16411, + [SMALL_STATE(695)] = 16501, + [SMALL_STATE(696)] = 16595, + [SMALL_STATE(697)] = 16689, + [SMALL_STATE(698)] = 16783, + [SMALL_STATE(699)] = 16873, + [SMALL_STATE(700)] = 16967, + [SMALL_STATE(701)] = 17061, + [SMALL_STATE(702)] = 17151, + [SMALL_STATE(703)] = 17247, + [SMALL_STATE(704)] = 17341, + [SMALL_STATE(705)] = 17431, [SMALL_STATE(706)] = 17525, [SMALL_STATE(707)] = 17615, - [SMALL_STATE(708)] = 17709, - [SMALL_STATE(709)] = 17799, - [SMALL_STATE(710)] = 17893, - [SMALL_STATE(711)] = 17983, - [SMALL_STATE(712)] = 18079, - [SMALL_STATE(713)] = 18169, - [SMALL_STATE(714)] = 18263, - [SMALL_STATE(715)] = 18357, - [SMALL_STATE(716)] = 18451, - [SMALL_STATE(717)] = 18545, - [SMALL_STATE(718)] = 18639, - [SMALL_STATE(719)] = 18733, - [SMALL_STATE(720)] = 18827, - [SMALL_STATE(721)] = 18917, - [SMALL_STATE(722)] = 19011, - [SMALL_STATE(723)] = 19105, - [SMALL_STATE(724)] = 19199, - [SMALL_STATE(725)] = 19293, - [SMALL_STATE(726)] = 19387, - [SMALL_STATE(727)] = 19481, - [SMALL_STATE(728)] = 19575, - [SMALL_STATE(729)] = 19669, - [SMALL_STATE(730)] = 19765, - [SMALL_STATE(731)] = 19855, - [SMALL_STATE(732)] = 19949, - [SMALL_STATE(733)] = 20039, - [SMALL_STATE(734)] = 20133, - [SMALL_STATE(735)] = 20227, - [SMALL_STATE(736)] = 20323, - [SMALL_STATE(737)] = 20413, - [SMALL_STATE(738)] = 20503, - [SMALL_STATE(739)] = 20593, - [SMALL_STATE(740)] = 20683, - [SMALL_STATE(741)] = 20773, - [SMALL_STATE(742)] = 20863, - [SMALL_STATE(743)] = 20953, - [SMALL_STATE(744)] = 21047, - [SMALL_STATE(745)] = 21141, - [SMALL_STATE(746)] = 21235, - [SMALL_STATE(747)] = 21325, - [SMALL_STATE(748)] = 21415, - [SMALL_STATE(749)] = 21505, - [SMALL_STATE(750)] = 21599, - [SMALL_STATE(751)] = 21693, - [SMALL_STATE(752)] = 21787, + [SMALL_STATE(708)] = 17705, + [SMALL_STATE(709)] = 17795, + [SMALL_STATE(710)] = 17885, + [SMALL_STATE(711)] = 17979, + [SMALL_STATE(712)] = 18069, + [SMALL_STATE(713)] = 18163, + [SMALL_STATE(714)] = 18257, + [SMALL_STATE(715)] = 18353, + [SMALL_STATE(716)] = 18447, + [SMALL_STATE(717)] = 18537, + [SMALL_STATE(718)] = 18631, + [SMALL_STATE(719)] = 18721, + [SMALL_STATE(720)] = 18811, + [SMALL_STATE(721)] = 18905, + [SMALL_STATE(722)] = 18999, + [SMALL_STATE(723)] = 19093, + [SMALL_STATE(724)] = 19183, + [SMALL_STATE(725)] = 19277, + [SMALL_STATE(726)] = 19371, + [SMALL_STATE(727)] = 19465, + [SMALL_STATE(728)] = 19559, + [SMALL_STATE(729)] = 19653, + [SMALL_STATE(730)] = 19747, + [SMALL_STATE(731)] = 19843, + [SMALL_STATE(732)] = 19937, + [SMALL_STATE(733)] = 20031, + [SMALL_STATE(734)] = 20125, + [SMALL_STATE(735)] = 20215, + [SMALL_STATE(736)] = 20305, + [SMALL_STATE(737)] = 20395, + [SMALL_STATE(738)] = 20489, + [SMALL_STATE(739)] = 20579, + [SMALL_STATE(740)] = 20673, + [SMALL_STATE(741)] = 20763, + [SMALL_STATE(742)] = 20853, + [SMALL_STATE(743)] = 20947, + [SMALL_STATE(744)] = 21037, + [SMALL_STATE(745)] = 21127, + [SMALL_STATE(746)] = 21221, + [SMALL_STATE(747)] = 21315, + [SMALL_STATE(748)] = 21405, + [SMALL_STATE(749)] = 21499, + [SMALL_STATE(750)] = 21593, + [SMALL_STATE(751)] = 21687, + [SMALL_STATE(752)] = 21781, [SMALL_STATE(753)] = 21877, [SMALL_STATE(754)] = 21942, [SMALL_STATE(755)] = 22007, @@ -113518,91 +113709,91 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(760)] = 22341, [SMALL_STATE(761)] = 22393, [SMALL_STATE(762)] = 22445, - [SMALL_STATE(763)] = 22497, - [SMALL_STATE(764)] = 22549, + [SMALL_STATE(763)] = 22529, + [SMALL_STATE(764)] = 22581, [SMALL_STATE(765)] = 22633, - [SMALL_STATE(766)] = 22708, - [SMALL_STATE(767)] = 22793, - [SMALL_STATE(768)] = 22844, - [SMALL_STATE(769)] = 22895, - [SMALL_STATE(770)] = 22956, - [SMALL_STATE(771)] = 23017, - [SMALL_STATE(772)] = 23068, - [SMALL_STATE(773)] = 23119, - [SMALL_STATE(774)] = 23170, - [SMALL_STATE(775)] = 23231, - [SMALL_STATE(776)] = 23282, - [SMALL_STATE(777)] = 23333, - [SMALL_STATE(778)] = 23392, - [SMALL_STATE(779)] = 23475, - [SMALL_STATE(780)] = 23526, - [SMALL_STATE(781)] = 23577, - [SMALL_STATE(782)] = 23628, - [SMALL_STATE(783)] = 23689, - [SMALL_STATE(784)] = 23740, - [SMALL_STATE(785)] = 23791, - [SMALL_STATE(786)] = 23842, - [SMALL_STATE(787)] = 23893, - [SMALL_STATE(788)] = 23944, - [SMALL_STATE(789)] = 23995, - [SMALL_STATE(790)] = 24046, - [SMALL_STATE(791)] = 24097, - [SMALL_STATE(792)] = 24148, - [SMALL_STATE(793)] = 24199, - [SMALL_STATE(794)] = 24284, - [SMALL_STATE(795)] = 24335, - [SMALL_STATE(796)] = 24402, - [SMALL_STATE(797)] = 24467, - [SMALL_STATE(798)] = 24518, - [SMALL_STATE(799)] = 24569, - [SMALL_STATE(800)] = 24636, - [SMALL_STATE(801)] = 24687, - [SMALL_STATE(802)] = 24750, - [SMALL_STATE(803)] = 24801, - [SMALL_STATE(804)] = 24882, - [SMALL_STATE(805)] = 24933, - [SMALL_STATE(806)] = 25012, - [SMALL_STATE(807)] = 25089, - [SMALL_STATE(808)] = 25140, - [SMALL_STATE(809)] = 25191, - [SMALL_STATE(810)] = 25262, + [SMALL_STATE(766)] = 22714, + [SMALL_STATE(767)] = 22775, + [SMALL_STATE(768)] = 22826, + [SMALL_STATE(769)] = 22909, + [SMALL_STATE(770)] = 22974, + [SMALL_STATE(771)] = 23025, + [SMALL_STATE(772)] = 23076, + [SMALL_STATE(773)] = 23127, + [SMALL_STATE(774)] = 23178, + [SMALL_STATE(775)] = 23229, + [SMALL_STATE(776)] = 23280, + [SMALL_STATE(777)] = 23331, + [SMALL_STATE(778)] = 23382, + [SMALL_STATE(779)] = 23433, + [SMALL_STATE(780)] = 23484, + [SMALL_STATE(781)] = 23551, + [SMALL_STATE(782)] = 23602, + [SMALL_STATE(783)] = 23653, + [SMALL_STATE(784)] = 23724, + [SMALL_STATE(785)] = 23775, + [SMALL_STATE(786)] = 23826, + [SMALL_STATE(787)] = 23877, + [SMALL_STATE(788)] = 23950, + [SMALL_STATE(789)] = 24001, + [SMALL_STATE(790)] = 24052, + [SMALL_STATE(791)] = 24103, + [SMALL_STATE(792)] = 24166, + [SMALL_STATE(793)] = 24241, + [SMALL_STATE(794)] = 24300, + [SMALL_STATE(795)] = 24361, + [SMALL_STATE(796)] = 24412, + [SMALL_STATE(797)] = 24463, + [SMALL_STATE(798)] = 24514, + [SMALL_STATE(799)] = 24581, + [SMALL_STATE(800)] = 24632, + [SMALL_STATE(801)] = 24717, + [SMALL_STATE(802)] = 24768, + [SMALL_STATE(803)] = 24819, + [SMALL_STATE(804)] = 24904, + [SMALL_STATE(805)] = 24955, + [SMALL_STATE(806)] = 25016, + [SMALL_STATE(807)] = 25067, + [SMALL_STATE(808)] = 25128, + [SMALL_STATE(809)] = 25179, + [SMALL_STATE(810)] = 25258, [SMALL_STATE(811)] = 25335, [SMALL_STATE(812)] = 25389, - [SMALL_STATE(813)] = 25442, - [SMALL_STATE(814)] = 25519, + [SMALL_STATE(813)] = 25466, + [SMALL_STATE(814)] = 25543, [SMALL_STATE(815)] = 25596, [SMALL_STATE(816)] = 25673, [SMALL_STATE(817)] = 25750, [SMALL_STATE(818)] = 25827, - [SMALL_STATE(819)] = 25901, + [SMALL_STATE(819)] = 25887, [SMALL_STATE(820)] = 25961, [SMALL_STATE(821)] = 26014, [SMALL_STATE(822)] = 26067, [SMALL_STATE(823)] = 26120, [SMALL_STATE(824)] = 26173, - [SMALL_STATE(825)] = 26226, + [SMALL_STATE(825)] = 26220, [SMALL_STATE(826)] = 26273, [SMALL_STATE(827)] = 26326, - [SMALL_STATE(828)] = 26396, - [SMALL_STATE(829)] = 26474, - [SMALL_STATE(830)] = 26542, - [SMALL_STATE(831)] = 26598, - [SMALL_STATE(832)] = 26652, - [SMALL_STATE(833)] = 26718, - [SMALL_STATE(834)] = 26774, - [SMALL_STATE(835)] = 26852, + [SMALL_STATE(828)] = 26398, + [SMALL_STATE(829)] = 26464, + [SMALL_STATE(830)] = 26520, + [SMALL_STATE(831)] = 26576, + [SMALL_STATE(832)] = 26654, + [SMALL_STATE(833)] = 26712, + [SMALL_STATE(834)] = 26788, + [SMALL_STATE(835)] = 26862, [SMALL_STATE(836)] = 26932, - [SMALL_STATE(837)] = 26994, - [SMALL_STATE(838)] = 27050, - [SMALL_STATE(839)] = 27122, - [SMALL_STATE(840)] = 27180, - [SMALL_STATE(841)] = 27236, - [SMALL_STATE(842)] = 27296, - [SMALL_STATE(843)] = 27376, - [SMALL_STATE(844)] = 27438, - [SMALL_STATE(845)] = 27514, + [SMALL_STATE(837)] = 27000, + [SMALL_STATE(838)] = 27078, + [SMALL_STATE(839)] = 27134, + [SMALL_STATE(840)] = 27188, + [SMALL_STATE(841)] = 27250, + [SMALL_STATE(842)] = 27310, + [SMALL_STATE(843)] = 27372, + [SMALL_STATE(844)] = 27452, + [SMALL_STATE(845)] = 27532, [SMALL_STATE(846)] = 27588, - [SMALL_STATE(847)] = 27637, + [SMALL_STATE(847)] = 27633, [SMALL_STATE(848)] = 27682, [SMALL_STATE(849)] = 27727, [SMALL_STATE(850)] = 27772, @@ -113631,7 +113822,7 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(873)] = 28784, [SMALL_STATE(874)] = 28828, [SMALL_STATE(875)] = 28872, - [SMALL_STATE(876)] = 28940, + [SMALL_STATE(876)] = 28914, [SMALL_STATE(877)] = 28982, [SMALL_STATE(878)] = 29024, [SMALL_STATE(879)] = 29066, @@ -113640,1118 +113831,1126 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(882)] = 29192, [SMALL_STATE(883)] = 29234, [SMALL_STATE(884)] = 29276, - [SMALL_STATE(885)] = 29344, - [SMALL_STATE(886)] = 29386, - [SMALL_STATE(887)] = 29428, - [SMALL_STATE(888)] = 29470, - [SMALL_STATE(889)] = 29538, - [SMALL_STATE(890)] = 29580, - [SMALL_STATE(891)] = 29630, - [SMALL_STATE(892)] = 29680, - [SMALL_STATE(893)] = 29722, - [SMALL_STATE(894)] = 29764, - [SMALL_STATE(895)] = 29806, - [SMALL_STATE(896)] = 29856, - [SMALL_STATE(897)] = 29898, - [SMALL_STATE(898)] = 29948, - [SMALL_STATE(899)] = 29990, - [SMALL_STATE(900)] = 30032, - [SMALL_STATE(901)] = 30074, - [SMALL_STATE(902)] = 30116, - [SMALL_STATE(903)] = 30158, - [SMALL_STATE(904)] = 30200, - [SMALL_STATE(905)] = 30242, - [SMALL_STATE(906)] = 30310, - [SMALL_STATE(907)] = 30352, - [SMALL_STATE(908)] = 30394, + [SMALL_STATE(885)] = 29318, + [SMALL_STATE(886)] = 29360, + [SMALL_STATE(887)] = 29402, + [SMALL_STATE(888)] = 29444, + [SMALL_STATE(889)] = 29486, + [SMALL_STATE(890)] = 29528, + [SMALL_STATE(891)] = 29570, + [SMALL_STATE(892)] = 29638, + [SMALL_STATE(893)] = 29706, + [SMALL_STATE(894)] = 29748, + [SMALL_STATE(895)] = 29798, + [SMALL_STATE(896)] = 29840, + [SMALL_STATE(897)] = 29882, + [SMALL_STATE(898)] = 29924, + [SMALL_STATE(899)] = 29966, + [SMALL_STATE(900)] = 30008, + [SMALL_STATE(901)] = 30050, + [SMALL_STATE(902)] = 30092, + [SMALL_STATE(903)] = 30134, + [SMALL_STATE(904)] = 30184, + [SMALL_STATE(905)] = 30234, + [SMALL_STATE(906)] = 30276, + [SMALL_STATE(907)] = 30318, + [SMALL_STATE(908)] = 30386, [SMALL_STATE(909)] = 30436, - [SMALL_STATE(910)] = 30477, - [SMALL_STATE(911)] = 30518, - [SMALL_STATE(912)] = 30559, - [SMALL_STATE(913)] = 30600, - [SMALL_STATE(914)] = 30641, - [SMALL_STATE(915)] = 30681, - [SMALL_STATE(916)] = 30721, - [SMALL_STATE(917)] = 30761, - [SMALL_STATE(918)] = 30801, - [SMALL_STATE(919)] = 30841, - [SMALL_STATE(920)] = 30881, - [SMALL_STATE(921)] = 30921, - [SMALL_STATE(922)] = 30991, - [SMALL_STATE(923)] = 31035, - [SMALL_STATE(924)] = 31103, - [SMALL_STATE(925)] = 31147, - [SMALL_STATE(926)] = 31187, - [SMALL_STATE(927)] = 31255, - [SMALL_STATE(928)] = 31295, - [SMALL_STATE(929)] = 31335, - [SMALL_STATE(930)] = 31375, - [SMALL_STATE(931)] = 31415, - [SMALL_STATE(932)] = 31455, - [SMALL_STATE(933)] = 31495, - [SMALL_STATE(934)] = 31535, - [SMALL_STATE(935)] = 31575, - [SMALL_STATE(936)] = 31619, - [SMALL_STATE(937)] = 31659, - [SMALL_STATE(938)] = 31699, - [SMALL_STATE(939)] = 31773, - [SMALL_STATE(940)] = 31813, - [SMALL_STATE(941)] = 31853, - [SMALL_STATE(942)] = 31905, - [SMALL_STATE(943)] = 31945, - [SMALL_STATE(944)] = 31985, - [SMALL_STATE(945)] = 32025, - [SMALL_STATE(946)] = 32065, - [SMALL_STATE(947)] = 32105, - [SMALL_STATE(948)] = 32145, - [SMALL_STATE(949)] = 32189, - [SMALL_STATE(950)] = 32243, - [SMALL_STATE(951)] = 32283, - [SMALL_STATE(952)] = 32323, - [SMALL_STATE(953)] = 32375, - [SMALL_STATE(954)] = 32419, - [SMALL_STATE(955)] = 32459, - [SMALL_STATE(956)] = 32499, - [SMALL_STATE(957)] = 32543, - [SMALL_STATE(958)] = 32609, - [SMALL_STATE(959)] = 32649, - [SMALL_STATE(960)] = 32693, - [SMALL_STATE(961)] = 32757, - [SMALL_STATE(962)] = 32797, - [SMALL_STATE(963)] = 32859, - [SMALL_STATE(964)] = 32917, - [SMALL_STATE(965)] = 32973, - [SMALL_STATE(966)] = 33013, - [SMALL_STATE(967)] = 33053, - [SMALL_STATE(968)] = 33093, - [SMALL_STATE(969)] = 33133, - [SMALL_STATE(970)] = 33207, - [SMALL_STATE(971)] = 33247, - [SMALL_STATE(972)] = 33287, - [SMALL_STATE(973)] = 33339, - [SMALL_STATE(974)] = 33383, - [SMALL_STATE(975)] = 33427, - [SMALL_STATE(976)] = 33467, - [SMALL_STATE(977)] = 33507, - [SMALL_STATE(978)] = 33559, - [SMALL_STATE(979)] = 33617, - [SMALL_STATE(980)] = 33689, - [SMALL_STATE(981)] = 33729, - [SMALL_STATE(982)] = 33773, - [SMALL_STATE(983)] = 33817, - [SMALL_STATE(984)] = 33857, - [SMALL_STATE(985)] = 33897, - [SMALL_STATE(986)] = 33937, - [SMALL_STATE(987)] = 33977, - [SMALL_STATE(988)] = 34017, - [SMALL_STATE(989)] = 34061, - [SMALL_STATE(990)] = 34101, - [SMALL_STATE(991)] = 34145, - [SMALL_STATE(992)] = 34189, - [SMALL_STATE(993)] = 34229, - [SMALL_STATE(994)] = 34268, - [SMALL_STATE(995)] = 34307, - [SMALL_STATE(996)] = 34346, - [SMALL_STATE(997)] = 34385, - [SMALL_STATE(998)] = 34424, - [SMALL_STATE(999)] = 34463, - [SMALL_STATE(1000)] = 34502, - [SMALL_STATE(1001)] = 34541, - [SMALL_STATE(1002)] = 34580, - [SMALL_STATE(1003)] = 34619, - [SMALL_STATE(1004)] = 34658, - [SMALL_STATE(1005)] = 34697, - [SMALL_STATE(1006)] = 34736, - [SMALL_STATE(1007)] = 34775, - [SMALL_STATE(1008)] = 34814, - [SMALL_STATE(1009)] = 34855, - [SMALL_STATE(1010)] = 34894, - [SMALL_STATE(1011)] = 34933, - [SMALL_STATE(1012)] = 34972, - [SMALL_STATE(1013)] = 35011, - [SMALL_STATE(1014)] = 35050, - [SMALL_STATE(1015)] = 35089, - [SMALL_STATE(1016)] = 35128, - [SMALL_STATE(1017)] = 35167, - [SMALL_STATE(1018)] = 35206, - [SMALL_STATE(1019)] = 35245, - [SMALL_STATE(1020)] = 35284, - [SMALL_STATE(1021)] = 35323, - [SMALL_STATE(1022)] = 35362, - [SMALL_STATE(1023)] = 35409, - [SMALL_STATE(1024)] = 35448, - [SMALL_STATE(1025)] = 35487, - [SMALL_STATE(1026)] = 35526, - [SMALL_STATE(1027)] = 35588, - [SMALL_STATE(1028)] = 35639, - [SMALL_STATE(1029)] = 35698, - [SMALL_STATE(1030)] = 35757, - [SMALL_STATE(1031)] = 35808, - [SMALL_STATE(1032)] = 35883, - [SMALL_STATE(1033)] = 35942, - [SMALL_STATE(1034)] = 36001, - [SMALL_STATE(1035)] = 36072, - [SMALL_STATE(1036)] = 36147, - [SMALL_STATE(1037)] = 36222, - [SMALL_STATE(1038)] = 36281, - [SMALL_STATE(1039)] = 36332, - [SMALL_STATE(1040)] = 36391, - [SMALL_STATE(1041)] = 36442, - [SMALL_STATE(1042)] = 36515, - [SMALL_STATE(1043)] = 36574, - [SMALL_STATE(1044)] = 36621, - [SMALL_STATE(1045)] = 36680, - [SMALL_STATE(1046)] = 36731, - [SMALL_STATE(1047)] = 36806, - [SMALL_STATE(1048)] = 36878, - [SMALL_STATE(1049)] = 36950, - [SMALL_STATE(1050)] = 37022, - [SMALL_STATE(1051)] = 37094, - [SMALL_STATE(1052)] = 37166, - [SMALL_STATE(1053)] = 37238, - [SMALL_STATE(1054)] = 37310, - [SMALL_STATE(1055)] = 37382, - [SMALL_STATE(1056)] = 37454, - [SMALL_STATE(1057)] = 37526, - [SMALL_STATE(1058)] = 37598, - [SMALL_STATE(1059)] = 37668, - [SMALL_STATE(1060)] = 37740, - [SMALL_STATE(1061)] = 37810, - [SMALL_STATE(1062)] = 37882, - [SMALL_STATE(1063)] = 37954, - [SMALL_STATE(1064)] = 37998, - [SMALL_STATE(1065)] = 38070, - [SMALL_STATE(1066)] = 38142, - [SMALL_STATE(1067)] = 38214, - [SMALL_STATE(1068)] = 38286, - [SMALL_STATE(1069)] = 38358, - [SMALL_STATE(1070)] = 38430, - [SMALL_STATE(1071)] = 38502, - [SMALL_STATE(1072)] = 38574, - [SMALL_STATE(1073)] = 38646, - [SMALL_STATE(1074)] = 38718, - [SMALL_STATE(1075)] = 38790, - [SMALL_STATE(1076)] = 38862, - [SMALL_STATE(1077)] = 38934, - [SMALL_STATE(1078)] = 39006, - [SMALL_STATE(1079)] = 39078, - [SMALL_STATE(1080)] = 39150, - [SMALL_STATE(1081)] = 39222, - [SMALL_STATE(1082)] = 39294, - [SMALL_STATE(1083)] = 39366, - [SMALL_STATE(1084)] = 39438, - [SMALL_STATE(1085)] = 39510, - [SMALL_STATE(1086)] = 39582, - [SMALL_STATE(1087)] = 39654, - [SMALL_STATE(1088)] = 39726, - [SMALL_STATE(1089)] = 39798, - [SMALL_STATE(1090)] = 39870, - [SMALL_STATE(1091)] = 39942, - [SMALL_STATE(1092)] = 40014, - [SMALL_STATE(1093)] = 40086, - [SMALL_STATE(1094)] = 40158, - [SMALL_STATE(1095)] = 40230, - [SMALL_STATE(1096)] = 40302, - [SMALL_STATE(1097)] = 40374, - [SMALL_STATE(1098)] = 40446, - [SMALL_STATE(1099)] = 40518, - [SMALL_STATE(1100)] = 40590, - [SMALL_STATE(1101)] = 40662, - [SMALL_STATE(1102)] = 40734, - [SMALL_STATE(1103)] = 40806, - [SMALL_STATE(1104)] = 40878, - [SMALL_STATE(1105)] = 40948, - [SMALL_STATE(1106)] = 41020, - [SMALL_STATE(1107)] = 41092, - [SMALL_STATE(1108)] = 41164, - [SMALL_STATE(1109)] = 41236, - [SMALL_STATE(1110)] = 41308, - [SMALL_STATE(1111)] = 41380, - [SMALL_STATE(1112)] = 41452, - [SMALL_STATE(1113)] = 41522, - [SMALL_STATE(1114)] = 41594, - [SMALL_STATE(1115)] = 41666, - [SMALL_STATE(1116)] = 41738, - [SMALL_STATE(1117)] = 41808, - [SMALL_STATE(1118)] = 41880, - [SMALL_STATE(1119)] = 41952, - [SMALL_STATE(1120)] = 42024, - [SMALL_STATE(1121)] = 42096, - [SMALL_STATE(1122)] = 42168, - [SMALL_STATE(1123)] = 42240, - [SMALL_STATE(1124)] = 42312, - [SMALL_STATE(1125)] = 42384, - [SMALL_STATE(1126)] = 42454, - [SMALL_STATE(1127)] = 42509, - [SMALL_STATE(1128)] = 42578, - [SMALL_STATE(1129)] = 42647, - [SMALL_STATE(1130)] = 42716, - [SMALL_STATE(1131)] = 42785, - [SMALL_STATE(1132)] = 42840, - [SMALL_STATE(1133)] = 42909, - [SMALL_STATE(1134)] = 42978, - [SMALL_STATE(1135)] = 43047, - [SMALL_STATE(1136)] = 43100, - [SMALL_STATE(1137)] = 43169, - [SMALL_STATE(1138)] = 43238, - [SMALL_STATE(1139)] = 43307, - [SMALL_STATE(1140)] = 43362, - [SMALL_STATE(1141)] = 43431, - [SMALL_STATE(1142)] = 43500, - [SMALL_STATE(1143)] = 43569, - [SMALL_STATE(1144)] = 43638, - [SMALL_STATE(1145)] = 43705, - [SMALL_STATE(1146)] = 43774, - [SMALL_STATE(1147)] = 43835, - [SMALL_STATE(1148)] = 43904, - [SMALL_STATE(1149)] = 43959, - [SMALL_STATE(1150)] = 44028, - [SMALL_STATE(1151)] = 44097, - [SMALL_STATE(1152)] = 44166, - [SMALL_STATE(1153)] = 44235, - [SMALL_STATE(1154)] = 44298, - [SMALL_STATE(1155)] = 44355, - [SMALL_STATE(1156)] = 44414, - [SMALL_STATE(1157)] = 44483, - [SMALL_STATE(1158)] = 44536, - [SMALL_STATE(1159)] = 44587, - [SMALL_STATE(1160)] = 44656, - [SMALL_STATE(1161)] = 44725, - [SMALL_STATE(1162)] = 44794, - [SMALL_STATE(1163)] = 44863, - [SMALL_STATE(1164)] = 44932, - [SMALL_STATE(1165)] = 45001, - [SMALL_STATE(1166)] = 45064, - [SMALL_STATE(1167)] = 45113, - [SMALL_STATE(1168)] = 45178, - [SMALL_STATE(1169)] = 45230, - [SMALL_STATE(1170)] = 45282, - [SMALL_STATE(1171)] = 45334, - [SMALL_STATE(1172)] = 45386, - [SMALL_STATE(1173)] = 45438, - [SMALL_STATE(1174)] = 45476, - [SMALL_STATE(1175)] = 45510, - [SMALL_STATE(1176)] = 45562, - [SMALL_STATE(1177)] = 45614, - [SMALL_STATE(1178)] = 45680, - [SMALL_STATE(1179)] = 45718, - [SMALL_STATE(1180)] = 45770, - [SMALL_STATE(1181)] = 45822, - [SMALL_STATE(1182)] = 45874, - [SMALL_STATE(1183)] = 45926, - [SMALL_STATE(1184)] = 45978, - [SMALL_STATE(1185)] = 46030, - [SMALL_STATE(1186)] = 46082, - [SMALL_STATE(1187)] = 46134, - [SMALL_STATE(1188)] = 46186, - [SMALL_STATE(1189)] = 46238, - [SMALL_STATE(1190)] = 46276, - [SMALL_STATE(1191)] = 46328, - [SMALL_STATE(1192)] = 46380, - [SMALL_STATE(1193)] = 46432, - [SMALL_STATE(1194)] = 46484, - [SMALL_STATE(1195)] = 46536, - [SMALL_STATE(1196)] = 46588, - [SMALL_STATE(1197)] = 46640, - [SMALL_STATE(1198)] = 46678, - [SMALL_STATE(1199)] = 46730, - [SMALL_STATE(1200)] = 46782, - [SMALL_STATE(1201)] = 46834, - [SMALL_STATE(1202)] = 46886, - [SMALL_STATE(1203)] = 46938, - [SMALL_STATE(1204)] = 46990, - [SMALL_STATE(1205)] = 47042, - [SMALL_STATE(1206)] = 47094, - [SMALL_STATE(1207)] = 47146, - [SMALL_STATE(1208)] = 47182, - [SMALL_STATE(1209)] = 47234, - [SMALL_STATE(1210)] = 47286, - [SMALL_STATE(1211)] = 47329, - [SMALL_STATE(1212)] = 47370, - [SMALL_STATE(1213)] = 47411, - [SMALL_STATE(1214)] = 47449, - [SMALL_STATE(1215)] = 47484, - [SMALL_STATE(1216)] = 47519, - [SMALL_STATE(1217)] = 47554, - [SMALL_STATE(1218)] = 47588, - [SMALL_STATE(1219)] = 47634, - [SMALL_STATE(1220)] = 47680, - [SMALL_STATE(1221)] = 47710, - [SMALL_STATE(1222)] = 47740, - [SMALL_STATE(1223)] = 47786, - [SMALL_STATE(1224)] = 47832, - [SMALL_STATE(1225)] = 47878, - [SMALL_STATE(1226)] = 47924, - [SMALL_STATE(1227)] = 47967, - [SMALL_STATE(1228)] = 48010, - [SMALL_STATE(1229)] = 48065, - [SMALL_STATE(1230)] = 48098, - [SMALL_STATE(1231)] = 48141, - [SMALL_STATE(1232)] = 48184, - [SMALL_STATE(1233)] = 48227, - [SMALL_STATE(1234)] = 48270, - [SMALL_STATE(1235)] = 48307, - [SMALL_STATE(1236)] = 48350, - [SMALL_STATE(1237)] = 48405, - [SMALL_STATE(1238)] = 48448, - [SMALL_STATE(1239)] = 48488, - [SMALL_STATE(1240)] = 48528, - [SMALL_STATE(1241)] = 48568, - [SMALL_STATE(1242)] = 48608, - [SMALL_STATE(1243)] = 48648, - [SMALL_STATE(1244)] = 48688, - [SMALL_STATE(1245)] = 48728, - [SMALL_STATE(1246)] = 48756, - [SMALL_STATE(1247)] = 48796, - [SMALL_STATE(1248)] = 48836, - [SMALL_STATE(1249)] = 48876, - [SMALL_STATE(1250)] = 48916, - [SMALL_STATE(1251)] = 48956, - [SMALL_STATE(1252)] = 48996, - [SMALL_STATE(1253)] = 49036, - [SMALL_STATE(1254)] = 49076, - [SMALL_STATE(1255)] = 49116, - [SMALL_STATE(1256)] = 49156, - [SMALL_STATE(1257)] = 49196, - [SMALL_STATE(1258)] = 49224, - [SMALL_STATE(1259)] = 49252, - [SMALL_STATE(1260)] = 49280, - [SMALL_STATE(1261)] = 49312, - [SMALL_STATE(1262)] = 49340, - [SMALL_STATE(1263)] = 49388, - [SMALL_STATE(1264)] = 49434, - [SMALL_STATE(1265)] = 49480, - [SMALL_STATE(1266)] = 49520, - [SMALL_STATE(1267)] = 49560, - [SMALL_STATE(1268)] = 49600, - [SMALL_STATE(1269)] = 49644, - [SMALL_STATE(1270)] = 49686, - [SMALL_STATE(1271)] = 49726, - [SMALL_STATE(1272)] = 49762, - [SMALL_STATE(1273)] = 49796, - [SMALL_STATE(1274)] = 49836, - [SMALL_STATE(1275)] = 49876, - [SMALL_STATE(1276)] = 49916, - [SMALL_STATE(1277)] = 49956, - [SMALL_STATE(1278)] = 49996, - [SMALL_STATE(1279)] = 50024, - [SMALL_STATE(1280)] = 50052, - [SMALL_STATE(1281)] = 50080, - [SMALL_STATE(1282)] = 50120, - [SMALL_STATE(1283)] = 50160, - [SMALL_STATE(1284)] = 50200, - [SMALL_STATE(1285)] = 50240, - [SMALL_STATE(1286)] = 50290, - [SMALL_STATE(1287)] = 50330, - [SMALL_STATE(1288)] = 50370, - [SMALL_STATE(1289)] = 50410, - [SMALL_STATE(1290)] = 50450, - [SMALL_STATE(1291)] = 50490, - [SMALL_STATE(1292)] = 50518, - [SMALL_STATE(1293)] = 50566, - [SMALL_STATE(1294)] = 50606, - [SMALL_STATE(1295)] = 50634, - [SMALL_STATE(1296)] = 50661, - [SMALL_STATE(1297)] = 50700, - [SMALL_STATE(1298)] = 50745, - [SMALL_STATE(1299)] = 50790, - [SMALL_STATE(1300)] = 50817, - [SMALL_STATE(1301)] = 50844, - [SMALL_STATE(1302)] = 50871, - [SMALL_STATE(1303)] = 50916, - [SMALL_STATE(1304)] = 50943, - [SMALL_STATE(1305)] = 50988, - [SMALL_STATE(1306)] = 51033, - [SMALL_STATE(1307)] = 51062, - [SMALL_STATE(1308)] = 51089, - [SMALL_STATE(1309)] = 51134, - [SMALL_STATE(1310)] = 51183, - [SMALL_STATE(1311)] = 51228, - [SMALL_STATE(1312)] = 51277, - [SMALL_STATE(1313)] = 51322, - [SMALL_STATE(1314)] = 51349, - [SMALL_STATE(1315)] = 51376, - [SMALL_STATE(1316)] = 51419, - [SMALL_STATE(1317)] = 51446, - [SMALL_STATE(1318)] = 51491, - [SMALL_STATE(1319)] = 51536, - [SMALL_STATE(1320)] = 51581, - [SMALL_STATE(1321)] = 51612, - [SMALL_STATE(1322)] = 51657, - [SMALL_STATE(1323)] = 51698, - [SMALL_STATE(1324)] = 51731, - [SMALL_STATE(1325)] = 51766, - [SMALL_STATE(1326)] = 51803, - [SMALL_STATE(1327)] = 51830, - [SMALL_STATE(1328)] = 51864, - [SMALL_STATE(1329)] = 51902, - [SMALL_STATE(1330)] = 51940, - [SMALL_STATE(1331)] = 51974, - [SMALL_STATE(1332)] = 52012, - [SMALL_STATE(1333)] = 52050, - [SMALL_STATE(1334)] = 52088, - [SMALL_STATE(1335)] = 52126, - [SMALL_STATE(1336)] = 52167, - [SMALL_STATE(1337)] = 52208, - [SMALL_STATE(1338)] = 52249, - [SMALL_STATE(1339)] = 52290, - [SMALL_STATE(1340)] = 52322, - [SMALL_STATE(1341)] = 52354, - [SMALL_STATE(1342)] = 52392, - [SMALL_STATE(1343)] = 52424, - [SMALL_STATE(1344)] = 52448, - [SMALL_STATE(1345)] = 52480, - [SMALL_STATE(1346)] = 52512, - [SMALL_STATE(1347)] = 52544, - [SMALL_STATE(1348)] = 52582, - [SMALL_STATE(1349)] = 52614, - [SMALL_STATE(1350)] = 52652, - [SMALL_STATE(1351)] = 52684, - [SMALL_STATE(1352)] = 52716, - [SMALL_STATE(1353)] = 52748, - [SMALL_STATE(1354)] = 52786, - [SMALL_STATE(1355)] = 52818, - [SMALL_STATE(1356)] = 52856, - [SMALL_STATE(1357)] = 52888, - [SMALL_STATE(1358)] = 52911, - [SMALL_STATE(1359)] = 52940, - [SMALL_STATE(1360)] = 52969, - [SMALL_STATE(1361)] = 52998, - [SMALL_STATE(1362)] = 53025, - [SMALL_STATE(1363)] = 53052, - [SMALL_STATE(1364)] = 53079, - [SMALL_STATE(1365)] = 53102, - [SMALL_STATE(1366)] = 53131, - [SMALL_STATE(1367)] = 53160, - [SMALL_STATE(1368)] = 53187, - [SMALL_STATE(1369)] = 53216, - [SMALL_STATE(1370)] = 53243, - [SMALL_STATE(1371)] = 53270, - [SMALL_STATE(1372)] = 53301, - [SMALL_STATE(1373)] = 53328, - [SMALL_STATE(1374)] = 53355, - [SMALL_STATE(1375)] = 53382, - [SMALL_STATE(1376)] = 53411, - [SMALL_STATE(1377)] = 53438, - [SMALL_STATE(1378)] = 53461, - [SMALL_STATE(1379)] = 53490, - [SMALL_STATE(1380)] = 53514, - [SMALL_STATE(1381)] = 53546, - [SMALL_STATE(1382)] = 53578, - [SMALL_STATE(1383)] = 53610, - [SMALL_STATE(1384)] = 53632, - [SMALL_STATE(1385)] = 53650, - [SMALL_STATE(1386)] = 53668, - [SMALL_STATE(1387)] = 53700, - [SMALL_STATE(1388)] = 53732, - [SMALL_STATE(1389)] = 53754, - [SMALL_STATE(1390)] = 53772, - [SMALL_STATE(1391)] = 53804, - [SMALL_STATE(1392)] = 53828, - [SMALL_STATE(1393)] = 53857, - [SMALL_STATE(1394)] = 53882, - [SMALL_STATE(1395)] = 53903, - [SMALL_STATE(1396)] = 53932, - [SMALL_STATE(1397)] = 53961, - [SMALL_STATE(1398)] = 53990, - [SMALL_STATE(1399)] = 54011, - [SMALL_STATE(1400)] = 54040, - [SMALL_STATE(1401)] = 54069, - [SMALL_STATE(1402)] = 54098, - [SMALL_STATE(1403)] = 54127, - [SMALL_STATE(1404)] = 54156, - [SMALL_STATE(1405)] = 54185, - [SMALL_STATE(1406)] = 54214, - [SMALL_STATE(1407)] = 54243, - [SMALL_STATE(1408)] = 54272, - [SMALL_STATE(1409)] = 54297, - [SMALL_STATE(1410)] = 54326, - [SMALL_STATE(1411)] = 54355, - [SMALL_STATE(1412)] = 54380, - [SMALL_STATE(1413)] = 54401, - [SMALL_STATE(1414)] = 54430, - [SMALL_STATE(1415)] = 54459, - [SMALL_STATE(1416)] = 54480, - [SMALL_STATE(1417)] = 54509, - [SMALL_STATE(1418)] = 54530, - [SMALL_STATE(1419)] = 54559, - [SMALL_STATE(1420)] = 54584, - [SMALL_STATE(1421)] = 54611, - [SMALL_STATE(1422)] = 54640, - [SMALL_STATE(1423)] = 54656, - [SMALL_STATE(1424)] = 54674, - [SMALL_STATE(1425)] = 54700, - [SMALL_STATE(1426)] = 54716, - [SMALL_STATE(1427)] = 54732, - [SMALL_STATE(1428)] = 54758, - [SMALL_STATE(1429)] = 54774, - [SMALL_STATE(1430)] = 54790, - [SMALL_STATE(1431)] = 54810, - [SMALL_STATE(1432)] = 54834, - [SMALL_STATE(1433)] = 54860, - [SMALL_STATE(1434)] = 54876, - [SMALL_STATE(1435)] = 54892, - [SMALL_STATE(1436)] = 54908, - [SMALL_STATE(1437)] = 54924, - [SMALL_STATE(1438)] = 54940, - [SMALL_STATE(1439)] = 54966, - [SMALL_STATE(1440)] = 54986, - [SMALL_STATE(1441)] = 55010, - [SMALL_STATE(1442)] = 55026, - [SMALL_STATE(1443)] = 55042, - [SMALL_STATE(1444)] = 55062, - [SMALL_STATE(1445)] = 55078, - [SMALL_STATE(1446)] = 55104, - [SMALL_STATE(1447)] = 55120, - [SMALL_STATE(1448)] = 55143, - [SMALL_STATE(1449)] = 55166, - [SMALL_STATE(1450)] = 55183, - [SMALL_STATE(1451)] = 55200, - [SMALL_STATE(1452)] = 55223, - [SMALL_STATE(1453)] = 55241, - [SMALL_STATE(1454)] = 55255, - [SMALL_STATE(1455)] = 55269, - [SMALL_STATE(1456)] = 55285, - [SMALL_STATE(1457)] = 55303, - [SMALL_STATE(1458)] = 55321, - [SMALL_STATE(1459)] = 55339, - [SMALL_STATE(1460)] = 55357, - [SMALL_STATE(1461)] = 55371, - [SMALL_STATE(1462)] = 55385, - [SMALL_STATE(1463)] = 55399, - [SMALL_STATE(1464)] = 55413, - [SMALL_STATE(1465)] = 55427, - [SMALL_STATE(1466)] = 55445, - [SMALL_STATE(1467)] = 55459, - [SMALL_STATE(1468)] = 55473, - [SMALL_STATE(1469)] = 55489, - [SMALL_STATE(1470)] = 55507, - [SMALL_STATE(1471)] = 55525, - [SMALL_STATE(1472)] = 55541, - [SMALL_STATE(1473)] = 55555, - [SMALL_STATE(1474)] = 55569, - [SMALL_STATE(1475)] = 55583, - [SMALL_STATE(1476)] = 55594, - [SMALL_STATE(1477)] = 55605, - [SMALL_STATE(1478)] = 55616, - [SMALL_STATE(1479)] = 55627, - [SMALL_STATE(1480)] = 55646, - [SMALL_STATE(1481)] = 55657, - [SMALL_STATE(1482)] = 55668, - [SMALL_STATE(1483)] = 55679, - [SMALL_STATE(1484)] = 55690, - [SMALL_STATE(1485)] = 55709, - [SMALL_STATE(1486)] = 55726, - [SMALL_STATE(1487)] = 55745, - [SMALL_STATE(1488)] = 55764, - [SMALL_STATE(1489)] = 55783, - [SMALL_STATE(1490)] = 55802, - [SMALL_STATE(1491)] = 55813, - [SMALL_STATE(1492)] = 55832, - [SMALL_STATE(1493)] = 55851, - [SMALL_STATE(1494)] = 55870, - [SMALL_STATE(1495)] = 55889, - [SMALL_STATE(1496)] = 55908, - [SMALL_STATE(1497)] = 55927, - [SMALL_STATE(1498)] = 55938, - [SMALL_STATE(1499)] = 55955, - [SMALL_STATE(1500)] = 55966, - [SMALL_STATE(1501)] = 55985, - [SMALL_STATE(1502)] = 55996, - [SMALL_STATE(1503)] = 56015, - [SMALL_STATE(1504)] = 56031, - [SMALL_STATE(1505)] = 56047, - [SMALL_STATE(1506)] = 56063, - [SMALL_STATE(1507)] = 56079, - [SMALL_STATE(1508)] = 56093, - [SMALL_STATE(1509)] = 56109, - [SMALL_STATE(1510)] = 56125, - [SMALL_STATE(1511)] = 56139, - [SMALL_STATE(1512)] = 56155, - [SMALL_STATE(1513)] = 56165, - [SMALL_STATE(1514)] = 56179, - [SMALL_STATE(1515)] = 56195, - [SMALL_STATE(1516)] = 56209, - [SMALL_STATE(1517)] = 56223, - [SMALL_STATE(1518)] = 56237, - [SMALL_STATE(1519)] = 56251, - [SMALL_STATE(1520)] = 56267, - [SMALL_STATE(1521)] = 56283, - [SMALL_STATE(1522)] = 56297, - [SMALL_STATE(1523)] = 56313, - [SMALL_STATE(1524)] = 56327, - [SMALL_STATE(1525)] = 56343, - [SMALL_STATE(1526)] = 56359, - [SMALL_STATE(1527)] = 56375, - [SMALL_STATE(1528)] = 56389, - [SMALL_STATE(1529)] = 56405, - [SMALL_STATE(1530)] = 56419, - [SMALL_STATE(1531)] = 56435, - [SMALL_STATE(1532)] = 56451, - [SMALL_STATE(1533)] = 56467, - [SMALL_STATE(1534)] = 56480, - [SMALL_STATE(1535)] = 56493, - [SMALL_STATE(1536)] = 56506, - [SMALL_STATE(1537)] = 56519, - [SMALL_STATE(1538)] = 56532, - [SMALL_STATE(1539)] = 56545, - [SMALL_STATE(1540)] = 56558, - [SMALL_STATE(1541)] = 56571, - [SMALL_STATE(1542)] = 56584, - [SMALL_STATE(1543)] = 56597, - [SMALL_STATE(1544)] = 56606, - [SMALL_STATE(1545)] = 56619, - [SMALL_STATE(1546)] = 56632, - [SMALL_STATE(1547)] = 56641, - [SMALL_STATE(1548)] = 56654, - [SMALL_STATE(1549)] = 56667, - [SMALL_STATE(1550)] = 56680, - [SMALL_STATE(1551)] = 56693, - [SMALL_STATE(1552)] = 56706, - [SMALL_STATE(1553)] = 56719, - [SMALL_STATE(1554)] = 56732, - [SMALL_STATE(1555)] = 56745, - [SMALL_STATE(1556)] = 56758, - [SMALL_STATE(1557)] = 56771, - [SMALL_STATE(1558)] = 56782, - [SMALL_STATE(1559)] = 56795, - [SMALL_STATE(1560)] = 56808, - [SMALL_STATE(1561)] = 56821, - [SMALL_STATE(1562)] = 56834, - [SMALL_STATE(1563)] = 56847, - [SMALL_STATE(1564)] = 56860, - [SMALL_STATE(1565)] = 56869, - [SMALL_STATE(1566)] = 56882, - [SMALL_STATE(1567)] = 56895, - [SMALL_STATE(1568)] = 56908, - [SMALL_STATE(1569)] = 56921, - [SMALL_STATE(1570)] = 56934, - [SMALL_STATE(1571)] = 56947, - [SMALL_STATE(1572)] = 56960, - [SMALL_STATE(1573)] = 56973, - [SMALL_STATE(1574)] = 56986, - [SMALL_STATE(1575)] = 56999, - [SMALL_STATE(1576)] = 57012, - [SMALL_STATE(1577)] = 57025, - [SMALL_STATE(1578)] = 57038, - [SMALL_STATE(1579)] = 57051, - [SMALL_STATE(1580)] = 57064, - [SMALL_STATE(1581)] = 57077, - [SMALL_STATE(1582)] = 57090, - [SMALL_STATE(1583)] = 57103, - [SMALL_STATE(1584)] = 57114, - [SMALL_STATE(1585)] = 57127, - [SMALL_STATE(1586)] = 57140, - [SMALL_STATE(1587)] = 57153, - [SMALL_STATE(1588)] = 57166, - [SMALL_STATE(1589)] = 57179, - [SMALL_STATE(1590)] = 57192, - [SMALL_STATE(1591)] = 57201, - [SMALL_STATE(1592)] = 57210, - [SMALL_STATE(1593)] = 57223, - [SMALL_STATE(1594)] = 57236, - [SMALL_STATE(1595)] = 57249, - [SMALL_STATE(1596)] = 57262, - [SMALL_STATE(1597)] = 57275, - [SMALL_STATE(1598)] = 57288, - [SMALL_STATE(1599)] = 57301, - [SMALL_STATE(1600)] = 57310, - [SMALL_STATE(1601)] = 57323, - [SMALL_STATE(1602)] = 57336, - [SMALL_STATE(1603)] = 57349, - [SMALL_STATE(1604)] = 57362, - [SMALL_STATE(1605)] = 57375, - [SMALL_STATE(1606)] = 57388, - [SMALL_STATE(1607)] = 57397, - [SMALL_STATE(1608)] = 57410, - [SMALL_STATE(1609)] = 57423, - [SMALL_STATE(1610)] = 57436, - [SMALL_STATE(1611)] = 57449, - [SMALL_STATE(1612)] = 57458, - [SMALL_STATE(1613)] = 57471, - [SMALL_STATE(1614)] = 57484, - [SMALL_STATE(1615)] = 57497, - [SMALL_STATE(1616)] = 57510, - [SMALL_STATE(1617)] = 57523, - [SMALL_STATE(1618)] = 57536, - [SMALL_STATE(1619)] = 57549, - [SMALL_STATE(1620)] = 57562, - [SMALL_STATE(1621)] = 57575, - [SMALL_STATE(1622)] = 57588, - [SMALL_STATE(1623)] = 57601, - [SMALL_STATE(1624)] = 57610, - [SMALL_STATE(1625)] = 57623, - [SMALL_STATE(1626)] = 57636, - [SMALL_STATE(1627)] = 57645, - [SMALL_STATE(1628)] = 57658, - [SMALL_STATE(1629)] = 57671, - [SMALL_STATE(1630)] = 57684, - [SMALL_STATE(1631)] = 57697, - [SMALL_STATE(1632)] = 57710, - [SMALL_STATE(1633)] = 57723, - [SMALL_STATE(1634)] = 57736, - [SMALL_STATE(1635)] = 57749, - [SMALL_STATE(1636)] = 57762, - [SMALL_STATE(1637)] = 57775, - [SMALL_STATE(1638)] = 57785, - [SMALL_STATE(1639)] = 57793, - [SMALL_STATE(1640)] = 57803, - [SMALL_STATE(1641)] = 57813, - [SMALL_STATE(1642)] = 57821, - [SMALL_STATE(1643)] = 57831, - [SMALL_STATE(1644)] = 57841, - [SMALL_STATE(1645)] = 57851, - [SMALL_STATE(1646)] = 57861, - [SMALL_STATE(1647)] = 57869, - [SMALL_STATE(1648)] = 57877, - [SMALL_STATE(1649)] = 57885, - [SMALL_STATE(1650)] = 57895, - [SMALL_STATE(1651)] = 57905, - [SMALL_STATE(1652)] = 57913, - [SMALL_STATE(1653)] = 57923, - [SMALL_STATE(1654)] = 57931, - [SMALL_STATE(1655)] = 57939, - [SMALL_STATE(1656)] = 57947, - [SMALL_STATE(1657)] = 57957, - [SMALL_STATE(1658)] = 57965, - [SMALL_STATE(1659)] = 57975, - [SMALL_STATE(1660)] = 57985, - [SMALL_STATE(1661)] = 57995, - [SMALL_STATE(1662)] = 58003, - [SMALL_STATE(1663)] = 58013, - [SMALL_STATE(1664)] = 58023, - [SMALL_STATE(1665)] = 58031, - [SMALL_STATE(1666)] = 58041, - [SMALL_STATE(1667)] = 58049, - [SMALL_STATE(1668)] = 58059, - [SMALL_STATE(1669)] = 58069, - [SMALL_STATE(1670)] = 58079, - [SMALL_STATE(1671)] = 58089, - [SMALL_STATE(1672)] = 58099, - [SMALL_STATE(1673)] = 58109, - [SMALL_STATE(1674)] = 58117, - [SMALL_STATE(1675)] = 58125, - [SMALL_STATE(1676)] = 58133, - [SMALL_STATE(1677)] = 58143, - [SMALL_STATE(1678)] = 58153, - [SMALL_STATE(1679)] = 58163, - [SMALL_STATE(1680)] = 58173, - [SMALL_STATE(1681)] = 58181, - [SMALL_STATE(1682)] = 58189, - [SMALL_STATE(1683)] = 58199, - [SMALL_STATE(1684)] = 58209, - [SMALL_STATE(1685)] = 58219, - [SMALL_STATE(1686)] = 58229, - [SMALL_STATE(1687)] = 58239, - [SMALL_STATE(1688)] = 58249, - [SMALL_STATE(1689)] = 58259, - [SMALL_STATE(1690)] = 58267, - [SMALL_STATE(1691)] = 58277, - [SMALL_STATE(1692)] = 58287, - [SMALL_STATE(1693)] = 58295, - [SMALL_STATE(1694)] = 58305, - [SMALL_STATE(1695)] = 58315, - [SMALL_STATE(1696)] = 58325, - [SMALL_STATE(1697)] = 58335, - [SMALL_STATE(1698)] = 58345, - [SMALL_STATE(1699)] = 58355, - [SMALL_STATE(1700)] = 58363, - [SMALL_STATE(1701)] = 58373, - [SMALL_STATE(1702)] = 58383, - [SMALL_STATE(1703)] = 58393, - [SMALL_STATE(1704)] = 58403, - [SMALL_STATE(1705)] = 58413, - [SMALL_STATE(1706)] = 58423, - [SMALL_STATE(1707)] = 58433, - [SMALL_STATE(1708)] = 58443, - [SMALL_STATE(1709)] = 58453, - [SMALL_STATE(1710)] = 58463, - [SMALL_STATE(1711)] = 58473, - [SMALL_STATE(1712)] = 58483, - [SMALL_STATE(1713)] = 58493, - [SMALL_STATE(1714)] = 58500, - [SMALL_STATE(1715)] = 58507, - [SMALL_STATE(1716)] = 58514, - [SMALL_STATE(1717)] = 58521, - [SMALL_STATE(1718)] = 58528, - [SMALL_STATE(1719)] = 58535, - [SMALL_STATE(1720)] = 58542, - [SMALL_STATE(1721)] = 58549, - [SMALL_STATE(1722)] = 58556, - [SMALL_STATE(1723)] = 58563, - [SMALL_STATE(1724)] = 58570, - [SMALL_STATE(1725)] = 58577, - [SMALL_STATE(1726)] = 58584, - [SMALL_STATE(1727)] = 58591, - [SMALL_STATE(1728)] = 58598, - [SMALL_STATE(1729)] = 58605, - [SMALL_STATE(1730)] = 58612, - [SMALL_STATE(1731)] = 58619, - [SMALL_STATE(1732)] = 58626, - [SMALL_STATE(1733)] = 58633, - [SMALL_STATE(1734)] = 58640, - [SMALL_STATE(1735)] = 58647, - [SMALL_STATE(1736)] = 58654, - [SMALL_STATE(1737)] = 58661, - [SMALL_STATE(1738)] = 58668, - [SMALL_STATE(1739)] = 58675, - [SMALL_STATE(1740)] = 58682, - [SMALL_STATE(1741)] = 58689, - [SMALL_STATE(1742)] = 58696, - [SMALL_STATE(1743)] = 58703, - [SMALL_STATE(1744)] = 58710, - [SMALL_STATE(1745)] = 58717, - [SMALL_STATE(1746)] = 58724, - [SMALL_STATE(1747)] = 58731, - [SMALL_STATE(1748)] = 58738, - [SMALL_STATE(1749)] = 58745, - [SMALL_STATE(1750)] = 58752, - [SMALL_STATE(1751)] = 58759, - [SMALL_STATE(1752)] = 58766, - [SMALL_STATE(1753)] = 58773, - [SMALL_STATE(1754)] = 58780, - [SMALL_STATE(1755)] = 58787, - [SMALL_STATE(1756)] = 58794, - [SMALL_STATE(1757)] = 58801, - [SMALL_STATE(1758)] = 58808, - [SMALL_STATE(1759)] = 58815, - [SMALL_STATE(1760)] = 58822, - [SMALL_STATE(1761)] = 58829, - [SMALL_STATE(1762)] = 58836, - [SMALL_STATE(1763)] = 58843, - [SMALL_STATE(1764)] = 58850, - [SMALL_STATE(1765)] = 58857, - [SMALL_STATE(1766)] = 58864, - [SMALL_STATE(1767)] = 58871, - [SMALL_STATE(1768)] = 58878, - [SMALL_STATE(1769)] = 58885, - [SMALL_STATE(1770)] = 58892, - [SMALL_STATE(1771)] = 58899, - [SMALL_STATE(1772)] = 58906, - [SMALL_STATE(1773)] = 58913, - [SMALL_STATE(1774)] = 58920, - [SMALL_STATE(1775)] = 58927, - [SMALL_STATE(1776)] = 58934, - [SMALL_STATE(1777)] = 58941, - [SMALL_STATE(1778)] = 58948, - [SMALL_STATE(1779)] = 58955, - [SMALL_STATE(1780)] = 58962, - [SMALL_STATE(1781)] = 58969, - [SMALL_STATE(1782)] = 58976, - [SMALL_STATE(1783)] = 58983, - [SMALL_STATE(1784)] = 58990, - [SMALL_STATE(1785)] = 58997, - [SMALL_STATE(1786)] = 59004, - [SMALL_STATE(1787)] = 59011, - [SMALL_STATE(1788)] = 59018, - [SMALL_STATE(1789)] = 59025, - [SMALL_STATE(1790)] = 59032, - [SMALL_STATE(1791)] = 59039, - [SMALL_STATE(1792)] = 59046, - [SMALL_STATE(1793)] = 59053, - [SMALL_STATE(1794)] = 59060, - [SMALL_STATE(1795)] = 59067, - [SMALL_STATE(1796)] = 59074, - [SMALL_STATE(1797)] = 59081, - [SMALL_STATE(1798)] = 59088, - [SMALL_STATE(1799)] = 59095, - [SMALL_STATE(1800)] = 59102, - [SMALL_STATE(1801)] = 59109, - [SMALL_STATE(1802)] = 59116, - [SMALL_STATE(1803)] = 59123, - [SMALL_STATE(1804)] = 59130, - [SMALL_STATE(1805)] = 59137, - [SMALL_STATE(1806)] = 59144, - [SMALL_STATE(1807)] = 59151, - [SMALL_STATE(1808)] = 59158, - [SMALL_STATE(1809)] = 59165, - [SMALL_STATE(1810)] = 59172, - [SMALL_STATE(1811)] = 59179, - [SMALL_STATE(1812)] = 59186, - [SMALL_STATE(1813)] = 59193, - [SMALL_STATE(1814)] = 59200, - [SMALL_STATE(1815)] = 59207, - [SMALL_STATE(1816)] = 59214, - [SMALL_STATE(1817)] = 59221, - [SMALL_STATE(1818)] = 59228, - [SMALL_STATE(1819)] = 59235, - [SMALL_STATE(1820)] = 59242, - [SMALL_STATE(1821)] = 59249, - [SMALL_STATE(1822)] = 59256, - [SMALL_STATE(1823)] = 59263, - [SMALL_STATE(1824)] = 59270, - [SMALL_STATE(1825)] = 59277, - [SMALL_STATE(1826)] = 59284, - [SMALL_STATE(1827)] = 59291, - [SMALL_STATE(1828)] = 59298, - [SMALL_STATE(1829)] = 59305, - [SMALL_STATE(1830)] = 59312, - [SMALL_STATE(1831)] = 59319, - [SMALL_STATE(1832)] = 59326, - [SMALL_STATE(1833)] = 59333, - [SMALL_STATE(1834)] = 59340, - [SMALL_STATE(1835)] = 59347, - [SMALL_STATE(1836)] = 59354, - [SMALL_STATE(1837)] = 59361, - [SMALL_STATE(1838)] = 59368, - [SMALL_STATE(1839)] = 59375, - [SMALL_STATE(1840)] = 59382, - [SMALL_STATE(1841)] = 59389, - [SMALL_STATE(1842)] = 59396, - [SMALL_STATE(1843)] = 59403, - [SMALL_STATE(1844)] = 59410, - [SMALL_STATE(1845)] = 59417, - [SMALL_STATE(1846)] = 59424, - [SMALL_STATE(1847)] = 59431, - [SMALL_STATE(1848)] = 59438, - [SMALL_STATE(1849)] = 59445, - [SMALL_STATE(1850)] = 59452, - [SMALL_STATE(1851)] = 59459, - [SMALL_STATE(1852)] = 59466, - [SMALL_STATE(1853)] = 59473, - [SMALL_STATE(1854)] = 59480, - [SMALL_STATE(1855)] = 59487, - [SMALL_STATE(1856)] = 59494, - [SMALL_STATE(1857)] = 59501, - [SMALL_STATE(1858)] = 59508, - [SMALL_STATE(1859)] = 59515, - [SMALL_STATE(1860)] = 59522, - [SMALL_STATE(1861)] = 59529, - [SMALL_STATE(1862)] = 59536, - [SMALL_STATE(1863)] = 59543, - [SMALL_STATE(1864)] = 59550, - [SMALL_STATE(1865)] = 59557, - [SMALL_STATE(1866)] = 59564, - [SMALL_STATE(1867)] = 59571, - [SMALL_STATE(1868)] = 59578, - [SMALL_STATE(1869)] = 59585, - [SMALL_STATE(1870)] = 59592, - [SMALL_STATE(1871)] = 59599, - [SMALL_STATE(1872)] = 59606, - [SMALL_STATE(1873)] = 59613, - [SMALL_STATE(1874)] = 59620, - [SMALL_STATE(1875)] = 59627, - [SMALL_STATE(1876)] = 59634, - [SMALL_STATE(1877)] = 59641, - [SMALL_STATE(1878)] = 59648, - [SMALL_STATE(1879)] = 59655, - [SMALL_STATE(1880)] = 59662, - [SMALL_STATE(1881)] = 59669, - [SMALL_STATE(1882)] = 59676, - [SMALL_STATE(1883)] = 59683, - [SMALL_STATE(1884)] = 59690, - [SMALL_STATE(1885)] = 59697, - [SMALL_STATE(1886)] = 59704, - [SMALL_STATE(1887)] = 59711, - [SMALL_STATE(1888)] = 59718, - [SMALL_STATE(1889)] = 59725, - [SMALL_STATE(1890)] = 59732, - [SMALL_STATE(1891)] = 59739, - [SMALL_STATE(1892)] = 59746, - [SMALL_STATE(1893)] = 59753, - [SMALL_STATE(1894)] = 59760, - [SMALL_STATE(1895)] = 59767, - [SMALL_STATE(1896)] = 59774, - [SMALL_STATE(1897)] = 59781, - [SMALL_STATE(1898)] = 59788, - [SMALL_STATE(1899)] = 59795, - [SMALL_STATE(1900)] = 59802, - [SMALL_STATE(1901)] = 59809, - [SMALL_STATE(1902)] = 59816, - [SMALL_STATE(1903)] = 59823, - [SMALL_STATE(1904)] = 59830, - [SMALL_STATE(1905)] = 59837, - [SMALL_STATE(1906)] = 59844, - [SMALL_STATE(1907)] = 59851, - [SMALL_STATE(1908)] = 59858, - [SMALL_STATE(1909)] = 59865, - [SMALL_STATE(1910)] = 59872, - [SMALL_STATE(1911)] = 59879, - [SMALL_STATE(1912)] = 59886, - [SMALL_STATE(1913)] = 59893, - [SMALL_STATE(1914)] = 59900, - [SMALL_STATE(1915)] = 59907, - [SMALL_STATE(1916)] = 59914, - [SMALL_STATE(1917)] = 59921, - [SMALL_STATE(1918)] = 59928, - [SMALL_STATE(1919)] = 59935, - [SMALL_STATE(1920)] = 59942, - [SMALL_STATE(1921)] = 59949, - [SMALL_STATE(1922)] = 59956, - [SMALL_STATE(1923)] = 59963, - [SMALL_STATE(1924)] = 59970, - [SMALL_STATE(1925)] = 59977, - [SMALL_STATE(1926)] = 59984, - [SMALL_STATE(1927)] = 59991, - [SMALL_STATE(1928)] = 59998, - [SMALL_STATE(1929)] = 60005, - [SMALL_STATE(1930)] = 60012, - [SMALL_STATE(1931)] = 60019, - [SMALL_STATE(1932)] = 60026, - [SMALL_STATE(1933)] = 60033, - [SMALL_STATE(1934)] = 60040, - [SMALL_STATE(1935)] = 60047, - [SMALL_STATE(1936)] = 60054, - [SMALL_STATE(1937)] = 60061, - [SMALL_STATE(1938)] = 60068, - [SMALL_STATE(1939)] = 60075, - [SMALL_STATE(1940)] = 60082, - [SMALL_STATE(1941)] = 60089, - [SMALL_STATE(1942)] = 60096, - [SMALL_STATE(1943)] = 60103, - [SMALL_STATE(1944)] = 60110, - [SMALL_STATE(1945)] = 60117, - [SMALL_STATE(1946)] = 60124, - [SMALL_STATE(1947)] = 60131, - [SMALL_STATE(1948)] = 60138, - [SMALL_STATE(1949)] = 60145, - [SMALL_STATE(1950)] = 60152, - [SMALL_STATE(1951)] = 60159, - [SMALL_STATE(1952)] = 60166, - [SMALL_STATE(1953)] = 60173, - [SMALL_STATE(1954)] = 60180, - [SMALL_STATE(1955)] = 60187, - [SMALL_STATE(1956)] = 60194, - [SMALL_STATE(1957)] = 60201, - [SMALL_STATE(1958)] = 60208, - [SMALL_STATE(1959)] = 60215, - [SMALL_STATE(1960)] = 60222, - [SMALL_STATE(1961)] = 60229, - [SMALL_STATE(1962)] = 60236, - [SMALL_STATE(1963)] = 60243, - [SMALL_STATE(1964)] = 60250, - [SMALL_STATE(1965)] = 60257, - [SMALL_STATE(1966)] = 60264, - [SMALL_STATE(1967)] = 60271, - [SMALL_STATE(1968)] = 60278, - [SMALL_STATE(1969)] = 60285, - [SMALL_STATE(1970)] = 60292, - [SMALL_STATE(1971)] = 60299, - [SMALL_STATE(1972)] = 60306, - [SMALL_STATE(1973)] = 60313, - [SMALL_STATE(1974)] = 60320, - [SMALL_STATE(1975)] = 60327, - [SMALL_STATE(1976)] = 60334, - [SMALL_STATE(1977)] = 60341, - [SMALL_STATE(1978)] = 60348, - [SMALL_STATE(1979)] = 60355, - [SMALL_STATE(1980)] = 60362, - [SMALL_STATE(1981)] = 60369, - [SMALL_STATE(1982)] = 60376, - [SMALL_STATE(1983)] = 60383, - [SMALL_STATE(1984)] = 60390, - [SMALL_STATE(1985)] = 60397, - [SMALL_STATE(1986)] = 60404, - [SMALL_STATE(1987)] = 60411, - [SMALL_STATE(1988)] = 60418, - [SMALL_STATE(1989)] = 60425, - [SMALL_STATE(1990)] = 60432, - [SMALL_STATE(1991)] = 60439, - [SMALL_STATE(1992)] = 60446, - [SMALL_STATE(1993)] = 60453, - [SMALL_STATE(1994)] = 60460, - [SMALL_STATE(1995)] = 60467, - [SMALL_STATE(1996)] = 60474, + [SMALL_STATE(910)] = 30486, + [SMALL_STATE(911)] = 30527, + [SMALL_STATE(912)] = 30568, + [SMALL_STATE(913)] = 30609, + [SMALL_STATE(914)] = 30650, + [SMALL_STATE(915)] = 30691, + [SMALL_STATE(916)] = 30761, + [SMALL_STATE(917)] = 30819, + [SMALL_STATE(918)] = 30871, + [SMALL_STATE(919)] = 30923, + [SMALL_STATE(920)] = 30967, + [SMALL_STATE(921)] = 31041, + [SMALL_STATE(922)] = 31085, + [SMALL_STATE(923)] = 31125, + [SMALL_STATE(924)] = 31177, + [SMALL_STATE(925)] = 31221, + [SMALL_STATE(926)] = 31261, + [SMALL_STATE(927)] = 31305, + [SMALL_STATE(928)] = 31345, + [SMALL_STATE(929)] = 31385, + [SMALL_STATE(930)] = 31425, + [SMALL_STATE(931)] = 31469, + [SMALL_STATE(932)] = 31513, + [SMALL_STATE(933)] = 31553, + [SMALL_STATE(934)] = 31593, + [SMALL_STATE(935)] = 31665, + [SMALL_STATE(936)] = 31705, + [SMALL_STATE(937)] = 31745, + [SMALL_STATE(938)] = 31785, + [SMALL_STATE(939)] = 31825, + [SMALL_STATE(940)] = 31869, + [SMALL_STATE(941)] = 31909, + [SMALL_STATE(942)] = 31983, + [SMALL_STATE(943)] = 32023, + [SMALL_STATE(944)] = 32063, + [SMALL_STATE(945)] = 32103, + [SMALL_STATE(946)] = 32161, + [SMALL_STATE(947)] = 32205, + [SMALL_STATE(948)] = 32245, + [SMALL_STATE(949)] = 32285, + [SMALL_STATE(950)] = 32325, + [SMALL_STATE(951)] = 32365, + [SMALL_STATE(952)] = 32405, + [SMALL_STATE(953)] = 32449, + [SMALL_STATE(954)] = 32489, + [SMALL_STATE(955)] = 32529, + [SMALL_STATE(956)] = 32569, + [SMALL_STATE(957)] = 32609, + [SMALL_STATE(958)] = 32649, + [SMALL_STATE(959)] = 32689, + [SMALL_STATE(960)] = 32729, + [SMALL_STATE(961)] = 32769, + [SMALL_STATE(962)] = 32809, + [SMALL_STATE(963)] = 32863, + [SMALL_STATE(964)] = 32907, + [SMALL_STATE(965)] = 32947, + [SMALL_STATE(966)] = 32987, + [SMALL_STATE(967)] = 33027, + [SMALL_STATE(968)] = 33067, + [SMALL_STATE(969)] = 33107, + [SMALL_STATE(970)] = 33151, + [SMALL_STATE(971)] = 33191, + [SMALL_STATE(972)] = 33259, + [SMALL_STATE(973)] = 33299, + [SMALL_STATE(974)] = 33339, + [SMALL_STATE(975)] = 33383, + [SMALL_STATE(976)] = 33423, + [SMALL_STATE(977)] = 33491, + [SMALL_STATE(978)] = 33531, + [SMALL_STATE(979)] = 33597, + [SMALL_STATE(980)] = 33649, + [SMALL_STATE(981)] = 33689, + [SMALL_STATE(982)] = 33753, + [SMALL_STATE(983)] = 33793, + [SMALL_STATE(984)] = 33855, + [SMALL_STATE(985)] = 33895, + [SMALL_STATE(986)] = 33935, + [SMALL_STATE(987)] = 33975, + [SMALL_STATE(988)] = 34015, + [SMALL_STATE(989)] = 34071, + [SMALL_STATE(990)] = 34111, + [SMALL_STATE(991)] = 34155, + [SMALL_STATE(992)] = 34195, + [SMALL_STATE(993)] = 34235, + [SMALL_STATE(994)] = 34279, + [SMALL_STATE(995)] = 34323, + [SMALL_STATE(996)] = 34367, + [SMALL_STATE(997)] = 34406, + [SMALL_STATE(998)] = 34445, + [SMALL_STATE(999)] = 34484, + [SMALL_STATE(1000)] = 34523, + [SMALL_STATE(1001)] = 34562, + [SMALL_STATE(1002)] = 34601, + [SMALL_STATE(1003)] = 34640, + [SMALL_STATE(1004)] = 34687, + [SMALL_STATE(1005)] = 34726, + [SMALL_STATE(1006)] = 34765, + [SMALL_STATE(1007)] = 34804, + [SMALL_STATE(1008)] = 34843, + [SMALL_STATE(1009)] = 34882, + [SMALL_STATE(1010)] = 34921, + [SMALL_STATE(1011)] = 34960, + [SMALL_STATE(1012)] = 34999, + [SMALL_STATE(1013)] = 35038, + [SMALL_STATE(1014)] = 35077, + [SMALL_STATE(1015)] = 35116, + [SMALL_STATE(1016)] = 35155, + [SMALL_STATE(1017)] = 35194, + [SMALL_STATE(1018)] = 35233, + [SMALL_STATE(1019)] = 35272, + [SMALL_STATE(1020)] = 35311, + [SMALL_STATE(1021)] = 35350, + [SMALL_STATE(1022)] = 35389, + [SMALL_STATE(1023)] = 35428, + [SMALL_STATE(1024)] = 35467, + [SMALL_STATE(1025)] = 35506, + [SMALL_STATE(1026)] = 35547, + [SMALL_STATE(1027)] = 35586, + [SMALL_STATE(1028)] = 35625, + [SMALL_STATE(1029)] = 35664, + [SMALL_STATE(1030)] = 35703, + [SMALL_STATE(1031)] = 35742, + [SMALL_STATE(1032)] = 35781, + [SMALL_STATE(1033)] = 35843, + [SMALL_STATE(1034)] = 35918, + [SMALL_STATE(1035)] = 35993, + [SMALL_STATE(1036)] = 36052, + [SMALL_STATE(1037)] = 36111, + [SMALL_STATE(1038)] = 36170, + [SMALL_STATE(1039)] = 36229, + [SMALL_STATE(1040)] = 36288, + [SMALL_STATE(1041)] = 36363, + [SMALL_STATE(1042)] = 36410, + [SMALL_STATE(1043)] = 36469, + [SMALL_STATE(1044)] = 36520, + [SMALL_STATE(1045)] = 36571, + [SMALL_STATE(1046)] = 36622, + [SMALL_STATE(1047)] = 36697, + [SMALL_STATE(1048)] = 36756, + [SMALL_STATE(1049)] = 36807, + [SMALL_STATE(1050)] = 36858, + [SMALL_STATE(1051)] = 36931, + [SMALL_STATE(1052)] = 36990, + [SMALL_STATE(1053)] = 37061, + [SMALL_STATE(1054)] = 37133, + [SMALL_STATE(1055)] = 37205, + [SMALL_STATE(1056)] = 37277, + [SMALL_STATE(1057)] = 37349, + [SMALL_STATE(1058)] = 37419, + [SMALL_STATE(1059)] = 37491, + [SMALL_STATE(1060)] = 37563, + [SMALL_STATE(1061)] = 37635, + [SMALL_STATE(1062)] = 37707, + [SMALL_STATE(1063)] = 37779, + [SMALL_STATE(1064)] = 37851, + [SMALL_STATE(1065)] = 37923, + [SMALL_STATE(1066)] = 37995, + [SMALL_STATE(1067)] = 38067, + [SMALL_STATE(1068)] = 38139, + [SMALL_STATE(1069)] = 38211, + [SMALL_STATE(1070)] = 38283, + [SMALL_STATE(1071)] = 38355, + [SMALL_STATE(1072)] = 38427, + [SMALL_STATE(1073)] = 38499, + [SMALL_STATE(1074)] = 38571, + [SMALL_STATE(1075)] = 38643, + [SMALL_STATE(1076)] = 38713, + [SMALL_STATE(1077)] = 38785, + [SMALL_STATE(1078)] = 38857, + [SMALL_STATE(1079)] = 38929, + [SMALL_STATE(1080)] = 39001, + [SMALL_STATE(1081)] = 39073, + [SMALL_STATE(1082)] = 39145, + [SMALL_STATE(1083)] = 39217, + [SMALL_STATE(1084)] = 39289, + [SMALL_STATE(1085)] = 39361, + [SMALL_STATE(1086)] = 39433, + [SMALL_STATE(1087)] = 39505, + [SMALL_STATE(1088)] = 39577, + [SMALL_STATE(1089)] = 39649, + [SMALL_STATE(1090)] = 39721, + [SMALL_STATE(1091)] = 39793, + [SMALL_STATE(1092)] = 39865, + [SMALL_STATE(1093)] = 39937, + [SMALL_STATE(1094)] = 40009, + [SMALL_STATE(1095)] = 40081, + [SMALL_STATE(1096)] = 40153, + [SMALL_STATE(1097)] = 40225, + [SMALL_STATE(1098)] = 40297, + [SMALL_STATE(1099)] = 40369, + [SMALL_STATE(1100)] = 40413, + [SMALL_STATE(1101)] = 40485, + [SMALL_STATE(1102)] = 40557, + [SMALL_STATE(1103)] = 40629, + [SMALL_STATE(1104)] = 40701, + [SMALL_STATE(1105)] = 40773, + [SMALL_STATE(1106)] = 40845, + [SMALL_STATE(1107)] = 40917, + [SMALL_STATE(1108)] = 40989, + [SMALL_STATE(1109)] = 41061, + [SMALL_STATE(1110)] = 41133, + [SMALL_STATE(1111)] = 41205, + [SMALL_STATE(1112)] = 41277, + [SMALL_STATE(1113)] = 41349, + [SMALL_STATE(1114)] = 41419, + [SMALL_STATE(1115)] = 41491, + [SMALL_STATE(1116)] = 41563, + [SMALL_STATE(1117)] = 41635, + [SMALL_STATE(1118)] = 41707, + [SMALL_STATE(1119)] = 41777, + [SMALL_STATE(1120)] = 41849, + [SMALL_STATE(1121)] = 41921, + [SMALL_STATE(1122)] = 41993, + [SMALL_STATE(1123)] = 42065, + [SMALL_STATE(1124)] = 42137, + [SMALL_STATE(1125)] = 42209, + [SMALL_STATE(1126)] = 42281, + [SMALL_STATE(1127)] = 42353, + [SMALL_STATE(1128)] = 42425, + [SMALL_STATE(1129)] = 42495, + [SMALL_STATE(1130)] = 42567, + [SMALL_STATE(1131)] = 42637, + [SMALL_STATE(1132)] = 42709, + [SMALL_STATE(1133)] = 42778, + [SMALL_STATE(1134)] = 42847, + [SMALL_STATE(1135)] = 42916, + [SMALL_STATE(1136)] = 42971, + [SMALL_STATE(1137)] = 43026, + [SMALL_STATE(1138)] = 43095, + [SMALL_STATE(1139)] = 43164, + [SMALL_STATE(1140)] = 43233, + [SMALL_STATE(1141)] = 43302, + [SMALL_STATE(1142)] = 43371, + [SMALL_STATE(1143)] = 43440, + [SMALL_STATE(1144)] = 43509, + [SMALL_STATE(1145)] = 43578, + [SMALL_STATE(1146)] = 43647, + [SMALL_STATE(1147)] = 43700, + [SMALL_STATE(1148)] = 43769, + [SMALL_STATE(1149)] = 43838, + [SMALL_STATE(1150)] = 43907, + [SMALL_STATE(1151)] = 43976, + [SMALL_STATE(1152)] = 44045, + [SMALL_STATE(1153)] = 44100, + [SMALL_STATE(1154)] = 44169, + [SMALL_STATE(1155)] = 44220, + [SMALL_STATE(1156)] = 44277, + [SMALL_STATE(1157)] = 44346, + [SMALL_STATE(1158)] = 44415, + [SMALL_STATE(1159)] = 44484, + [SMALL_STATE(1160)] = 44551, + [SMALL_STATE(1161)] = 44606, + [SMALL_STATE(1162)] = 44675, + [SMALL_STATE(1163)] = 44744, + [SMALL_STATE(1164)] = 44793, + [SMALL_STATE(1165)] = 44846, + [SMALL_STATE(1166)] = 44905, + [SMALL_STATE(1167)] = 44968, + [SMALL_STATE(1168)] = 45033, + [SMALL_STATE(1169)] = 45094, + [SMALL_STATE(1170)] = 45163, + [SMALL_STATE(1171)] = 45232, + [SMALL_STATE(1172)] = 45295, + [SMALL_STATE(1173)] = 45364, + [SMALL_STATE(1174)] = 45433, + [SMALL_STATE(1175)] = 45485, + [SMALL_STATE(1176)] = 45537, + [SMALL_STATE(1177)] = 45589, + [SMALL_STATE(1178)] = 45641, + [SMALL_STATE(1179)] = 45693, + [SMALL_STATE(1180)] = 45745, + [SMALL_STATE(1181)] = 45779, + [SMALL_STATE(1182)] = 45831, + [SMALL_STATE(1183)] = 45883, + [SMALL_STATE(1184)] = 45935, + [SMALL_STATE(1185)] = 45973, + [SMALL_STATE(1186)] = 46025, + [SMALL_STATE(1187)] = 46077, + [SMALL_STATE(1188)] = 46129, + [SMALL_STATE(1189)] = 46167, + [SMALL_STATE(1190)] = 46205, + [SMALL_STATE(1191)] = 46257, + [SMALL_STATE(1192)] = 46323, + [SMALL_STATE(1193)] = 46375, + [SMALL_STATE(1194)] = 46427, + [SMALL_STATE(1195)] = 46479, + [SMALL_STATE(1196)] = 46531, + [SMALL_STATE(1197)] = 46567, + [SMALL_STATE(1198)] = 46619, + [SMALL_STATE(1199)] = 46671, + [SMALL_STATE(1200)] = 46723, + [SMALL_STATE(1201)] = 46775, + [SMALL_STATE(1202)] = 46827, + [SMALL_STATE(1203)] = 46879, + [SMALL_STATE(1204)] = 46931, + [SMALL_STATE(1205)] = 46983, + [SMALL_STATE(1206)] = 47035, + [SMALL_STATE(1207)] = 47087, + [SMALL_STATE(1208)] = 47139, + [SMALL_STATE(1209)] = 47191, + [SMALL_STATE(1210)] = 47243, + [SMALL_STATE(1211)] = 47295, + [SMALL_STATE(1212)] = 47333, + [SMALL_STATE(1213)] = 47385, + [SMALL_STATE(1214)] = 47437, + [SMALL_STATE(1215)] = 47489, + [SMALL_STATE(1216)] = 47541, + [SMALL_STATE(1217)] = 47584, + [SMALL_STATE(1218)] = 47625, + [SMALL_STATE(1219)] = 47666, + [SMALL_STATE(1220)] = 47704, + [SMALL_STATE(1221)] = 47739, + [SMALL_STATE(1222)] = 47774, + [SMALL_STATE(1223)] = 47809, + [SMALL_STATE(1224)] = 47839, + [SMALL_STATE(1225)] = 47885, + [SMALL_STATE(1226)] = 47931, + [SMALL_STATE(1227)] = 47965, + [SMALL_STATE(1228)] = 48011, + [SMALL_STATE(1229)] = 48057, + [SMALL_STATE(1230)] = 48087, + [SMALL_STATE(1231)] = 48133, + [SMALL_STATE(1232)] = 48179, + [SMALL_STATE(1233)] = 48222, + [SMALL_STATE(1234)] = 48265, + [SMALL_STATE(1235)] = 48320, + [SMALL_STATE(1236)] = 48375, + [SMALL_STATE(1237)] = 48418, + [SMALL_STATE(1238)] = 48451, + [SMALL_STATE(1239)] = 48494, + [SMALL_STATE(1240)] = 48537, + [SMALL_STATE(1241)] = 48580, + [SMALL_STATE(1242)] = 48617, + [SMALL_STATE(1243)] = 48660, + [SMALL_STATE(1244)] = 48703, + [SMALL_STATE(1245)] = 48743, + [SMALL_STATE(1246)] = 48771, + [SMALL_STATE(1247)] = 48811, + [SMALL_STATE(1248)] = 48851, + [SMALL_STATE(1249)] = 48891, + [SMALL_STATE(1250)] = 48931, + [SMALL_STATE(1251)] = 48971, + [SMALL_STATE(1252)] = 49011, + [SMALL_STATE(1253)] = 49051, + [SMALL_STATE(1254)] = 49099, + [SMALL_STATE(1255)] = 49139, + [SMALL_STATE(1256)] = 49179, + [SMALL_STATE(1257)] = 49213, + [SMALL_STATE(1258)] = 49241, + [SMALL_STATE(1259)] = 49281, + [SMALL_STATE(1260)] = 49321, + [SMALL_STATE(1261)] = 49361, + [SMALL_STATE(1262)] = 49397, + [SMALL_STATE(1263)] = 49437, + [SMALL_STATE(1264)] = 49477, + [SMALL_STATE(1265)] = 49505, + [SMALL_STATE(1266)] = 49545, + [SMALL_STATE(1267)] = 49585, + [SMALL_STATE(1268)] = 49625, + [SMALL_STATE(1269)] = 49665, + [SMALL_STATE(1270)] = 49705, + [SMALL_STATE(1271)] = 49733, + [SMALL_STATE(1272)] = 49775, + [SMALL_STATE(1273)] = 49815, + [SMALL_STATE(1274)] = 49859, + [SMALL_STATE(1275)] = 49905, + [SMALL_STATE(1276)] = 49945, + [SMALL_STATE(1277)] = 49985, + [SMALL_STATE(1278)] = 50025, + [SMALL_STATE(1279)] = 50075, + [SMALL_STATE(1280)] = 50115, + [SMALL_STATE(1281)] = 50155, + [SMALL_STATE(1282)] = 50195, + [SMALL_STATE(1283)] = 50235, + [SMALL_STATE(1284)] = 50281, + [SMALL_STATE(1285)] = 50321, + [SMALL_STATE(1286)] = 50361, + [SMALL_STATE(1287)] = 50401, + [SMALL_STATE(1288)] = 50429, + [SMALL_STATE(1289)] = 50477, + [SMALL_STATE(1290)] = 50505, + [SMALL_STATE(1291)] = 50533, + [SMALL_STATE(1292)] = 50561, + [SMALL_STATE(1293)] = 50601, + [SMALL_STATE(1294)] = 50629, + [SMALL_STATE(1295)] = 50669, + [SMALL_STATE(1296)] = 50709, + [SMALL_STATE(1297)] = 50737, + [SMALL_STATE(1298)] = 50769, + [SMALL_STATE(1299)] = 50809, + [SMALL_STATE(1300)] = 50849, + [SMALL_STATE(1301)] = 50889, + [SMALL_STATE(1302)] = 50938, + [SMALL_STATE(1303)] = 50983, + [SMALL_STATE(1304)] = 51028, + [SMALL_STATE(1305)] = 51073, + [SMALL_STATE(1306)] = 51100, + [SMALL_STATE(1307)] = 51145, + [SMALL_STATE(1308)] = 51172, + [SMALL_STATE(1309)] = 51199, + [SMALL_STATE(1310)] = 51244, + [SMALL_STATE(1311)] = 51273, + [SMALL_STATE(1312)] = 51300, + [SMALL_STATE(1313)] = 51327, + [SMALL_STATE(1314)] = 51354, + [SMALL_STATE(1315)] = 51399, + [SMALL_STATE(1316)] = 51444, + [SMALL_STATE(1317)] = 51471, + [SMALL_STATE(1318)] = 51498, + [SMALL_STATE(1319)] = 51543, + [SMALL_STATE(1320)] = 51588, + [SMALL_STATE(1321)] = 51631, + [SMALL_STATE(1322)] = 51676, + [SMALL_STATE(1323)] = 51703, + [SMALL_STATE(1324)] = 51752, + [SMALL_STATE(1325)] = 51797, + [SMALL_STATE(1326)] = 51842, + [SMALL_STATE(1327)] = 51883, + [SMALL_STATE(1328)] = 51914, + [SMALL_STATE(1329)] = 51953, + [SMALL_STATE(1330)] = 51990, + [SMALL_STATE(1331)] = 52025, + [SMALL_STATE(1332)] = 52058, + [SMALL_STATE(1333)] = 52085, + [SMALL_STATE(1334)] = 52119, + [SMALL_STATE(1335)] = 52157, + [SMALL_STATE(1336)] = 52191, + [SMALL_STATE(1337)] = 52229, + [SMALL_STATE(1338)] = 52267, + [SMALL_STATE(1339)] = 52305, + [SMALL_STATE(1340)] = 52343, + [SMALL_STATE(1341)] = 52381, + [SMALL_STATE(1342)] = 52422, + [SMALL_STATE(1343)] = 52463, + [SMALL_STATE(1344)] = 52504, + [SMALL_STATE(1345)] = 52545, + [SMALL_STATE(1346)] = 52577, + [SMALL_STATE(1347)] = 52615, + [SMALL_STATE(1348)] = 52653, + [SMALL_STATE(1349)] = 52685, + [SMALL_STATE(1350)] = 52717, + [SMALL_STATE(1351)] = 52749, + [SMALL_STATE(1352)] = 52781, + [SMALL_STATE(1353)] = 52813, + [SMALL_STATE(1354)] = 52845, + [SMALL_STATE(1355)] = 52883, + [SMALL_STATE(1356)] = 52915, + [SMALL_STATE(1357)] = 52953, + [SMALL_STATE(1358)] = 52985, + [SMALL_STATE(1359)] = 53023, + [SMALL_STATE(1360)] = 53047, + [SMALL_STATE(1361)] = 53079, + [SMALL_STATE(1362)] = 53111, + [SMALL_STATE(1363)] = 53143, + [SMALL_STATE(1364)] = 53172, + [SMALL_STATE(1365)] = 53199, + [SMALL_STATE(1366)] = 53226, + [SMALL_STATE(1367)] = 53255, + [SMALL_STATE(1368)] = 53284, + [SMALL_STATE(1369)] = 53313, + [SMALL_STATE(1370)] = 53336, + [SMALL_STATE(1371)] = 53363, + [SMALL_STATE(1372)] = 53392, + [SMALL_STATE(1373)] = 53419, + [SMALL_STATE(1374)] = 53446, + [SMALL_STATE(1375)] = 53473, + [SMALL_STATE(1376)] = 53502, + [SMALL_STATE(1377)] = 53529, + [SMALL_STATE(1378)] = 53560, + [SMALL_STATE(1379)] = 53583, + [SMALL_STATE(1380)] = 53612, + [SMALL_STATE(1381)] = 53639, + [SMALL_STATE(1382)] = 53666, + [SMALL_STATE(1383)] = 53689, + [SMALL_STATE(1384)] = 53716, + [SMALL_STATE(1385)] = 53745, + [SMALL_STATE(1386)] = 53767, + [SMALL_STATE(1387)] = 53799, + [SMALL_STATE(1388)] = 53831, + [SMALL_STATE(1389)] = 53863, + [SMALL_STATE(1390)] = 53887, + [SMALL_STATE(1391)] = 53905, + [SMALL_STATE(1392)] = 53923, + [SMALL_STATE(1393)] = 53947, + [SMALL_STATE(1394)] = 53979, + [SMALL_STATE(1395)] = 54011, + [SMALL_STATE(1396)] = 54033, + [SMALL_STATE(1397)] = 54051, + [SMALL_STATE(1398)] = 54083, + [SMALL_STATE(1399)] = 54108, + [SMALL_STATE(1400)] = 54129, + [SMALL_STATE(1401)] = 54150, + [SMALL_STATE(1402)] = 54179, + [SMALL_STATE(1403)] = 54208, + [SMALL_STATE(1404)] = 54235, + [SMALL_STATE(1405)] = 54260, + [SMALL_STATE(1406)] = 54289, + [SMALL_STATE(1407)] = 54318, + [SMALL_STATE(1408)] = 54347, + [SMALL_STATE(1409)] = 54376, + [SMALL_STATE(1410)] = 54405, + [SMALL_STATE(1411)] = 54434, + [SMALL_STATE(1412)] = 54463, + [SMALL_STATE(1413)] = 54484, + [SMALL_STATE(1414)] = 54505, + [SMALL_STATE(1415)] = 54534, + [SMALL_STATE(1416)] = 54563, + [SMALL_STATE(1417)] = 54588, + [SMALL_STATE(1418)] = 54617, + [SMALL_STATE(1419)] = 54646, + [SMALL_STATE(1420)] = 54667, + [SMALL_STATE(1421)] = 54692, + [SMALL_STATE(1422)] = 54721, + [SMALL_STATE(1423)] = 54750, + [SMALL_STATE(1424)] = 54779, + [SMALL_STATE(1425)] = 54808, + [SMALL_STATE(1426)] = 54837, + [SMALL_STATE(1427)] = 54866, + [SMALL_STATE(1428)] = 54895, + [SMALL_STATE(1429)] = 54911, + [SMALL_STATE(1430)] = 54937, + [SMALL_STATE(1431)] = 54953, + [SMALL_STATE(1432)] = 54969, + [SMALL_STATE(1433)] = 54989, + [SMALL_STATE(1434)] = 55009, + [SMALL_STATE(1435)] = 55025, + [SMALL_STATE(1436)] = 55041, + [SMALL_STATE(1437)] = 55067, + [SMALL_STATE(1438)] = 55093, + [SMALL_STATE(1439)] = 55119, + [SMALL_STATE(1440)] = 55139, + [SMALL_STATE(1441)] = 55155, + [SMALL_STATE(1442)] = 55181, + [SMALL_STATE(1443)] = 55197, + [SMALL_STATE(1444)] = 55221, + [SMALL_STATE(1445)] = 55237, + [SMALL_STATE(1446)] = 55253, + [SMALL_STATE(1447)] = 55269, + [SMALL_STATE(1448)] = 55287, + [SMALL_STATE(1449)] = 55303, + [SMALL_STATE(1450)] = 55319, + [SMALL_STATE(1451)] = 55343, + [SMALL_STATE(1452)] = 55359, + [SMALL_STATE(1453)] = 55375, + [SMALL_STATE(1454)] = 55400, + [SMALL_STATE(1455)] = 55423, + [SMALL_STATE(1456)] = 55440, + [SMALL_STATE(1457)] = 55463, + [SMALL_STATE(1458)] = 55480, + [SMALL_STATE(1459)] = 55503, + [SMALL_STATE(1460)] = 55517, + [SMALL_STATE(1461)] = 55535, + [SMALL_STATE(1462)] = 55549, + [SMALL_STATE(1463)] = 55563, + [SMALL_STATE(1464)] = 55581, + [SMALL_STATE(1465)] = 55597, + [SMALL_STATE(1466)] = 55611, + [SMALL_STATE(1467)] = 55629, + [SMALL_STATE(1468)] = 55645, + [SMALL_STATE(1469)] = 55659, + [SMALL_STATE(1470)] = 55675, + [SMALL_STATE(1471)] = 55693, + [SMALL_STATE(1472)] = 55707, + [SMALL_STATE(1473)] = 55721, + [SMALL_STATE(1474)] = 55735, + [SMALL_STATE(1475)] = 55753, + [SMALL_STATE(1476)] = 55767, + [SMALL_STATE(1477)] = 55785, + [SMALL_STATE(1478)] = 55799, + [SMALL_STATE(1479)] = 55813, + [SMALL_STATE(1480)] = 55827, + [SMALL_STATE(1481)] = 55845, + [SMALL_STATE(1482)] = 55863, + [SMALL_STATE(1483)] = 55874, + [SMALL_STATE(1484)] = 55893, + [SMALL_STATE(1485)] = 55912, + [SMALL_STATE(1486)] = 55923, + [SMALL_STATE(1487)] = 55942, + [SMALL_STATE(1488)] = 55961, + [SMALL_STATE(1489)] = 55980, + [SMALL_STATE(1490)] = 55991, + [SMALL_STATE(1491)] = 56010, + [SMALL_STATE(1492)] = 56029, + [SMALL_STATE(1493)] = 56046, + [SMALL_STATE(1494)] = 56057, + [SMALL_STATE(1495)] = 56076, + [SMALL_STATE(1496)] = 56095, + [SMALL_STATE(1497)] = 56112, + [SMALL_STATE(1498)] = 56131, + [SMALL_STATE(1499)] = 56142, + [SMALL_STATE(1500)] = 56161, + [SMALL_STATE(1501)] = 56180, + [SMALL_STATE(1502)] = 56191, + [SMALL_STATE(1503)] = 56202, + [SMALL_STATE(1504)] = 56213, + [SMALL_STATE(1505)] = 56232, + [SMALL_STATE(1506)] = 56251, + [SMALL_STATE(1507)] = 56262, + [SMALL_STATE(1508)] = 56273, + [SMALL_STATE(1509)] = 56284, + [SMALL_STATE(1510)] = 56295, + [SMALL_STATE(1511)] = 56311, + [SMALL_STATE(1512)] = 56325, + [SMALL_STATE(1513)] = 56339, + [SMALL_STATE(1514)] = 56355, + [SMALL_STATE(1515)] = 56369, + [SMALL_STATE(1516)] = 56383, + [SMALL_STATE(1517)] = 56397, + [SMALL_STATE(1518)] = 56413, + [SMALL_STATE(1519)] = 56429, + [SMALL_STATE(1520)] = 56445, + [SMALL_STATE(1521)] = 56461, + [SMALL_STATE(1522)] = 56475, + [SMALL_STATE(1523)] = 56491, + [SMALL_STATE(1524)] = 56507, + [SMALL_STATE(1525)] = 56523, + [SMALL_STATE(1526)] = 56537, + [SMALL_STATE(1527)] = 56553, + [SMALL_STATE(1528)] = 56569, + [SMALL_STATE(1529)] = 56585, + [SMALL_STATE(1530)] = 56599, + [SMALL_STATE(1531)] = 56613, + [SMALL_STATE(1532)] = 56629, + [SMALL_STATE(1533)] = 56645, + [SMALL_STATE(1534)] = 56661, + [SMALL_STATE(1535)] = 56677, + [SMALL_STATE(1536)] = 56691, + [SMALL_STATE(1537)] = 56705, + [SMALL_STATE(1538)] = 56721, + [SMALL_STATE(1539)] = 56731, + [SMALL_STATE(1540)] = 56747, + [SMALL_STATE(1541)] = 56760, + [SMALL_STATE(1542)] = 56773, + [SMALL_STATE(1543)] = 56786, + [SMALL_STATE(1544)] = 56797, + [SMALL_STATE(1545)] = 56810, + [SMALL_STATE(1546)] = 56823, + [SMALL_STATE(1547)] = 56836, + [SMALL_STATE(1548)] = 56849, + [SMALL_STATE(1549)] = 56862, + [SMALL_STATE(1550)] = 56875, + [SMALL_STATE(1551)] = 56884, + [SMALL_STATE(1552)] = 56897, + [SMALL_STATE(1553)] = 56910, + [SMALL_STATE(1554)] = 56923, + [SMALL_STATE(1555)] = 56932, + [SMALL_STATE(1556)] = 56945, + [SMALL_STATE(1557)] = 56958, + [SMALL_STATE(1558)] = 56971, + [SMALL_STATE(1559)] = 56980, + [SMALL_STATE(1560)] = 56993, + [SMALL_STATE(1561)] = 57006, + [SMALL_STATE(1562)] = 57019, + [SMALL_STATE(1563)] = 57032, + [SMALL_STATE(1564)] = 57045, + [SMALL_STATE(1565)] = 57058, + [SMALL_STATE(1566)] = 57071, + [SMALL_STATE(1567)] = 57084, + [SMALL_STATE(1568)] = 57097, + [SMALL_STATE(1569)] = 57110, + [SMALL_STATE(1570)] = 57123, + [SMALL_STATE(1571)] = 57136, + [SMALL_STATE(1572)] = 57149, + [SMALL_STATE(1573)] = 57162, + [SMALL_STATE(1574)] = 57175, + [SMALL_STATE(1575)] = 57188, + [SMALL_STATE(1576)] = 57201, + [SMALL_STATE(1577)] = 57214, + [SMALL_STATE(1578)] = 57227, + [SMALL_STATE(1579)] = 57240, + [SMALL_STATE(1580)] = 57253, + [SMALL_STATE(1581)] = 57266, + [SMALL_STATE(1582)] = 57279, + [SMALL_STATE(1583)] = 57292, + [SMALL_STATE(1584)] = 57305, + [SMALL_STATE(1585)] = 57318, + [SMALL_STATE(1586)] = 57331, + [SMALL_STATE(1587)] = 57344, + [SMALL_STATE(1588)] = 57357, + [SMALL_STATE(1589)] = 57370, + [SMALL_STATE(1590)] = 57383, + [SMALL_STATE(1591)] = 57396, + [SMALL_STATE(1592)] = 57409, + [SMALL_STATE(1593)] = 57422, + [SMALL_STATE(1594)] = 57435, + [SMALL_STATE(1595)] = 57448, + [SMALL_STATE(1596)] = 57461, + [SMALL_STATE(1597)] = 57474, + [SMALL_STATE(1598)] = 57487, + [SMALL_STATE(1599)] = 57500, + [SMALL_STATE(1600)] = 57513, + [SMALL_STATE(1601)] = 57526, + [SMALL_STATE(1602)] = 57539, + [SMALL_STATE(1603)] = 57552, + [SMALL_STATE(1604)] = 57565, + [SMALL_STATE(1605)] = 57578, + [SMALL_STATE(1606)] = 57591, + [SMALL_STATE(1607)] = 57604, + [SMALL_STATE(1608)] = 57617, + [SMALL_STATE(1609)] = 57630, + [SMALL_STATE(1610)] = 57643, + [SMALL_STATE(1611)] = 57656, + [SMALL_STATE(1612)] = 57665, + [SMALL_STATE(1613)] = 57678, + [SMALL_STATE(1614)] = 57691, + [SMALL_STATE(1615)] = 57704, + [SMALL_STATE(1616)] = 57715, + [SMALL_STATE(1617)] = 57728, + [SMALL_STATE(1618)] = 57737, + [SMALL_STATE(1619)] = 57750, + [SMALL_STATE(1620)] = 57763, + [SMALL_STATE(1621)] = 57776, + [SMALL_STATE(1622)] = 57789, + [SMALL_STATE(1623)] = 57802, + [SMALL_STATE(1624)] = 57815, + [SMALL_STATE(1625)] = 57828, + [SMALL_STATE(1626)] = 57841, + [SMALL_STATE(1627)] = 57850, + [SMALL_STATE(1628)] = 57863, + [SMALL_STATE(1629)] = 57872, + [SMALL_STATE(1630)] = 57881, + [SMALL_STATE(1631)] = 57894, + [SMALL_STATE(1632)] = 57907, + [SMALL_STATE(1633)] = 57920, + [SMALL_STATE(1634)] = 57929, + [SMALL_STATE(1635)] = 57938, + [SMALL_STATE(1636)] = 57951, + [SMALL_STATE(1637)] = 57964, + [SMALL_STATE(1638)] = 57977, + [SMALL_STATE(1639)] = 57990, + [SMALL_STATE(1640)] = 58003, + [SMALL_STATE(1641)] = 58016, + [SMALL_STATE(1642)] = 58029, + [SMALL_STATE(1643)] = 58042, + [SMALL_STATE(1644)] = 58055, + [SMALL_STATE(1645)] = 58068, + [SMALL_STATE(1646)] = 58078, + [SMALL_STATE(1647)] = 58086, + [SMALL_STATE(1648)] = 58094, + [SMALL_STATE(1649)] = 58104, + [SMALL_STATE(1650)] = 58114, + [SMALL_STATE(1651)] = 58122, + [SMALL_STATE(1652)] = 58130, + [SMALL_STATE(1653)] = 58138, + [SMALL_STATE(1654)] = 58148, + [SMALL_STATE(1655)] = 58158, + [SMALL_STATE(1656)] = 58168, + [SMALL_STATE(1657)] = 58178, + [SMALL_STATE(1658)] = 58186, + [SMALL_STATE(1659)] = 58196, + [SMALL_STATE(1660)] = 58206, + [SMALL_STATE(1661)] = 58214, + [SMALL_STATE(1662)] = 58224, + [SMALL_STATE(1663)] = 58234, + [SMALL_STATE(1664)] = 58244, + [SMALL_STATE(1665)] = 58254, + [SMALL_STATE(1666)] = 58264, + [SMALL_STATE(1667)] = 58272, + [SMALL_STATE(1668)] = 58282, + [SMALL_STATE(1669)] = 58290, + [SMALL_STATE(1670)] = 58298, + [SMALL_STATE(1671)] = 58308, + [SMALL_STATE(1672)] = 58318, + [SMALL_STATE(1673)] = 58328, + [SMALL_STATE(1674)] = 58338, + [SMALL_STATE(1675)] = 58348, + [SMALL_STATE(1676)] = 58358, + [SMALL_STATE(1677)] = 58368, + [SMALL_STATE(1678)] = 58378, + [SMALL_STATE(1679)] = 58388, + [SMALL_STATE(1680)] = 58396, + [SMALL_STATE(1681)] = 58406, + [SMALL_STATE(1682)] = 58416, + [SMALL_STATE(1683)] = 58426, + [SMALL_STATE(1684)] = 58436, + [SMALL_STATE(1685)] = 58446, + [SMALL_STATE(1686)] = 58456, + [SMALL_STATE(1687)] = 58466, + [SMALL_STATE(1688)] = 58474, + [SMALL_STATE(1689)] = 58484, + [SMALL_STATE(1690)] = 58492, + [SMALL_STATE(1691)] = 58502, + [SMALL_STATE(1692)] = 58512, + [SMALL_STATE(1693)] = 58522, + [SMALL_STATE(1694)] = 58532, + [SMALL_STATE(1695)] = 58542, + [SMALL_STATE(1696)] = 58552, + [SMALL_STATE(1697)] = 58560, + [SMALL_STATE(1698)] = 58568, + [SMALL_STATE(1699)] = 58578, + [SMALL_STATE(1700)] = 58588, + [SMALL_STATE(1701)] = 58596, + [SMALL_STATE(1702)] = 58604, + [SMALL_STATE(1703)] = 58612, + [SMALL_STATE(1704)] = 58622, + [SMALL_STATE(1705)] = 58632, + [SMALL_STATE(1706)] = 58642, + [SMALL_STATE(1707)] = 58652, + [SMALL_STATE(1708)] = 58662, + [SMALL_STATE(1709)] = 58672, + [SMALL_STATE(1710)] = 58682, + [SMALL_STATE(1711)] = 58692, + [SMALL_STATE(1712)] = 58702, + [SMALL_STATE(1713)] = 58712, + [SMALL_STATE(1714)] = 58720, + [SMALL_STATE(1715)] = 58730, + [SMALL_STATE(1716)] = 58738, + [SMALL_STATE(1717)] = 58748, + [SMALL_STATE(1718)] = 58758, + [SMALL_STATE(1719)] = 58766, + [SMALL_STATE(1720)] = 58776, + [SMALL_STATE(1721)] = 58786, + [SMALL_STATE(1722)] = 58793, + [SMALL_STATE(1723)] = 58800, + [SMALL_STATE(1724)] = 58807, + [SMALL_STATE(1725)] = 58814, + [SMALL_STATE(1726)] = 58821, + [SMALL_STATE(1727)] = 58828, + [SMALL_STATE(1728)] = 58835, + [SMALL_STATE(1729)] = 58842, + [SMALL_STATE(1730)] = 58849, + [SMALL_STATE(1731)] = 58856, + [SMALL_STATE(1732)] = 58863, + [SMALL_STATE(1733)] = 58870, + [SMALL_STATE(1734)] = 58877, + [SMALL_STATE(1735)] = 58884, + [SMALL_STATE(1736)] = 58891, + [SMALL_STATE(1737)] = 58898, + [SMALL_STATE(1738)] = 58905, + [SMALL_STATE(1739)] = 58912, + [SMALL_STATE(1740)] = 58919, + [SMALL_STATE(1741)] = 58926, + [SMALL_STATE(1742)] = 58933, + [SMALL_STATE(1743)] = 58940, + [SMALL_STATE(1744)] = 58947, + [SMALL_STATE(1745)] = 58954, + [SMALL_STATE(1746)] = 58961, + [SMALL_STATE(1747)] = 58968, + [SMALL_STATE(1748)] = 58975, + [SMALL_STATE(1749)] = 58982, + [SMALL_STATE(1750)] = 58989, + [SMALL_STATE(1751)] = 58996, + [SMALL_STATE(1752)] = 59003, + [SMALL_STATE(1753)] = 59010, + [SMALL_STATE(1754)] = 59017, + [SMALL_STATE(1755)] = 59024, + [SMALL_STATE(1756)] = 59031, + [SMALL_STATE(1757)] = 59038, + [SMALL_STATE(1758)] = 59045, + [SMALL_STATE(1759)] = 59052, + [SMALL_STATE(1760)] = 59059, + [SMALL_STATE(1761)] = 59066, + [SMALL_STATE(1762)] = 59073, + [SMALL_STATE(1763)] = 59080, + [SMALL_STATE(1764)] = 59087, + [SMALL_STATE(1765)] = 59094, + [SMALL_STATE(1766)] = 59101, + [SMALL_STATE(1767)] = 59108, + [SMALL_STATE(1768)] = 59115, + [SMALL_STATE(1769)] = 59122, + [SMALL_STATE(1770)] = 59129, + [SMALL_STATE(1771)] = 59136, + [SMALL_STATE(1772)] = 59143, + [SMALL_STATE(1773)] = 59150, + [SMALL_STATE(1774)] = 59157, + [SMALL_STATE(1775)] = 59164, + [SMALL_STATE(1776)] = 59171, + [SMALL_STATE(1777)] = 59178, + [SMALL_STATE(1778)] = 59185, + [SMALL_STATE(1779)] = 59192, + [SMALL_STATE(1780)] = 59199, + [SMALL_STATE(1781)] = 59206, + [SMALL_STATE(1782)] = 59213, + [SMALL_STATE(1783)] = 59220, + [SMALL_STATE(1784)] = 59227, + [SMALL_STATE(1785)] = 59234, + [SMALL_STATE(1786)] = 59241, + [SMALL_STATE(1787)] = 59248, + [SMALL_STATE(1788)] = 59255, + [SMALL_STATE(1789)] = 59262, + [SMALL_STATE(1790)] = 59269, + [SMALL_STATE(1791)] = 59276, + [SMALL_STATE(1792)] = 59283, + [SMALL_STATE(1793)] = 59290, + [SMALL_STATE(1794)] = 59297, + [SMALL_STATE(1795)] = 59304, + [SMALL_STATE(1796)] = 59311, + [SMALL_STATE(1797)] = 59318, + [SMALL_STATE(1798)] = 59325, + [SMALL_STATE(1799)] = 59332, + [SMALL_STATE(1800)] = 59339, + [SMALL_STATE(1801)] = 59346, + [SMALL_STATE(1802)] = 59353, + [SMALL_STATE(1803)] = 59360, + [SMALL_STATE(1804)] = 59367, + [SMALL_STATE(1805)] = 59374, + [SMALL_STATE(1806)] = 59381, + [SMALL_STATE(1807)] = 59388, + [SMALL_STATE(1808)] = 59395, + [SMALL_STATE(1809)] = 59402, + [SMALL_STATE(1810)] = 59409, + [SMALL_STATE(1811)] = 59416, + [SMALL_STATE(1812)] = 59423, + [SMALL_STATE(1813)] = 59430, + [SMALL_STATE(1814)] = 59437, + [SMALL_STATE(1815)] = 59444, + [SMALL_STATE(1816)] = 59451, + [SMALL_STATE(1817)] = 59458, + [SMALL_STATE(1818)] = 59465, + [SMALL_STATE(1819)] = 59472, + [SMALL_STATE(1820)] = 59479, + [SMALL_STATE(1821)] = 59486, + [SMALL_STATE(1822)] = 59493, + [SMALL_STATE(1823)] = 59500, + [SMALL_STATE(1824)] = 59507, + [SMALL_STATE(1825)] = 59514, + [SMALL_STATE(1826)] = 59521, + [SMALL_STATE(1827)] = 59528, + [SMALL_STATE(1828)] = 59535, + [SMALL_STATE(1829)] = 59542, + [SMALL_STATE(1830)] = 59549, + [SMALL_STATE(1831)] = 59556, + [SMALL_STATE(1832)] = 59563, + [SMALL_STATE(1833)] = 59570, + [SMALL_STATE(1834)] = 59577, + [SMALL_STATE(1835)] = 59584, + [SMALL_STATE(1836)] = 59591, + [SMALL_STATE(1837)] = 59598, + [SMALL_STATE(1838)] = 59605, + [SMALL_STATE(1839)] = 59612, + [SMALL_STATE(1840)] = 59619, + [SMALL_STATE(1841)] = 59626, + [SMALL_STATE(1842)] = 59633, + [SMALL_STATE(1843)] = 59640, + [SMALL_STATE(1844)] = 59647, + [SMALL_STATE(1845)] = 59654, + [SMALL_STATE(1846)] = 59661, + [SMALL_STATE(1847)] = 59668, + [SMALL_STATE(1848)] = 59675, + [SMALL_STATE(1849)] = 59682, + [SMALL_STATE(1850)] = 59689, + [SMALL_STATE(1851)] = 59696, + [SMALL_STATE(1852)] = 59703, + [SMALL_STATE(1853)] = 59710, + [SMALL_STATE(1854)] = 59717, + [SMALL_STATE(1855)] = 59724, + [SMALL_STATE(1856)] = 59731, + [SMALL_STATE(1857)] = 59738, + [SMALL_STATE(1858)] = 59745, + [SMALL_STATE(1859)] = 59752, + [SMALL_STATE(1860)] = 59759, + [SMALL_STATE(1861)] = 59766, + [SMALL_STATE(1862)] = 59773, + [SMALL_STATE(1863)] = 59780, + [SMALL_STATE(1864)] = 59787, + [SMALL_STATE(1865)] = 59794, + [SMALL_STATE(1866)] = 59801, + [SMALL_STATE(1867)] = 59808, + [SMALL_STATE(1868)] = 59815, + [SMALL_STATE(1869)] = 59822, + [SMALL_STATE(1870)] = 59829, + [SMALL_STATE(1871)] = 59836, + [SMALL_STATE(1872)] = 59843, + [SMALL_STATE(1873)] = 59850, + [SMALL_STATE(1874)] = 59857, + [SMALL_STATE(1875)] = 59864, + [SMALL_STATE(1876)] = 59871, + [SMALL_STATE(1877)] = 59878, + [SMALL_STATE(1878)] = 59885, + [SMALL_STATE(1879)] = 59892, + [SMALL_STATE(1880)] = 59899, + [SMALL_STATE(1881)] = 59906, + [SMALL_STATE(1882)] = 59913, + [SMALL_STATE(1883)] = 59920, + [SMALL_STATE(1884)] = 59927, + [SMALL_STATE(1885)] = 59934, + [SMALL_STATE(1886)] = 59941, + [SMALL_STATE(1887)] = 59948, + [SMALL_STATE(1888)] = 59955, + [SMALL_STATE(1889)] = 59962, + [SMALL_STATE(1890)] = 59969, + [SMALL_STATE(1891)] = 59976, + [SMALL_STATE(1892)] = 59983, + [SMALL_STATE(1893)] = 59990, + [SMALL_STATE(1894)] = 59997, + [SMALL_STATE(1895)] = 60004, + [SMALL_STATE(1896)] = 60011, + [SMALL_STATE(1897)] = 60018, + [SMALL_STATE(1898)] = 60025, + [SMALL_STATE(1899)] = 60032, + [SMALL_STATE(1900)] = 60039, + [SMALL_STATE(1901)] = 60046, + [SMALL_STATE(1902)] = 60053, + [SMALL_STATE(1903)] = 60060, + [SMALL_STATE(1904)] = 60067, + [SMALL_STATE(1905)] = 60074, + [SMALL_STATE(1906)] = 60081, + [SMALL_STATE(1907)] = 60088, + [SMALL_STATE(1908)] = 60095, + [SMALL_STATE(1909)] = 60102, + [SMALL_STATE(1910)] = 60109, + [SMALL_STATE(1911)] = 60116, + [SMALL_STATE(1912)] = 60123, + [SMALL_STATE(1913)] = 60130, + [SMALL_STATE(1914)] = 60137, + [SMALL_STATE(1915)] = 60144, + [SMALL_STATE(1916)] = 60151, + [SMALL_STATE(1917)] = 60158, + [SMALL_STATE(1918)] = 60165, + [SMALL_STATE(1919)] = 60172, + [SMALL_STATE(1920)] = 60179, + [SMALL_STATE(1921)] = 60186, + [SMALL_STATE(1922)] = 60193, + [SMALL_STATE(1923)] = 60200, + [SMALL_STATE(1924)] = 60207, + [SMALL_STATE(1925)] = 60214, + [SMALL_STATE(1926)] = 60221, + [SMALL_STATE(1927)] = 60228, + [SMALL_STATE(1928)] = 60235, + [SMALL_STATE(1929)] = 60242, + [SMALL_STATE(1930)] = 60249, + [SMALL_STATE(1931)] = 60256, + [SMALL_STATE(1932)] = 60263, + [SMALL_STATE(1933)] = 60270, + [SMALL_STATE(1934)] = 60277, + [SMALL_STATE(1935)] = 60284, + [SMALL_STATE(1936)] = 60291, + [SMALL_STATE(1937)] = 60298, + [SMALL_STATE(1938)] = 60305, + [SMALL_STATE(1939)] = 60312, + [SMALL_STATE(1940)] = 60319, + [SMALL_STATE(1941)] = 60326, + [SMALL_STATE(1942)] = 60333, + [SMALL_STATE(1943)] = 60340, + [SMALL_STATE(1944)] = 60347, + [SMALL_STATE(1945)] = 60354, + [SMALL_STATE(1946)] = 60361, + [SMALL_STATE(1947)] = 60368, + [SMALL_STATE(1948)] = 60375, + [SMALL_STATE(1949)] = 60382, + [SMALL_STATE(1950)] = 60389, + [SMALL_STATE(1951)] = 60396, + [SMALL_STATE(1952)] = 60403, + [SMALL_STATE(1953)] = 60410, + [SMALL_STATE(1954)] = 60417, + [SMALL_STATE(1955)] = 60424, + [SMALL_STATE(1956)] = 60431, + [SMALL_STATE(1957)] = 60438, + [SMALL_STATE(1958)] = 60445, + [SMALL_STATE(1959)] = 60452, + [SMALL_STATE(1960)] = 60459, + [SMALL_STATE(1961)] = 60466, + [SMALL_STATE(1962)] = 60473, + [SMALL_STATE(1963)] = 60480, + [SMALL_STATE(1964)] = 60487, + [SMALL_STATE(1965)] = 60494, + [SMALL_STATE(1966)] = 60501, + [SMALL_STATE(1967)] = 60508, + [SMALL_STATE(1968)] = 60515, + [SMALL_STATE(1969)] = 60522, + [SMALL_STATE(1970)] = 60529, + [SMALL_STATE(1971)] = 60536, + [SMALL_STATE(1972)] = 60543, + [SMALL_STATE(1973)] = 60550, + [SMALL_STATE(1974)] = 60557, + [SMALL_STATE(1975)] = 60564, + [SMALL_STATE(1976)] = 60571, + [SMALL_STATE(1977)] = 60578, + [SMALL_STATE(1978)] = 60585, + [SMALL_STATE(1979)] = 60592, + [SMALL_STATE(1980)] = 60599, + [SMALL_STATE(1981)] = 60606, + [SMALL_STATE(1982)] = 60613, + [SMALL_STATE(1983)] = 60620, + [SMALL_STATE(1984)] = 60627, + [SMALL_STATE(1985)] = 60634, + [SMALL_STATE(1986)] = 60641, + [SMALL_STATE(1987)] = 60648, + [SMALL_STATE(1988)] = 60655, + [SMALL_STATE(1989)] = 60662, + [SMALL_STATE(1990)] = 60669, + [SMALL_STATE(1991)] = 60676, + [SMALL_STATE(1992)] = 60683, + [SMALL_STATE(1993)] = 60690, + [SMALL_STATE(1994)] = 60697, + [SMALL_STATE(1995)] = 60704, + [SMALL_STATE(1996)] = 60711, + [SMALL_STATE(1997)] = 60718, + [SMALL_STATE(1998)] = 60725, + [SMALL_STATE(1999)] = 60732, + [SMALL_STATE(2000)] = 60739, + [SMALL_STATE(2001)] = 60746, + [SMALL_STATE(2002)] = 60753, + [SMALL_STATE(2003)] = 60760, + [SMALL_STATE(2004)] = 60767, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -114759,941 +114958,941 @@ 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(574), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 14), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(573), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1398), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1805), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1290), - [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1806), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1693), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(518), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(674), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(674), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(675), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(121), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1171), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(959), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1990), - [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1704), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1987), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1174), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(51), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1022), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(909), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(904), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1020), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1631), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1492), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1502), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1707), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1645), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(673), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1859), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1701), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(322), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1994), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(586), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1965), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1817), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1814), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(743), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(744), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1970), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1968), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1471), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(808), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1689), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1532), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(808), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(781), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 14), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(571), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1417), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1894), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1281), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1857), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1643), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(169), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1205), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(973), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(29), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1639), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1671), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(727), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1788), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1644), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(271), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1995), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(594), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1855), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1853), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1863), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(566), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1412), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1908), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1253), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1895), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1683), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(283), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1170), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(935), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(48), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1670), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1678), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(728), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1742), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1672), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(348), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1996), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(627), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1786), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1785), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1899), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(567), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1394), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1715), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1266), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1716), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1667), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(404), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1190), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(924), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(47), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1640), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1705), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(745), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1819), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1637), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(329), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1980), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(610), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1820), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1821), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1724), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(574), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1415), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1928), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1288), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1993), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1709), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(518), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(674), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(674), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(675), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1181), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(948), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1990), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1704), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1987), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1174), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(46), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1022), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(909), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(904), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1020), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1631), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1492), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1502), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1703), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1698), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(723), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1978), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1695), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(371), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1975), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(588), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1974), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1973), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1971), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(743), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(744), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1970), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1968), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1471), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1207), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1689), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1532), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1207), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(781), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(564), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(518), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(674), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(674), - [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(675), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(121), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1171), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(909), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1990), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1704), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1987), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(51), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1022), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(904), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1020), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1631), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1492), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1502), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1707), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1645), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1701), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(322), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1994), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(586), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1965), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1817), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1814), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(743), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(744), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1970), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1968), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1471), - [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(808), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1689), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1532), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(808), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(781), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(565), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(169), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1205), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1639), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1671), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1644), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(271), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1995), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(594), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1855), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1853), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1863), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(324), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1181), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(46), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1703), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1698), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1695), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(371), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1975), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(588), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1974), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1973), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1971), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(572), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(404), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1190), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(47), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1640), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1705), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1637), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(329), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1980), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(610), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1820), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1821), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1724), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 14), + [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 14), + [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(573), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1399), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1813), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1284), + [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1814), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1681), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(518), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(673), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(673), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(675), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(94), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1199), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(952), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1953), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1659), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1815), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1180), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(35), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1003), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(914), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(875), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1009), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1556), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1453), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1494), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1706), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1692), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(722), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1752), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1711), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(309), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2002), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(589), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1836), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1835), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1822), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(750), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(749), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1917), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1933), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1469), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(782), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1657), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1532), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(782), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(770), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(572), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1412), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1902), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1247), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1865), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1674), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(160), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1200), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(995), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(43), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1694), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1676), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(695), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1870), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1690), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(232), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2003), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(635), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1748), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1749), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1871), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(570), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1413), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1739), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1300), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1740), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1656), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(381), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1177), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(946), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(51), + [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1662), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1707), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(726), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1928), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1661), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(326), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1988), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(606), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1937), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1941), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1743), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(564), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1419), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1916), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1258), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1903), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1691), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(278), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1213), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(939), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1677), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1665), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(689), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1821), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1675), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(385), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2004), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(620), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1844), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1744), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1907), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(575), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1400), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2001), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1294), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1997), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1648), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(518), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(673), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(673), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(675), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1194), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(921), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1953), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1659), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1815), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1180), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(32), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1003), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(914), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(875), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1009), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1556), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1453), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1494), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1693), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1684), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(728), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1883), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1670), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(431), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1904), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(614), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1986), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1995), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1873), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(750), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(749), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1917), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1933), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1469), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1196), + [823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1657), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1532), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1196), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(770), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(565), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(518), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(673), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(673), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(675), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(94), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1199), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(914), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1953), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1659), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1815), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(35), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1003), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(875), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1009), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1556), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1453), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1494), + [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1706), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1692), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1711), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(309), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2002), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(589), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1836), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1835), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1822), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(750), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(749), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1917), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1933), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1469), + [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(782), + [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1657), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1532), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(782), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(770), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(160), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1200), + [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(43), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1694), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1676), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1690), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(232), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2003), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(635), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1748), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1749), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1871), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(567), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(278), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1213), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1677), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1665), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1675), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(385), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2004), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(620), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1844), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1744), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1907), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(571), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(381), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1177), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(51), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1662), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1707), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1661), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(326), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1988), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(606), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1937), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1941), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1743), [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(568), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(283), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1170), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(48), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1670), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1678), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1672), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(348), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1996), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(627), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1786), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1785), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1899), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(570), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1711), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1694), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1985), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 47), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(305), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1194), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1693), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1684), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1670), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(431), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1904), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(614), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1986), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1995), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1873), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(566), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1682), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1683), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1993), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 49), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 47), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 49), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 23), [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 23), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 92), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 92), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 24), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 24), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 25), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 25), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 63), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 63), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 62), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 62), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 64), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 64), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 29), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 29), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 67), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 67), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 77), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 77), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 78), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 78), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 79), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 79), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 80), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 80), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 81), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 81), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 89), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 89), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 93), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 93), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 94), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 94), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 95), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 95), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 100), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 100), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 101), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 101), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 102), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 102), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 103), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 103), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 109), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 109), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 41), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 41), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 46), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 53), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 53), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 55), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 55), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 74), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 74), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 30), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 30), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 60), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 60), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 59), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 59), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(820), - [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(518), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(674), - [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(674), - [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(675), - [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(169), - [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1710), - [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(29), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1639), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1671), - [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(727), - [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1788), - [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1644), - [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(271), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1995), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(594), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1855), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1853), - [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1863), - [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(743), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(744), - [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1970), - [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1968), - [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1471), - [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(808), - [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1689), - [1534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1532), - [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(808), - [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(781), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(821), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(283), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(48), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1670), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1678), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 55), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 55), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 64), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 64), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 70), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 70), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 80), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 80), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 81), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 81), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 82), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 82), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 65), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 65), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 83), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 83), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 84), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 84), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 92), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 92), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 94), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 94), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 95), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 95), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 96), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 96), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 97), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 97), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 98), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 98), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 103), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 103), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 104), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 104), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 105), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 105), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 106), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 106), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 112), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 112), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 66), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 66), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 48), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 48), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 24), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 24), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 41), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 41), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 24), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 24), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 25), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 25), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 29), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 29), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 30), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 30), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 57), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 57), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 60), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 60), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 14), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 14), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 13), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 61), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 61), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 62), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 62), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 77), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 77), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(822), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(518), + [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(673), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(673), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(675), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(94), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1705), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(35), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1706), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1692), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(722), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1752), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1711), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(309), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2002), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(589), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1836), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1835), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1822), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(750), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(749), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1917), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1933), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1469), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(782), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1657), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1532), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(782), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(770), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(825), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(305), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(32), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1693), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1684), [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(728), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1742), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1672), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(348), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1996), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(627), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1786), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1785), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1899), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(823), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(324), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(46), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1703), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1698), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(723), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1978), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1695), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(371), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1975), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(588), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1974), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1973), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1971), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(822), - [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(121), - [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(51), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1707), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1645), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(673), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1859), - [1662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1701), - [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(322), - [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1994), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(586), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1965), - [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1817), - [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1814), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(824), - [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(404), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(47), - [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1640), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1705), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(745), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1819), - [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1637), - [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(329), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1980), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(610), - [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1820), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1883), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1670), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(431), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1904), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(614), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1986), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1995), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1873), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(820), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(381), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(51), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1662), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1707), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(726), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1928), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1661), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(326), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1988), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(606), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1937), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1941), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1743), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(821), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1682), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(705), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1839), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1683), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1993), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(823), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(160), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(43), + [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1694), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1676), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(695), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1870), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1690), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(232), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2003), + [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(635), + [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1748), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1749), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1871), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(826), + [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(278), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1677), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1665), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(689), [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1821), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1724), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(826), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1711), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(678), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1984), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1694), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1985), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1675), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(385), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2004), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(620), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1844), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1744), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1907), [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1008), - [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1910), - [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1284), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1754), - [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1696), - [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(909), - [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1990), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1642), - [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1987), - [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1022), - [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(904), - [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1020), - [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1631), - [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1492), - [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1502), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1025), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1918), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1299), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1764), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1704), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(914), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1953), + [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1695), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1815), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1003), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(875), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1009), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1556), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1453), + [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1494), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1148), + [1968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1160), [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1911), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1293), - [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1824), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1702), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1856), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1274), - [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1890), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1669), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1912), - [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1243), - [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1871), - [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1708), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1919), + [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1269), + [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1832), + [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1710), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1920), + [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1246), + [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1879), + [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1716), + [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1864), + [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1286), + [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1851), + [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1709), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(755), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1532), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(754), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1532), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), @@ -115701,1198 +115900,1212 @@ static const TSParseActionEntry ts_parse_actions[] = { [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 57), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 57), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 40), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 40), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 108), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 108), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 48), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 48), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 112), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 112), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 85), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 85), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 99), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 99), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 56), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 56), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 73), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 73), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 82), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 82), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 70), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 70), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 26), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 40), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 40), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 110), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 110), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 111), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 111), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 115), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 115), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 72), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 72), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 50), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 50), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 102), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 102), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 101), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 101), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 85), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 85), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 58), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 58), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 73), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 73), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 59), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 59), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 87), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 87), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 76), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 76), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 88), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 88), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(825), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(824), [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(909), - [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1990), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1642), - [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1987), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(904), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(914), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1953), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1695), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1815), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(875), [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 29), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 29), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 29), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 29), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 29), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 29), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 55), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 55), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 55), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 55), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 61), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 61), [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 53), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 53), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 59), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 59), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 60), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 60), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 90), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 90), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 53), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 53), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 74), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 74), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 90), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 90), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 29), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 29), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 29), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 29), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 29), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 29), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 93), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 93), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 77), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 77), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 62), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 62), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 93), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 93), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(922), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 45), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 45), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 22), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 22), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 49), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 49), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 22), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 22), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 45), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 45), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 21), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 21), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 20), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 20), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1148), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 6), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 6), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 6), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 6), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(994), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 6), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 6), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 66), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 66), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 39), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1990), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 46), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 46), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(919), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 22), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 22), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 69), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 69), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 45), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 45), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 47), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 47), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 47), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 47), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 20), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 20), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 21), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 21), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 22), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 22), + [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1023), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 45), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 45), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 6), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 6), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 46), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 46), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 6), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 6), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 51), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 51), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 69), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 69), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1160), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 6), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 6), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 68), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 68), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1953), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 39), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), - [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), SHIFT(1990), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 52), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 88), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 65), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), - [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), SHIFT(1990), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), - [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), SHIFT(1990), - [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(904), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1990), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1221), - [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1220), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3146] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1148), - [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 67), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), + [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), SHIFT(1953), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 91), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 54), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 68), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 68), + [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 68), SHIFT(1953), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1953), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), SHIFT(1953), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(875), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1229), + [3164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1223), + [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3170] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1160), + [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(922), - [3406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1002), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1861), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1704), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 31), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 31), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 71), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 71), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1990), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 86), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 86), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 28), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 50), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 50), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 31), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 31), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 86), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 50), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 71), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 28), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 87), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 87), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 51), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 51), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 44), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 44), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 29), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 51), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 51), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 72), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 72), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 51), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 51), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 28), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 51), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 51), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 72), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 72), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 87), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 87), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 62), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 87), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 87), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [3688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1512), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), - [3695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(690), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1797), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 41), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 72), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 72), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 18), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 18), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 51), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 51), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 50), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 51), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 51), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 75), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 51), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 72), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 51), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 31), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 61), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 87), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 97), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 83), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 105), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 42), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 83), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 96), SHIFT_REPEAT(1439), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 96), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 54), SHIFT_REPEAT(1360), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 54), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1472), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 110), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 68), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 68), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 96), SHIFT_REPEAT(1430), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 96), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1530), - [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1530), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 76), - [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(623), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 28), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(552), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(764), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 68), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1679), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1651), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1286), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 54), SHIFT_REPEAT(1346), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 54), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 111), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 114), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 114), - [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1803), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 113), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 97), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 104), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1131), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 54), SHIFT_REPEAT(1328), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 54), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 106), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 68), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 104), - [4153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1690), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 106), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 42), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 74), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 60), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 59), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 59), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 74), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 36), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4642] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(919), + [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1012), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1968), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1659), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 74), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1953), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 52), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 52), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 89), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 74), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 28), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 31), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 31), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 89), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 31), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 31), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 28), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 52), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 89), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 74), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 75), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 75), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 90), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 90), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 44), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 44), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 28), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 90), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 90), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 53), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 53), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 75), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 75), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 53), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 53), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 29), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 53), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 53), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 53), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 53), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 64), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 18), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 18), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 53), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 53), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1538), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 52), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), + [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 90), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 90), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(710), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1763), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 41), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 75), + [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 75), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 53), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 53), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 53), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 31), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 63), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 53), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 75), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 90), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 78), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 86), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 86), + [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1513), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1513), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 71), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 100), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 42), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 99), SHIFT_REPEAT(1432), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 99), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 108), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1368), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 56), + [3921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 99), SHIFT_REPEAT(1433), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 99), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 71), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1477), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 113), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 28), + [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(552), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 71), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 56), SHIFT_REPEAT(1336), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 56), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 56), SHIFT_REPEAT(1360), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 56), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1655), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 109), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 117), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 117), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1671), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 116), SHIFT_REPEAT(1804), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 116), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 114), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 79), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 100), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 107), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1136), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 71), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 107), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(762), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1701), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1249), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(603), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 109), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 42), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 36), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 77), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 61), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4530] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 77), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 62), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 61), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), }; #ifdef __cplusplus diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 0d7cd25..a12b0b4 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -676,6 +676,10 @@ enum Z { A } __attribute__((aligned(16))); +struct __attribute__((__packed__)) foo_t { + int x; +}; + -------------------------------------------------------------------------------- (translation_unit @@ -889,4 +893,13 @@ enum Z { (call_expression (identifier) (argument_list - (number_literal))))))) + (number_literal)))))) + (struct_specifier + (attribute_specifier + (argument_list + (identifier))) + (type_identifier) + (field_declaration_list + (field_declaration + (primitive_type) + (field_identifier)))))