diff --git a/corpus/declarations.txt b/corpus/declarations.txt index e469d34..a26c154 100644 --- a/corpus/declarations.txt +++ b/corpus/declarations.txt @@ -135,6 +135,7 @@ Pointer variable declarations char *the_string; const char **the_strings; +int const * const restrict x; --- @@ -145,7 +146,11 @@ const char **the_strings; (declaration (type_qualifier) (primitive_type) - (pointer_declarator (pointer_declarator (identifier))))) + (pointer_declarator (pointer_declarator (identifier)))) + (declaration + (primitive_type) + (type_qualifier) + (pointer_declarator (type_qualifier) (type_qualifier) (identifier)))) ============================================ Typedefs diff --git a/grammar.js b/grammar.js index 05dc0eb..4185ae2 100644 --- a/grammar.js +++ b/grammar.js @@ -201,10 +201,10 @@ module.exports = grammar({ prec(1, seq('(', $._abstract_declarator, ')')) ), - pointer_declarator: $ => prec.right(seq('*', $._declarator)), - pointer_field_declarator: $ => prec.right(seq('*', $._field_declarator)), - pointer_type_declarator: $ => prec.right(seq('*', $._type_declarator)), - abstract_pointer_declarator: $ => prec.right(seq('*', optional($._abstract_declarator))), + pointer_declarator: $ => prec.right(seq('*', repeat($.type_qualifier), $._declarator)), + pointer_field_declarator: $ => prec.right(seq('*', repeat($.type_qualifier), $._field_declarator)), + pointer_type_declarator: $ => prec.right(seq('*', repeat($.type_qualifier), $._type_declarator)), + abstract_pointer_declarator: $ => prec.right(seq('*', repeat($.type_qualifier), optional($._abstract_declarator))), function_declarator: $ => prec(1, seq($._declarator, $.parameter_list)), function_field_declarator: $ => prec(1, seq($._field_declarator, $.parameter_list)), diff --git a/src/grammar.json b/src/grammar.json index ada92e1..5cd81bc 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1363,6 +1363,13 @@ "type": "STRING", "value": "*" }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, { "type": "SYMBOL", "name": "_declarator" @@ -1380,6 +1387,13 @@ "type": "STRING", "value": "*" }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, { "type": "SYMBOL", "name": "_field_declarator" @@ -1397,6 +1411,13 @@ "type": "STRING", "value": "*" }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, { "type": "SYMBOL", "name": "_type_declarator" @@ -1414,6 +1435,13 @@ "type": "STRING", "value": "*" }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" + } + }, { "type": "CHOICE", "members": [ diff --git a/src/parser.c b/src/parser.c index 05cb350..317ba30 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 8 -#define STATE_COUNT 1410 +#define STATE_COUNT 1428 #define SYMBOL_COUNT 208 #define ALIAS_COUNT 18 #define TOKEN_COUNT 98 @@ -4374,1296 +4374,1314 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [117] = {.lex_state = 0}, [118] = {.lex_state = 147}, [119] = {.lex_state = 168}, - [120] = {.lex_state = 147}, - [121] = {.lex_state = 0}, - [122] = {.lex_state = 133}, + [120] = {.lex_state = 0}, + [121] = {.lex_state = 147}, + [122] = {.lex_state = 0}, [123] = {.lex_state = 133}, - [124] = {.lex_state = 171}, - [125] = {.lex_state = 124}, - [126] = {.lex_state = 151}, - [127] = {.lex_state = 168}, - [128] = {.lex_state = 135}, - [129] = {.lex_state = 133}, + [124] = {.lex_state = 133}, + [125] = {.lex_state = 171}, + [126] = {.lex_state = 124}, + [127] = {.lex_state = 151}, + [128] = {.lex_state = 168}, + [129] = {.lex_state = 135}, [130] = {.lex_state = 133}, - [131] = {.lex_state = 167}, - [132] = {.lex_state = 172}, - [133] = {.lex_state = 149}, - [134] = {.lex_state = 133}, - [135] = {.lex_state = 167}, - [136] = {.lex_state = 134}, - [137] = {.lex_state = 121}, - [138] = {.lex_state = 134}, + [131] = {.lex_state = 133}, + [132] = {.lex_state = 167}, + [133] = {.lex_state = 172}, + [134] = {.lex_state = 149}, + [135] = {.lex_state = 133}, + [136] = {.lex_state = 167}, + [137] = {.lex_state = 134}, + [138] = {.lex_state = 121}, [139] = {.lex_state = 134}, [140] = {.lex_state = 134}, - [141] = {.lex_state = 107}, - [142] = {.lex_state = 0}, - [143] = {.lex_state = 112}, - [144] = {.lex_state = 0}, + [141] = {.lex_state = 134}, + [142] = {.lex_state = 107}, + [143] = {.lex_state = 0}, + [144] = {.lex_state = 112}, [145] = {.lex_state = 0}, - [146] = {.lex_state = 121}, - [147] = {.lex_state = 0}, - [148] = {.lex_state = 124}, - [149] = {.lex_state = 133}, - [150] = {.lex_state = 152}, - [151] = {.lex_state = 134}, - [152] = {.lex_state = 112}, - [153] = {.lex_state = 134}, - [154] = {.lex_state = 0}, + [146] = {.lex_state = 0}, + [147] = {.lex_state = 121}, + [148] = {.lex_state = 0}, + [149] = {.lex_state = 124}, + [150] = {.lex_state = 133}, + [151] = {.lex_state = 152}, + [152] = {.lex_state = 134}, + [153] = {.lex_state = 112}, + [154] = {.lex_state = 134}, [155] = {.lex_state = 0}, - [156] = {.lex_state = 124}, - [157] = {.lex_state = 151}, - [158] = {.lex_state = 134}, - [159] = {.lex_state = 135}, + [156] = {.lex_state = 0}, + [157] = {.lex_state = 124}, + [158] = {.lex_state = 151}, + [159] = {.lex_state = 134}, [160] = {.lex_state = 135}, - [161] = {.lex_state = 155}, - [162] = {.lex_state = 134}, - [163] = {.lex_state = 151}, - [164] = {.lex_state = 155}, - [165] = {.lex_state = 151}, - [166] = {.lex_state = 155}, - [167] = {.lex_state = 133}, - [168] = {.lex_state = 0}, - [169] = {.lex_state = 147}, - [170] = {.lex_state = 168}, - [171] = {.lex_state = 133}, - [172] = {.lex_state = 171}, - [173] = {.lex_state = 168}, - [174] = {.lex_state = 135}, - [175] = {.lex_state = 151}, - [176] = {.lex_state = 133}, - [177] = {.lex_state = 0}, - [178] = {.lex_state = 0}, + [161] = {.lex_state = 135}, + [162] = {.lex_state = 155}, + [163] = {.lex_state = 134}, + [164] = {.lex_state = 151}, + [165] = {.lex_state = 155}, + [166] = {.lex_state = 151}, + [167] = {.lex_state = 155}, + [168] = {.lex_state = 133}, + [169] = {.lex_state = 0}, + [170] = {.lex_state = 147}, + [171] = {.lex_state = 168}, + [172] = {.lex_state = 0}, + [173] = {.lex_state = 133}, + [174] = {.lex_state = 171}, + [175] = {.lex_state = 168}, + [176] = {.lex_state = 135}, + [177] = {.lex_state = 151}, + [178] = {.lex_state = 133}, [179] = {.lex_state = 0}, - [180] = {.lex_state = 124}, - [181] = {.lex_state = 124}, - [182] = {.lex_state = 133}, - [183] = {.lex_state = 135}, - [184] = {.lex_state = 155}, - [185] = {.lex_state = 155}, + [180] = {.lex_state = 0}, + [181] = {.lex_state = 0}, + [182] = {.lex_state = 124}, + [183] = {.lex_state = 124}, + [184] = {.lex_state = 133}, + [185] = {.lex_state = 135}, [186] = {.lex_state = 155}, - [187] = {.lex_state = 0}, - [188] = {.lex_state = 169}, + [187] = {.lex_state = 155}, + [188] = {.lex_state = 155}, [189] = {.lex_state = 0}, - [190] = {.lex_state = 124}, - [191] = {.lex_state = 173}, - [192] = {.lex_state = 170}, + [190] = {.lex_state = 169}, + [191] = {.lex_state = 0}, + [192] = {.lex_state = 124}, [193] = {.lex_state = 173}, - [194] = {.lex_state = 173}, + [194] = {.lex_state = 170}, [195] = {.lex_state = 173}, - [196] = {.lex_state = 170}, - [197] = {.lex_state = 124}, - [198] = {.lex_state = 136}, - [199] = {.lex_state = 170}, - [200] = {.lex_state = 170}, - [201] = {.lex_state = 147}, - [202] = {.lex_state = 147}, - [203] = {.lex_state = 171}, + [196] = {.lex_state = 173}, + [197] = {.lex_state = 173}, + [198] = {.lex_state = 170}, + [199] = {.lex_state = 124}, + [200] = {.lex_state = 136}, + [201] = {.lex_state = 170}, + [202] = {.lex_state = 170}, + [203] = {.lex_state = 147}, [204] = {.lex_state = 147}, - [205] = {.lex_state = 172}, - [206] = {.lex_state = 124}, - [207] = {.lex_state = 147}, - [208] = {.lex_state = 147}, - [209] = {.lex_state = 168}, - [210] = {.lex_state = 172}, - [211] = {.lex_state = 173}, - [212] = {.lex_state = 172}, - [213] = {.lex_state = 172}, + [205] = {.lex_state = 171}, + [206] = {.lex_state = 147}, + [207] = {.lex_state = 172}, + [208] = {.lex_state = 124}, + [209] = {.lex_state = 147}, + [210] = {.lex_state = 147}, + [211] = {.lex_state = 0}, + [212] = {.lex_state = 168}, + [213] = {.lex_state = 168}, [214] = {.lex_state = 0}, [215] = {.lex_state = 172}, - [216] = {.lex_state = 0}, - [217] = {.lex_state = 135}, - [218] = {.lex_state = 135}, - [219] = {.lex_state = 124}, - [220] = {.lex_state = 112}, + [216] = {.lex_state = 173}, + [217] = {.lex_state = 172}, + [218] = {.lex_state = 172}, + [219] = {.lex_state = 0}, + [220] = {.lex_state = 172}, [221] = {.lex_state = 0}, - [222] = {.lex_state = 0}, - [223] = {.lex_state = 133}, - [224] = {.lex_state = 133}, - [225] = {.lex_state = 124}, + [222] = {.lex_state = 135}, + [223] = {.lex_state = 135}, + [224] = {.lex_state = 124}, + [225] = {.lex_state = 112}, [226] = {.lex_state = 0}, [227] = {.lex_state = 0}, - [228] = {.lex_state = 124}, - [229] = {.lex_state = 170}, - [230] = {.lex_state = 0}, - [231] = {.lex_state = 133}, + [228] = {.lex_state = 133}, + [229] = {.lex_state = 133}, + [230] = {.lex_state = 124}, + [231] = {.lex_state = 0}, [232] = {.lex_state = 0}, - [233] = {.lex_state = 133}, - [234] = {.lex_state = 133}, - [235] = {.lex_state = 133}, - [236] = {.lex_state = 0}, - [237] = {.lex_state = 124}, - [238] = {.lex_state = 124}, - [239] = {.lex_state = 124}, - [240] = {.lex_state = 124}, - [241] = {.lex_state = 135}, - [242] = {.lex_state = 170}, - [243] = {.lex_state = 133}, - [244] = {.lex_state = 133}, - [245] = {.lex_state = 133}, + [233] = {.lex_state = 124}, + [234] = {.lex_state = 170}, + [235] = {.lex_state = 0}, + [236] = {.lex_state = 133}, + [237] = {.lex_state = 0}, + [238] = {.lex_state = 133}, + [239] = {.lex_state = 133}, + [240] = {.lex_state = 133}, + [241] = {.lex_state = 0}, + [242] = {.lex_state = 124}, + [243] = {.lex_state = 124}, + [244] = {.lex_state = 124}, + [245] = {.lex_state = 124}, [246] = {.lex_state = 135}, - [247] = {.lex_state = 133}, + [247] = {.lex_state = 170}, [248] = {.lex_state = 133}, - [249] = {.lex_state = 124}, - [250] = {.lex_state = 124}, - [251] = {.lex_state = 168}, - [252] = {.lex_state = 124}, - [253] = {.lex_state = 124}, + [249] = {.lex_state = 133}, + [250] = {.lex_state = 133}, + [251] = {.lex_state = 135}, + [252] = {.lex_state = 133}, + [253] = {.lex_state = 133}, [254] = {.lex_state = 124}, [255] = {.lex_state = 124}, - [256] = {.lex_state = 174}, - [257] = {.lex_state = 174}, - [258] = {.lex_state = 171}, - [259] = {.lex_state = 171}, - [260] = {.lex_state = 174}, - [261] = {.lex_state = 0}, - [262] = {.lex_state = 171}, - [263] = {.lex_state = 175}, - [264] = {.lex_state = 135}, - [265] = {.lex_state = 135}, - [266] = {.lex_state = 133}, - [267] = {.lex_state = 135}, - [268] = {.lex_state = 133}, - [269] = {.lex_state = 147}, - [270] = {.lex_state = 149}, - [271] = {.lex_state = 172}, - [272] = {.lex_state = 133}, - [273] = {.lex_state = 112}, - [274] = {.lex_state = 134}, + [256] = {.lex_state = 168}, + [257] = {.lex_state = 124}, + [258] = {.lex_state = 124}, + [259] = {.lex_state = 124}, + [260] = {.lex_state = 124}, + [261] = {.lex_state = 174}, + [262] = {.lex_state = 174}, + [263] = {.lex_state = 171}, + [264] = {.lex_state = 171}, + [265] = {.lex_state = 174}, + [266] = {.lex_state = 0}, + [267] = {.lex_state = 171}, + [268] = {.lex_state = 175}, + [269] = {.lex_state = 135}, + [270] = {.lex_state = 135}, + [271] = {.lex_state = 133}, + [272] = {.lex_state = 135}, + [273] = {.lex_state = 133}, + [274] = {.lex_state = 147}, [275] = {.lex_state = 149}, - [276] = {.lex_state = 134}, - [277] = {.lex_state = 155}, - [278] = {.lex_state = 134}, + [276] = {.lex_state = 172}, + [277] = {.lex_state = 133}, + [278] = {.lex_state = 112}, [279] = {.lex_state = 134}, - [280] = {.lex_state = 155}, + [280] = {.lex_state = 149}, [281] = {.lex_state = 134}, - [282] = {.lex_state = 134}, - [283] = {.lex_state = 155}, + [282] = {.lex_state = 155}, + [283] = {.lex_state = 134}, [284] = {.lex_state = 134}, - [285] = {.lex_state = 152}, - [286] = {.lex_state = 121}, + [285] = {.lex_state = 155}, + [286] = {.lex_state = 134}, [287] = {.lex_state = 134}, - [288] = {.lex_state = 134}, + [288] = {.lex_state = 155}, [289] = {.lex_state = 134}, - [290] = {.lex_state = 112}, - [291] = {.lex_state = 152}, - [292] = {.lex_state = 0}, - [293] = {.lex_state = 0}, - [294] = {.lex_state = 124}, - [295] = {.lex_state = 152}, - [296] = {.lex_state = 135}, - [297] = {.lex_state = 135}, - [298] = {.lex_state = 152}, - [299] = {.lex_state = 155}, - [300] = {.lex_state = 134}, - [301] = {.lex_state = 167}, + [290] = {.lex_state = 152}, + [291] = {.lex_state = 121}, + [292] = {.lex_state = 134}, + [293] = {.lex_state = 134}, + [294] = {.lex_state = 134}, + [295] = {.lex_state = 112}, + [296] = {.lex_state = 152}, + [297] = {.lex_state = 0}, + [298] = {.lex_state = 0}, + [299] = {.lex_state = 124}, + [300] = {.lex_state = 152}, + [301] = {.lex_state = 135}, [302] = {.lex_state = 135}, - [303] = {.lex_state = 0}, - [304] = {.lex_state = 133}, + [303] = {.lex_state = 152}, + [304] = {.lex_state = 155}, [305] = {.lex_state = 134}, - [306] = {.lex_state = 0}, - [307] = {.lex_state = 134}, - [308] = {.lex_state = 133}, - [309] = {.lex_state = 134}, - [310] = {.lex_state = 135}, - [311] = {.lex_state = 151}, - [312] = {.lex_state = 151}, - [313] = {.lex_state = 151}, - [314] = {.lex_state = 168}, - [315] = {.lex_state = 168}, - [316] = {.lex_state = 171}, - [317] = {.lex_state = 174}, - [318] = {.lex_state = 133}, - [319] = {.lex_state = 151}, - [320] = {.lex_state = 133}, - [321] = {.lex_state = 0}, - [322] = {.lex_state = 0}, - [323] = {.lex_state = 124}, - [324] = {.lex_state = 124}, - [325] = {.lex_state = 124}, - [326] = {.lex_state = 124}, - [327] = {.lex_state = 124}, - [328] = {.lex_state = 124}, - [329] = {.lex_state = 135}, - [330] = {.lex_state = 135}, + [306] = {.lex_state = 167}, + [307] = {.lex_state = 135}, + [308] = {.lex_state = 0}, + [309] = {.lex_state = 133}, + [310] = {.lex_state = 134}, + [311] = {.lex_state = 0}, + [312] = {.lex_state = 134}, + [313] = {.lex_state = 133}, + [314] = {.lex_state = 134}, + [315] = {.lex_state = 135}, + [316] = {.lex_state = 151}, + [317] = {.lex_state = 151}, + [318] = {.lex_state = 151}, + [319] = {.lex_state = 0}, + [320] = {.lex_state = 168}, + [321] = {.lex_state = 168}, + [322] = {.lex_state = 168}, + [323] = {.lex_state = 171}, + [324] = {.lex_state = 174}, + [325] = {.lex_state = 133}, + [326] = {.lex_state = 151}, + [327] = {.lex_state = 133}, + [328] = {.lex_state = 0}, + [329] = {.lex_state = 0}, + [330] = {.lex_state = 124}, [331] = {.lex_state = 124}, - [332] = {.lex_state = 135}, - [333] = {.lex_state = 133}, - [334] = {.lex_state = 135}, - [335] = {.lex_state = 169}, - [336] = {.lex_state = 155}, - [337] = {.lex_state = 112}, - [338] = {.lex_state = 155}, - [339] = {.lex_state = 155}, - [340] = {.lex_state = 155}, - [341] = {.lex_state = 169}, - [342] = {.lex_state = 155}, + [332] = {.lex_state = 124}, + [333] = {.lex_state = 124}, + [334] = {.lex_state = 124}, + [335] = {.lex_state = 124}, + [336] = {.lex_state = 135}, + [337] = {.lex_state = 135}, + [338] = {.lex_state = 124}, + [339] = {.lex_state = 135}, + [340] = {.lex_state = 133}, + [341] = {.lex_state = 135}, + [342] = {.lex_state = 169}, [343] = {.lex_state = 155}, - [344] = {.lex_state = 155}, - [345] = {.lex_state = 169}, + [344] = {.lex_state = 112}, + [345] = {.lex_state = 155}, [346] = {.lex_state = 155}, [347] = {.lex_state = 155}, - [348] = {.lex_state = 155}, - [349] = {.lex_state = 0}, - [350] = {.lex_state = 147}, - [351] = {.lex_state = 173}, - [352] = {.lex_state = 124}, - [353] = {.lex_state = 124}, - [354] = {.lex_state = 124}, - [355] = {.lex_state = 124}, - [356] = {.lex_state = 124}, - [357] = {.lex_state = 124}, - [358] = {.lex_state = 135}, - [359] = {.lex_state = 135}, - [360] = {.lex_state = 0}, - [361] = {.lex_state = 169}, - [362] = {.lex_state = 171}, + [348] = {.lex_state = 169}, + [349] = {.lex_state = 155}, + [350] = {.lex_state = 155}, + [351] = {.lex_state = 155}, + [352] = {.lex_state = 169}, + [353] = {.lex_state = 155}, + [354] = {.lex_state = 155}, + [355] = {.lex_state = 155}, + [356] = {.lex_state = 0}, + [357] = {.lex_state = 147}, + [358] = {.lex_state = 173}, + [359] = {.lex_state = 0}, + [360] = {.lex_state = 124}, + [361] = {.lex_state = 124}, + [362] = {.lex_state = 124}, [363] = {.lex_state = 124}, - [364] = {.lex_state = 173}, - [365] = {.lex_state = 170}, - [366] = {.lex_state = 170}, - [367] = {.lex_state = 170}, - [368] = {.lex_state = 147}, - [369] = {.lex_state = 172}, - [370] = {.lex_state = 172}, - [371] = {.lex_state = 171}, - [372] = {.lex_state = 174}, - [373] = {.lex_state = 171}, - [374] = {.lex_state = 172}, - [375] = {.lex_state = 147}, + [364] = {.lex_state = 124}, + [365] = {.lex_state = 124}, + [366] = {.lex_state = 135}, + [367] = {.lex_state = 135}, + [368] = {.lex_state = 0}, + [369] = {.lex_state = 169}, + [370] = {.lex_state = 171}, + [371] = {.lex_state = 124}, + [372] = {.lex_state = 173}, + [373] = {.lex_state = 170}, + [374] = {.lex_state = 170}, + [375] = {.lex_state = 170}, [376] = {.lex_state = 147}, - [377] = {.lex_state = 173}, - [378] = {.lex_state = 172}, - [379] = {.lex_state = 147}, - [380] = {.lex_state = 172}, - [381] = {.lex_state = 172}, - [382] = {.lex_state = 172}, + [377] = {.lex_state = 172}, + [378] = {.lex_state = 147}, + [379] = {.lex_state = 172}, + [380] = {.lex_state = 171}, + [381] = {.lex_state = 174}, + [382] = {.lex_state = 171}, [383] = {.lex_state = 172}, - [384] = {.lex_state = 172}, - [385] = {.lex_state = 172}, - [386] = {.lex_state = 124}, - [387] = {.lex_state = 124}, - [388] = {.lex_state = 124}, - [389] = {.lex_state = 124}, - [390] = {.lex_state = 124}, - [391] = {.lex_state = 124}, + [384] = {.lex_state = 147}, + [385] = {.lex_state = 147}, + [386] = {.lex_state = 173}, + [387] = {.lex_state = 172}, + [388] = {.lex_state = 147}, + [389] = {.lex_state = 172}, + [390] = {.lex_state = 172}, + [391] = {.lex_state = 172}, [392] = {.lex_state = 172}, [393] = {.lex_state = 172}, [394] = {.lex_state = 172}, - [395] = {.lex_state = 147}, - [396] = {.lex_state = 147}, - [397] = {.lex_state = 134}, - [398] = {.lex_state = 134}, - [399] = {.lex_state = 134}, - [400] = {.lex_state = 176}, + [395] = {.lex_state = 0}, + [396] = {.lex_state = 124}, + [397] = {.lex_state = 124}, + [398] = {.lex_state = 124}, + [399] = {.lex_state = 124}, + [400] = {.lex_state = 124}, [401] = {.lex_state = 124}, - [402] = {.lex_state = 124}, - [403] = {.lex_state = 124}, - [404] = {.lex_state = 124}, - [405] = {.lex_state = 124}, - [406] = {.lex_state = 124}, - [407] = {.lex_state = 124}, - [408] = {.lex_state = 124}, - [409] = {.lex_state = 170}, - [410] = {.lex_state = 170}, - [411] = {.lex_state = 133}, + [402] = {.lex_state = 172}, + [403] = {.lex_state = 172}, + [404] = {.lex_state = 172}, + [405] = {.lex_state = 147}, + [406] = {.lex_state = 147}, + [407] = {.lex_state = 134}, + [408] = {.lex_state = 134}, + [409] = {.lex_state = 134}, + [410] = {.lex_state = 176}, + [411] = {.lex_state = 124}, [412] = {.lex_state = 124}, - [413] = {.lex_state = 0}, - [414] = {.lex_state = 0}, + [413] = {.lex_state = 124}, + [414] = {.lex_state = 124}, [415] = {.lex_state = 124}, - [416] = {.lex_state = 170}, - [417] = {.lex_state = 0}, - [418] = {.lex_state = 0}, + [416] = {.lex_state = 124}, + [417] = {.lex_state = 124}, + [418] = {.lex_state = 124}, [419] = {.lex_state = 170}, - [420] = {.lex_state = 0}, + [420] = {.lex_state = 170}, [421] = {.lex_state = 133}, - [422] = {.lex_state = 133}, - [423] = {.lex_state = 135}, - [424] = {.lex_state = 133}, - [425] = {.lex_state = 133}, - [426] = {.lex_state = 133}, - [427] = {.lex_state = 176}, - [428] = {.lex_state = 176}, - [429] = {.lex_state = 176}, - [430] = {.lex_state = 124}, - [431] = {.lex_state = 135}, - [432] = {.lex_state = 135}, - [433] = {.lex_state = 133}, - [434] = {.lex_state = 135}, - [435] = {.lex_state = 178}, - [436] = {.lex_state = 124}, - [437] = {.lex_state = 133}, - [438] = {.lex_state = 124}, - [439] = {.lex_state = 124}, + [422] = {.lex_state = 124}, + [423] = {.lex_state = 0}, + [424] = {.lex_state = 0}, + [425] = {.lex_state = 124}, + [426] = {.lex_state = 170}, + [427] = {.lex_state = 0}, + [428] = {.lex_state = 0}, + [429] = {.lex_state = 170}, + [430] = {.lex_state = 0}, + [431] = {.lex_state = 133}, + [432] = {.lex_state = 133}, + [433] = {.lex_state = 135}, + [434] = {.lex_state = 133}, + [435] = {.lex_state = 133}, + [436] = {.lex_state = 133}, + [437] = {.lex_state = 176}, + [438] = {.lex_state = 176}, + [439] = {.lex_state = 176}, [440] = {.lex_state = 124}, - [441] = {.lex_state = 124}, - [442] = {.lex_state = 124}, - [443] = {.lex_state = 124}, - [444] = {.lex_state = 124}, - [445] = {.lex_state = 124}, + [441] = {.lex_state = 135}, + [442] = {.lex_state = 135}, + [443] = {.lex_state = 133}, + [444] = {.lex_state = 135}, + [445] = {.lex_state = 178}, [446] = {.lex_state = 124}, - [447] = {.lex_state = 124}, + [447] = {.lex_state = 133}, [448] = {.lex_state = 124}, [449] = {.lex_state = 124}, [450] = {.lex_state = 124}, - [451] = {.lex_state = 176}, - [452] = {.lex_state = 0}, - [453] = {.lex_state = 176}, - [454] = {.lex_state = 133}, - [455] = {.lex_state = 133}, - [456] = {.lex_state = 147}, + [451] = {.lex_state = 124}, + [452] = {.lex_state = 124}, + [453] = {.lex_state = 124}, + [454] = {.lex_state = 124}, + [455] = {.lex_state = 124}, + [456] = {.lex_state = 124}, [457] = {.lex_state = 124}, - [458] = {.lex_state = 174}, - [459] = {.lex_state = 174}, - [460] = {.lex_state = 168}, - [461] = {.lex_state = 174}, - [462] = {.lex_state = 171}, - [463] = {.lex_state = 124}, - [464] = {.lex_state = 124}, - [465] = {.lex_state = 124}, - [466] = {.lex_state = 124}, + [458] = {.lex_state = 124}, + [459] = {.lex_state = 124}, + [460] = {.lex_state = 124}, + [461] = {.lex_state = 176}, + [462] = {.lex_state = 0}, + [463] = {.lex_state = 176}, + [464] = {.lex_state = 133}, + [465] = {.lex_state = 133}, + [466] = {.lex_state = 147}, [467] = {.lex_state = 124}, - [468] = {.lex_state = 124}, - [469] = {.lex_state = 124}, - [470] = {.lex_state = 124}, - [471] = {.lex_state = 124}, - [472] = {.lex_state = 124}, + [468] = {.lex_state = 174}, + [469] = {.lex_state = 174}, + [470] = {.lex_state = 168}, + [471] = {.lex_state = 174}, + [472] = {.lex_state = 171}, [473] = {.lex_state = 124}, [474] = {.lex_state = 124}, - [475] = {.lex_state = 171}, - [476] = {.lex_state = 171}, - [477] = {.lex_state = 133}, - [478] = {.lex_state = 176}, + [475] = {.lex_state = 124}, + [476] = {.lex_state = 124}, + [477] = {.lex_state = 124}, + [478] = {.lex_state = 124}, [479] = {.lex_state = 124}, - [480] = {.lex_state = 0}, - [481] = {.lex_state = 135}, - [482] = {.lex_state = 135}, + [480] = {.lex_state = 124}, + [481] = {.lex_state = 124}, + [482] = {.lex_state = 124}, [483] = {.lex_state = 124}, - [484] = {.lex_state = 172}, - [485] = {.lex_state = 149}, - [486] = {.lex_state = 172}, - [487] = {.lex_state = 167}, - [488] = {.lex_state = 134}, - [489] = {.lex_state = 167}, - [490] = {.lex_state = 134}, - [491] = {.lex_state = 155}, - [492] = {.lex_state = 134}, - [493] = {.lex_state = 155}, - [494] = {.lex_state = 134}, - [495] = {.lex_state = 155}, - [496] = {.lex_state = 112}, - [497] = {.lex_state = 152}, - [498] = {.lex_state = 149}, - [499] = {.lex_state = 152}, - [500] = {.lex_state = 155}, - [501] = {.lex_state = 134}, - [502] = {.lex_state = 152}, + [484] = {.lex_state = 124}, + [485] = {.lex_state = 171}, + [486] = {.lex_state = 171}, + [487] = {.lex_state = 133}, + [488] = {.lex_state = 176}, + [489] = {.lex_state = 124}, + [490] = {.lex_state = 0}, + [491] = {.lex_state = 135}, + [492] = {.lex_state = 135}, + [493] = {.lex_state = 124}, + [494] = {.lex_state = 172}, + [495] = {.lex_state = 149}, + [496] = {.lex_state = 172}, + [497] = {.lex_state = 167}, + [498] = {.lex_state = 134}, + [499] = {.lex_state = 167}, + [500] = {.lex_state = 134}, + [501] = {.lex_state = 155}, + [502] = {.lex_state = 134}, [503] = {.lex_state = 155}, [504] = {.lex_state = 134}, - [505] = {.lex_state = 152}, - [506] = {.lex_state = 155}, - [507] = {.lex_state = 134}, - [508] = {.lex_state = 167}, - [509] = {.lex_state = 135}, - [510] = {.lex_state = 0}, - [511] = {.lex_state = 133}, + [505] = {.lex_state = 155}, + [506] = {.lex_state = 112}, + [507] = {.lex_state = 152}, + [508] = {.lex_state = 149}, + [509] = {.lex_state = 152}, + [510] = {.lex_state = 155}, + [511] = {.lex_state = 134}, [512] = {.lex_state = 152}, - [513] = {.lex_state = 0}, - [514] = {.lex_state = 152}, - [515] = {.lex_state = 133}, - [516] = {.lex_state = 152}, - [517] = {.lex_state = 135}, - [518] = {.lex_state = 155}, - [519] = {.lex_state = 134}, - [520] = {.lex_state = 134}, - [521] = {.lex_state = 135}, - [522] = {.lex_state = 134}, - [523] = {.lex_state = 133}, - [524] = {.lex_state = 134}, + [513] = {.lex_state = 155}, + [514] = {.lex_state = 134}, + [515] = {.lex_state = 152}, + [516] = {.lex_state = 155}, + [517] = {.lex_state = 134}, + [518] = {.lex_state = 167}, + [519] = {.lex_state = 135}, + [520] = {.lex_state = 0}, + [521] = {.lex_state = 133}, + [522] = {.lex_state = 152}, + [523] = {.lex_state = 0}, + [524] = {.lex_state = 152}, [525] = {.lex_state = 133}, - [526] = {.lex_state = 134}, - [527] = {.lex_state = 168}, - [528] = {.lex_state = 174}, - [529] = {.lex_state = 147}, - [530] = {.lex_state = 124}, + [526] = {.lex_state = 152}, + [527] = {.lex_state = 135}, + [528] = {.lex_state = 155}, + [529] = {.lex_state = 134}, + [530] = {.lex_state = 134}, [531] = {.lex_state = 135}, - [532] = {.lex_state = 135}, - [533] = {.lex_state = 124}, - [534] = {.lex_state = 124}, - [535] = {.lex_state = 124}, - [536] = {.lex_state = 124}, - [537] = {.lex_state = 124}, - [538] = {.lex_state = 124}, - [539] = {.lex_state = 124}, + [532] = {.lex_state = 134}, + [533] = {.lex_state = 133}, + [534] = {.lex_state = 134}, + [535] = {.lex_state = 133}, + [536] = {.lex_state = 134}, + [537] = {.lex_state = 168}, + [538] = {.lex_state = 174}, + [539] = {.lex_state = 147}, [540] = {.lex_state = 124}, - [541] = {.lex_state = 124}, - [542] = {.lex_state = 124}, + [541] = {.lex_state = 135}, + [542] = {.lex_state = 135}, [543] = {.lex_state = 124}, [544] = {.lex_state = 124}, [545] = {.lex_state = 124}, - [546] = {.lex_state = 0}, - [547] = {.lex_state = 155}, - [548] = {.lex_state = 155}, - [549] = {.lex_state = 169}, - [550] = {.lex_state = 169}, - [551] = {.lex_state = 169}, - [552] = {.lex_state = 155}, - [553] = {.lex_state = 155}, - [554] = {.lex_state = 155}, - [555] = {.lex_state = 169}, - [556] = {.lex_state = 169}, - [557] = {.lex_state = 169}, + [546] = {.lex_state = 124}, + [547] = {.lex_state = 124}, + [548] = {.lex_state = 124}, + [549] = {.lex_state = 124}, + [550] = {.lex_state = 124}, + [551] = {.lex_state = 124}, + [552] = {.lex_state = 124}, + [553] = {.lex_state = 124}, + [554] = {.lex_state = 124}, + [555] = {.lex_state = 124}, + [556] = {.lex_state = 0}, + [557] = {.lex_state = 155}, [558] = {.lex_state = 155}, - [559] = {.lex_state = 155}, + [559] = {.lex_state = 169}, [560] = {.lex_state = 169}, [561] = {.lex_state = 169}, - [562] = {.lex_state = 169}, + [562] = {.lex_state = 155}, [563] = {.lex_state = 155}, [564] = {.lex_state = 155}, - [565] = {.lex_state = 173}, - [566] = {.lex_state = 147}, - [567] = {.lex_state = 124}, - [568] = {.lex_state = 135}, - [569] = {.lex_state = 135}, + [565] = {.lex_state = 169}, + [566] = {.lex_state = 169}, + [567] = {.lex_state = 169}, + [568] = {.lex_state = 155}, + [569] = {.lex_state = 155}, [570] = {.lex_state = 169}, - [571] = {.lex_state = 124}, - [572] = {.lex_state = 124}, - [573] = {.lex_state = 124}, - [574] = {.lex_state = 124}, - [575] = {.lex_state = 124}, - [576] = {.lex_state = 124}, - [577] = {.lex_state = 124}, - [578] = {.lex_state = 124}, + [571] = {.lex_state = 169}, + [572] = {.lex_state = 169}, + [573] = {.lex_state = 155}, + [574] = {.lex_state = 155}, + [575] = {.lex_state = 0}, + [576] = {.lex_state = 173}, + [577] = {.lex_state = 173}, + [578] = {.lex_state = 147}, [579] = {.lex_state = 124}, - [580] = {.lex_state = 124}, - [581] = {.lex_state = 124}, - [582] = {.lex_state = 124}, - [583] = {.lex_state = 170}, - [584] = {.lex_state = 173}, - [585] = {.lex_state = 171}, - [586] = {.lex_state = 174}, - [587] = {.lex_state = 135}, + [580] = {.lex_state = 135}, + [581] = {.lex_state = 135}, + [582] = {.lex_state = 169}, + [583] = {.lex_state = 124}, + [584] = {.lex_state = 124}, + [585] = {.lex_state = 124}, + [586] = {.lex_state = 124}, + [587] = {.lex_state = 124}, [588] = {.lex_state = 124}, - [589] = {.lex_state = 170}, - [590] = {.lex_state = 172}, - [591] = {.lex_state = 172}, - [592] = {.lex_state = 174}, - [593] = {.lex_state = 171}, - [594] = {.lex_state = 172}, - [595] = {.lex_state = 173}, - [596] = {.lex_state = 172}, - [597] = {.lex_state = 147}, - [598] = {.lex_state = 172}, - [599] = {.lex_state = 172}, - [600] = {.lex_state = 172}, - [601] = {.lex_state = 147}, - [602] = {.lex_state = 124}, + [589] = {.lex_state = 124}, + [590] = {.lex_state = 124}, + [591] = {.lex_state = 124}, + [592] = {.lex_state = 124}, + [593] = {.lex_state = 124}, + [594] = {.lex_state = 124}, + [595] = {.lex_state = 170}, + [596] = {.lex_state = 173}, + [597] = {.lex_state = 171}, + [598] = {.lex_state = 174}, + [599] = {.lex_state = 135}, + [600] = {.lex_state = 124}, + [601] = {.lex_state = 170}, + [602] = {.lex_state = 172}, [603] = {.lex_state = 172}, - [604] = {.lex_state = 172}, - [605] = {.lex_state = 124}, - [606] = {.lex_state = 176}, - [607] = {.lex_state = 124}, - [608] = {.lex_state = 124}, - [609] = {.lex_state = 124}, - [610] = {.lex_state = 124}, - [611] = {.lex_state = 124}, - [612] = {.lex_state = 124}, - [613] = {.lex_state = 124}, - [614] = {.lex_state = 124}, - [615] = {.lex_state = 124}, - [616] = {.lex_state = 124}, + [604] = {.lex_state = 147}, + [605] = {.lex_state = 172}, + [606] = {.lex_state = 174}, + [607] = {.lex_state = 171}, + [608] = {.lex_state = 172}, + [609] = {.lex_state = 173}, + [610] = {.lex_state = 172}, + [611] = {.lex_state = 147}, + [612] = {.lex_state = 172}, + [613] = {.lex_state = 172}, + [614] = {.lex_state = 172}, + [615] = {.lex_state = 172}, + [616] = {.lex_state = 147}, [617] = {.lex_state = 124}, - [618] = {.lex_state = 124}, - [619] = {.lex_state = 124}, - [620] = {.lex_state = 112}, - [621] = {.lex_state = 133}, - [622] = {.lex_state = 0}, - [623] = {.lex_state = 0}, - [624] = {.lex_state = 152}, - [625] = {.lex_state = 112}, - [626] = {.lex_state = 134}, - [627] = {.lex_state = 0}, - [628] = {.lex_state = 0}, + [618] = {.lex_state = 172}, + [619] = {.lex_state = 172}, + [620] = {.lex_state = 124}, + [621] = {.lex_state = 176}, + [622] = {.lex_state = 124}, + [623] = {.lex_state = 124}, + [624] = {.lex_state = 124}, + [625] = {.lex_state = 124}, + [626] = {.lex_state = 124}, + [627] = {.lex_state = 124}, + [628] = {.lex_state = 124}, [629] = {.lex_state = 124}, - [630] = {.lex_state = 170}, - [631] = {.lex_state = 0}, - [632] = {.lex_state = 133}, - [633] = {.lex_state = 0}, - [634] = {.lex_state = 133}, - [635] = {.lex_state = 133}, + [630] = {.lex_state = 124}, + [631] = {.lex_state = 124}, + [632] = {.lex_state = 124}, + [633] = {.lex_state = 124}, + [634] = {.lex_state = 124}, + [635] = {.lex_state = 112}, [636] = {.lex_state = 133}, [637] = {.lex_state = 0}, - [638] = {.lex_state = 170}, - [639] = {.lex_state = 134}, - [640] = {.lex_state = 134}, - [641] = {.lex_state = 155}, - [642] = {.lex_state = 155}, - [643] = {.lex_state = 133}, - [644] = {.lex_state = 135}, - [645] = {.lex_state = 133}, - [646] = {.lex_state = 134}, + [638] = {.lex_state = 0}, + [639] = {.lex_state = 152}, + [640] = {.lex_state = 112}, + [641] = {.lex_state = 134}, + [642] = {.lex_state = 0}, + [643] = {.lex_state = 0}, + [644] = {.lex_state = 124}, + [645] = {.lex_state = 170}, + [646] = {.lex_state = 0}, [647] = {.lex_state = 133}, - [648] = {.lex_state = 155}, - [649] = {.lex_state = 155}, - [650] = {.lex_state = 134}, + [648] = {.lex_state = 0}, + [649] = {.lex_state = 133}, + [650] = {.lex_state = 133}, [651] = {.lex_state = 133}, - [652] = {.lex_state = 155}, - [653] = {.lex_state = 155}, + [652] = {.lex_state = 0}, + [653] = {.lex_state = 170}, [654] = {.lex_state = 134}, - [655] = {.lex_state = 124}, - [656] = {.lex_state = 124}, - [657] = {.lex_state = 124}, - [658] = {.lex_state = 124}, - [659] = {.lex_state = 124}, - [660] = {.lex_state = 124}, - [661] = {.lex_state = 172}, - [662] = {.lex_state = 172}, - [663] = {.lex_state = 172}, - [664] = {.lex_state = 147}, - [665] = {.lex_state = 124}, - [666] = {.lex_state = 170}, - [667] = {.lex_state = 170}, - [668] = {.lex_state = 124}, - [669] = {.lex_state = 124}, - [670] = {.lex_state = 133}, + [655] = {.lex_state = 134}, + [656] = {.lex_state = 155}, + [657] = {.lex_state = 155}, + [658] = {.lex_state = 133}, + [659] = {.lex_state = 135}, + [660] = {.lex_state = 133}, + [661] = {.lex_state = 134}, + [662] = {.lex_state = 133}, + [663] = {.lex_state = 155}, + [664] = {.lex_state = 155}, + [665] = {.lex_state = 134}, + [666] = {.lex_state = 133}, + [667] = {.lex_state = 155}, + [668] = {.lex_state = 155}, + [669] = {.lex_state = 134}, + [670] = {.lex_state = 124}, [671] = {.lex_state = 124}, [672] = {.lex_state = 124}, [673] = {.lex_state = 124}, [674] = {.lex_state = 124}, [675] = {.lex_state = 124}, - [676] = {.lex_state = 124}, - [677] = {.lex_state = 124}, - [678] = {.lex_state = 124}, - [679] = {.lex_state = 124}, + [676] = {.lex_state = 172}, + [677] = {.lex_state = 172}, + [678] = {.lex_state = 172}, + [679] = {.lex_state = 147}, [680] = {.lex_state = 124}, [681] = {.lex_state = 170}, - [682] = {.lex_state = 133}, - [683] = {.lex_state = 0}, - [684] = {.lex_state = 172}, - [685] = {.lex_state = 124}, + [682] = {.lex_state = 170}, + [683] = {.lex_state = 124}, + [684] = {.lex_state = 124}, + [685] = {.lex_state = 133}, [686] = {.lex_state = 124}, - [687] = {.lex_state = 170}, - [688] = {.lex_state = 133}, + [687] = {.lex_state = 124}, + [688] = {.lex_state = 124}, [689] = {.lex_state = 124}, - [690] = {.lex_state = 133}, - [691] = {.lex_state = 133}, - [692] = {.lex_state = 0}, - [693] = {.lex_state = 133}, - [694] = {.lex_state = 135}, - [695] = {.lex_state = 135}, - [696] = {.lex_state = 133}, + [690] = {.lex_state = 124}, + [691] = {.lex_state = 124}, + [692] = {.lex_state = 124}, + [693] = {.lex_state = 124}, + [694] = {.lex_state = 124}, + [695] = {.lex_state = 124}, + [696] = {.lex_state = 170}, [697] = {.lex_state = 133}, - [698] = {.lex_state = 147}, - [699] = {.lex_state = 135}, - [700] = {.lex_state = 170}, - [701] = {.lex_state = 133}, - [702] = {.lex_state = 176}, - [703] = {.lex_state = 172}, - [704] = {.lex_state = 135}, - [705] = {.lex_state = 168}, - [706] = {.lex_state = 176}, - [707] = {.lex_state = 174}, - [708] = {.lex_state = 135}, - [709] = {.lex_state = 170}, + [698] = {.lex_state = 0}, + [699] = {.lex_state = 172}, + [700] = {.lex_state = 124}, + [701] = {.lex_state = 124}, + [702] = {.lex_state = 170}, + [703] = {.lex_state = 133}, + [704] = {.lex_state = 124}, + [705] = {.lex_state = 133}, + [706] = {.lex_state = 133}, + [707] = {.lex_state = 0}, + [708] = {.lex_state = 133}, + [709] = {.lex_state = 135}, [710] = {.lex_state = 135}, - [711] = {.lex_state = 135}, - [712] = {.lex_state = 135}, - [713] = {.lex_state = 135}, + [711] = {.lex_state = 133}, + [712] = {.lex_state = 133}, + [713] = {.lex_state = 147}, [714] = {.lex_state = 135}, - [715] = {.lex_state = 135}, - [716] = {.lex_state = 135}, - [717] = {.lex_state = 135}, - [718] = {.lex_state = 135}, - [719] = {.lex_state = 176}, - [720] = {.lex_state = 124}, - [721] = {.lex_state = 147}, + [715] = {.lex_state = 170}, + [716] = {.lex_state = 133}, + [717] = {.lex_state = 176}, + [718] = {.lex_state = 172}, + [719] = {.lex_state = 135}, + [720] = {.lex_state = 168}, + [721] = {.lex_state = 176}, [722] = {.lex_state = 174}, - [723] = {.lex_state = 168}, - [724] = {.lex_state = 171}, - [725] = {.lex_state = 174}, - [726] = {.lex_state = 170}, - [727] = {.lex_state = 174}, - [728] = {.lex_state = 174}, - [729] = {.lex_state = 174}, - [730] = {.lex_state = 174}, - [731] = {.lex_state = 174}, - [732] = {.lex_state = 174}, - [733] = {.lex_state = 174}, - [734] = {.lex_state = 174}, - [735] = {.lex_state = 174}, - [736] = {.lex_state = 171}, - [737] = {.lex_state = 176}, - [738] = {.lex_state = 174}, - [739] = {.lex_state = 124}, - [740] = {.lex_state = 175}, - [741] = {.lex_state = 135}, - [742] = {.lex_state = 124}, - [743] = {.lex_state = 124}, - [744] = {.lex_state = 134}, - [745] = {.lex_state = 134}, - [746] = {.lex_state = 134}, - [747] = {.lex_state = 134}, - [748] = {.lex_state = 134}, - [749] = {.lex_state = 167}, - [750] = {.lex_state = 152}, - [751] = {.lex_state = 167}, - [752] = {.lex_state = 152}, - [753] = {.lex_state = 155}, - [754] = {.lex_state = 152}, - [755] = {.lex_state = 155}, - [756] = {.lex_state = 152}, - [757] = {.lex_state = 155}, - [758] = {.lex_state = 152}, - [759] = {.lex_state = 152}, - [760] = {.lex_state = 135}, - [761] = {.lex_state = 152}, - [762] = {.lex_state = 133}, - [763] = {.lex_state = 152}, - [764] = {.lex_state = 133}, + [723] = {.lex_state = 135}, + [724] = {.lex_state = 170}, + [725] = {.lex_state = 135}, + [726] = {.lex_state = 135}, + [727] = {.lex_state = 135}, + [728] = {.lex_state = 135}, + [729] = {.lex_state = 135}, + [730] = {.lex_state = 135}, + [731] = {.lex_state = 135}, + [732] = {.lex_state = 135}, + [733] = {.lex_state = 135}, + [734] = {.lex_state = 176}, + [735] = {.lex_state = 124}, + [736] = {.lex_state = 147}, + [737] = {.lex_state = 174}, + [738] = {.lex_state = 168}, + [739] = {.lex_state = 171}, + [740] = {.lex_state = 174}, + [741] = {.lex_state = 170}, + [742] = {.lex_state = 174}, + [743] = {.lex_state = 174}, + [744] = {.lex_state = 174}, + [745] = {.lex_state = 174}, + [746] = {.lex_state = 174}, + [747] = {.lex_state = 174}, + [748] = {.lex_state = 174}, + [749] = {.lex_state = 174}, + [750] = {.lex_state = 174}, + [751] = {.lex_state = 171}, + [752] = {.lex_state = 176}, + [753] = {.lex_state = 174}, + [754] = {.lex_state = 124}, + [755] = {.lex_state = 175}, + [756] = {.lex_state = 135}, + [757] = {.lex_state = 124}, + [758] = {.lex_state = 124}, + [759] = {.lex_state = 134}, + [760] = {.lex_state = 134}, + [761] = {.lex_state = 134}, + [762] = {.lex_state = 134}, + [763] = {.lex_state = 134}, + [764] = {.lex_state = 167}, [765] = {.lex_state = 152}, - [766] = {.lex_state = 134}, - [767] = {.lex_state = 134}, - [768] = {.lex_state = 134}, - [769] = {.lex_state = 168}, - [770] = {.lex_state = 124}, - [771] = {.lex_state = 147}, - [772] = {.lex_state = 135}, - [773] = {.lex_state = 135}, - [774] = {.lex_state = 170}, + [766] = {.lex_state = 167}, + [767] = {.lex_state = 152}, + [768] = {.lex_state = 155}, + [769] = {.lex_state = 152}, + [770] = {.lex_state = 155}, + [771] = {.lex_state = 152}, + [772] = {.lex_state = 155}, + [773] = {.lex_state = 152}, + [774] = {.lex_state = 152}, [775] = {.lex_state = 135}, - [776] = {.lex_state = 135}, - [777] = {.lex_state = 135}, - [778] = {.lex_state = 135}, - [779] = {.lex_state = 135}, - [780] = {.lex_state = 135}, - [781] = {.lex_state = 135}, - [782] = {.lex_state = 135}, - [783] = {.lex_state = 135}, - [784] = {.lex_state = 155}, - [785] = {.lex_state = 155}, - [786] = {.lex_state = 155}, - [787] = {.lex_state = 155}, - [788] = {.lex_state = 169}, - [789] = {.lex_state = 169}, - [790] = {.lex_state = 169}, - [791] = {.lex_state = 169}, - [792] = {.lex_state = 169}, - [793] = {.lex_state = 169}, - [794] = {.lex_state = 124}, - [795] = {.lex_state = 147}, + [776] = {.lex_state = 152}, + [777] = {.lex_state = 133}, + [778] = {.lex_state = 152}, + [779] = {.lex_state = 133}, + [780] = {.lex_state = 152}, + [781] = {.lex_state = 134}, + [782] = {.lex_state = 134}, + [783] = {.lex_state = 134}, + [784] = {.lex_state = 168}, + [785] = {.lex_state = 124}, + [786] = {.lex_state = 147}, + [787] = {.lex_state = 135}, + [788] = {.lex_state = 135}, + [789] = {.lex_state = 170}, + [790] = {.lex_state = 135}, + [791] = {.lex_state = 135}, + [792] = {.lex_state = 135}, + [793] = {.lex_state = 135}, + [794] = {.lex_state = 135}, + [795] = {.lex_state = 135}, [796] = {.lex_state = 135}, [797] = {.lex_state = 135}, - [798] = {.lex_state = 170}, - [799] = {.lex_state = 135}, - [800] = {.lex_state = 135}, - [801] = {.lex_state = 135}, - [802] = {.lex_state = 135}, - [803] = {.lex_state = 135}, - [804] = {.lex_state = 135}, - [805] = {.lex_state = 135}, - [806] = {.lex_state = 135}, - [807] = {.lex_state = 135}, - [808] = {.lex_state = 173}, - [809] = {.lex_state = 174}, - [810] = {.lex_state = 169}, + [798] = {.lex_state = 135}, + [799] = {.lex_state = 155}, + [800] = {.lex_state = 155}, + [801] = {.lex_state = 155}, + [802] = {.lex_state = 155}, + [803] = {.lex_state = 169}, + [804] = {.lex_state = 169}, + [805] = {.lex_state = 169}, + [806] = {.lex_state = 169}, + [807] = {.lex_state = 169}, + [808] = {.lex_state = 169}, + [809] = {.lex_state = 124}, + [810] = {.lex_state = 147}, [811] = {.lex_state = 135}, - [812] = {.lex_state = 172}, - [813] = {.lex_state = 174}, - [814] = {.lex_state = 124}, - [815] = {.lex_state = 147}, - [816] = {.lex_state = 172}, - [817] = {.lex_state = 172}, - [818] = {.lex_state = 172}, - [819] = {.lex_state = 170}, - [820] = {.lex_state = 172}, - [821] = {.lex_state = 172}, - [822] = {.lex_state = 172}, - [823] = {.lex_state = 172}, - [824] = {.lex_state = 172}, - [825] = {.lex_state = 172}, - [826] = {.lex_state = 172}, + [812] = {.lex_state = 135}, + [813] = {.lex_state = 170}, + [814] = {.lex_state = 135}, + [815] = {.lex_state = 135}, + [816] = {.lex_state = 135}, + [817] = {.lex_state = 135}, + [818] = {.lex_state = 135}, + [819] = {.lex_state = 135}, + [820] = {.lex_state = 135}, + [821] = {.lex_state = 135}, + [822] = {.lex_state = 135}, + [823] = {.lex_state = 173}, + [824] = {.lex_state = 174}, + [825] = {.lex_state = 169}, + [826] = {.lex_state = 135}, [827] = {.lex_state = 172}, - [828] = {.lex_state = 172}, - [829] = {.lex_state = 176}, - [830] = {.lex_state = 176}, - [831] = {.lex_state = 134}, - [832] = {.lex_state = 134}, - [833] = {.lex_state = 134}, - [834] = {.lex_state = 112}, - [835] = {.lex_state = 0}, - [836] = {.lex_state = 0}, - [837] = {.lex_state = 152}, - [838] = {.lex_state = 0}, - [839] = {.lex_state = 0}, - [840] = {.lex_state = 124}, - [841] = {.lex_state = 170}, - [842] = {.lex_state = 0}, - [843] = {.lex_state = 133}, - [844] = {.lex_state = 0}, - [845] = {.lex_state = 133}, - [846] = {.lex_state = 133}, - [847] = {.lex_state = 133}, - [848] = {.lex_state = 0}, - [849] = {.lex_state = 170}, - [850] = {.lex_state = 152}, - [851] = {.lex_state = 152}, - [852] = {.lex_state = 133}, - [853] = {.lex_state = 135}, - [854] = {.lex_state = 133}, - [855] = {.lex_state = 152}, - [856] = {.lex_state = 134}, + [828] = {.lex_state = 174}, + [829] = {.lex_state = 147}, + [830] = {.lex_state = 172}, + [831] = {.lex_state = 124}, + [832] = {.lex_state = 147}, + [833] = {.lex_state = 172}, + [834] = {.lex_state = 172}, + [835] = {.lex_state = 172}, + [836] = {.lex_state = 170}, + [837] = {.lex_state = 172}, + [838] = {.lex_state = 172}, + [839] = {.lex_state = 172}, + [840] = {.lex_state = 172}, + [841] = {.lex_state = 172}, + [842] = {.lex_state = 172}, + [843] = {.lex_state = 172}, + [844] = {.lex_state = 172}, + [845] = {.lex_state = 172}, + [846] = {.lex_state = 176}, + [847] = {.lex_state = 176}, + [848] = {.lex_state = 134}, + [849] = {.lex_state = 134}, + [850] = {.lex_state = 134}, + [851] = {.lex_state = 112}, + [852] = {.lex_state = 0}, + [853] = {.lex_state = 0}, + [854] = {.lex_state = 152}, + [855] = {.lex_state = 0}, + [856] = {.lex_state = 0}, [857] = {.lex_state = 124}, - [858] = {.lex_state = 124}, - [859] = {.lex_state = 170}, + [858] = {.lex_state = 170}, + [859] = {.lex_state = 0}, [860] = {.lex_state = 133}, - [861] = {.lex_state = 124}, - [862] = {.lex_state = 0}, + [861] = {.lex_state = 0}, + [862] = {.lex_state = 133}, [863] = {.lex_state = 133}, - [864] = {.lex_state = 134}, - [865] = {.lex_state = 135}, - [866] = {.lex_state = 134}, - [867] = {.lex_state = 134}, - [868] = {.lex_state = 133}, + [864] = {.lex_state = 133}, + [865] = {.lex_state = 0}, + [866] = {.lex_state = 170}, + [867] = {.lex_state = 152}, + [868] = {.lex_state = 152}, [869] = {.lex_state = 133}, - [870] = {.lex_state = 133}, + [870] = {.lex_state = 135}, [871] = {.lex_state = 133}, - [872] = {.lex_state = 135}, + [872] = {.lex_state = 152}, [873] = {.lex_state = 134}, - [874] = {.lex_state = 133}, - [875] = {.lex_state = 155}, - [876] = {.lex_state = 155}, - [877] = {.lex_state = 134}, - [878] = {.lex_state = 133}, - [879] = {.lex_state = 133}, + [874] = {.lex_state = 124}, + [875] = {.lex_state = 124}, + [876] = {.lex_state = 170}, + [877] = {.lex_state = 133}, + [878] = {.lex_state = 124}, + [879] = {.lex_state = 0}, [880] = {.lex_state = 133}, - [881] = {.lex_state = 155}, - [882] = {.lex_state = 155}, - [883] = {.lex_state = 133}, - [884] = {.lex_state = 133}, + [881] = {.lex_state = 134}, + [882] = {.lex_state = 135}, + [883] = {.lex_state = 134}, + [884] = {.lex_state = 134}, [885] = {.lex_state = 133}, - [886] = {.lex_state = 155}, - [887] = {.lex_state = 155}, - [888] = {.lex_state = 147}, - [889] = {.lex_state = 124}, - [890] = {.lex_state = 172}, - [891] = {.lex_state = 172}, - [892] = {.lex_state = 133}, - [893] = {.lex_state = 124}, - [894] = {.lex_state = 124}, - [895] = {.lex_state = 124}, - [896] = {.lex_state = 124}, - [897] = {.lex_state = 124}, - [898] = {.lex_state = 124}, - [899] = {.lex_state = 124}, - [900] = {.lex_state = 124}, - [901] = {.lex_state = 124}, - [902] = {.lex_state = 124}, - [903] = {.lex_state = 124}, - [904] = {.lex_state = 124}, - [905] = {.lex_state = 133}, + [886] = {.lex_state = 133}, + [887] = {.lex_state = 133}, + [888] = {.lex_state = 133}, + [889] = {.lex_state = 135}, + [890] = {.lex_state = 134}, + [891] = {.lex_state = 133}, + [892] = {.lex_state = 155}, + [893] = {.lex_state = 155}, + [894] = {.lex_state = 134}, + [895] = {.lex_state = 133}, + [896] = {.lex_state = 133}, + [897] = {.lex_state = 133}, + [898] = {.lex_state = 155}, + [899] = {.lex_state = 155}, + [900] = {.lex_state = 133}, + [901] = {.lex_state = 133}, + [902] = {.lex_state = 133}, + [903] = {.lex_state = 155}, + [904] = {.lex_state = 155}, + [905] = {.lex_state = 147}, [906] = {.lex_state = 124}, - [907] = {.lex_state = 147}, - [908] = {.lex_state = 170}, - [909] = {.lex_state = 170}, - [910] = {.lex_state = 133}, - [911] = {.lex_state = 170}, - [912] = {.lex_state = 170}, - [913] = {.lex_state = 170}, - [914] = {.lex_state = 170}, - [915] = {.lex_state = 170}, - [916] = {.lex_state = 170}, - [917] = {.lex_state = 170}, - [918] = {.lex_state = 170}, - [919] = {.lex_state = 170}, - [920] = {.lex_state = 170}, - [921] = {.lex_state = 133}, - [922] = {.lex_state = 172}, - [923] = {.lex_state = 172}, - [924] = {.lex_state = 133}, + [907] = {.lex_state = 172}, + [908] = {.lex_state = 172}, + [909] = {.lex_state = 133}, + [910] = {.lex_state = 124}, + [911] = {.lex_state = 124}, + [912] = {.lex_state = 124}, + [913] = {.lex_state = 124}, + [914] = {.lex_state = 124}, + [915] = {.lex_state = 124}, + [916] = {.lex_state = 124}, + [917] = {.lex_state = 124}, + [918] = {.lex_state = 124}, + [919] = {.lex_state = 124}, + [920] = {.lex_state = 124}, + [921] = {.lex_state = 124}, + [922] = {.lex_state = 133}, + [923] = {.lex_state = 124}, + [924] = {.lex_state = 147}, [925] = {.lex_state = 170}, - [926] = {.lex_state = 172}, + [926] = {.lex_state = 170}, [927] = {.lex_state = 133}, - [928] = {.lex_state = 135}, - [929] = {.lex_state = 124}, - [930] = {.lex_state = 178}, - [931] = {.lex_state = 135}, - [932] = {.lex_state = 133}, - [933] = {.lex_state = 135}, - [934] = {.lex_state = 124}, - [935] = {.lex_state = 176}, - [936] = {.lex_state = 172}, - [937] = {.lex_state = 176}, - [938] = {.lex_state = 124}, - [939] = {.lex_state = 174}, - [940] = {.lex_state = 124}, - [941] = {.lex_state = 124}, - [942] = {.lex_state = 176}, - [943] = {.lex_state = 135}, - [944] = {.lex_state = 135}, - [945] = {.lex_state = 175}, - [946] = {.lex_state = 135}, - [947] = {.lex_state = 135}, + [928] = {.lex_state = 170}, + [929] = {.lex_state = 170}, + [930] = {.lex_state = 170}, + [931] = {.lex_state = 170}, + [932] = {.lex_state = 170}, + [933] = {.lex_state = 170}, + [934] = {.lex_state = 170}, + [935] = {.lex_state = 170}, + [936] = {.lex_state = 170}, + [937] = {.lex_state = 170}, + [938] = {.lex_state = 133}, + [939] = {.lex_state = 172}, + [940] = {.lex_state = 172}, + [941] = {.lex_state = 133}, + [942] = {.lex_state = 170}, + [943] = {.lex_state = 172}, + [944] = {.lex_state = 133}, + [945] = {.lex_state = 135}, + [946] = {.lex_state = 124}, + [947] = {.lex_state = 178}, [948] = {.lex_state = 135}, - [949] = {.lex_state = 152}, - [950] = {.lex_state = 152}, - [951] = {.lex_state = 152}, - [952] = {.lex_state = 152}, - [953] = {.lex_state = 152}, - [954] = {.lex_state = 152}, - [955] = {.lex_state = 152}, - [956] = {.lex_state = 152}, - [957] = {.lex_state = 135}, + [949] = {.lex_state = 133}, + [950] = {.lex_state = 135}, + [951] = {.lex_state = 124}, + [952] = {.lex_state = 176}, + [953] = {.lex_state = 172}, + [954] = {.lex_state = 176}, + [955] = {.lex_state = 124}, + [956] = {.lex_state = 174}, + [957] = {.lex_state = 124}, [958] = {.lex_state = 124}, - [959] = {.lex_state = 155}, - [960] = {.lex_state = 155}, + [959] = {.lex_state = 176}, + [960] = {.lex_state = 135}, [961] = {.lex_state = 135}, - [962] = {.lex_state = 124}, - [963] = {.lex_state = 173}, - [964] = {.lex_state = 169}, - [965] = {.lex_state = 172}, - [966] = {.lex_state = 172}, - [967] = {.lex_state = 124}, - [968] = {.lex_state = 134}, - [969] = {.lex_state = 155}, - [970] = {.lex_state = 155}, - [971] = {.lex_state = 134}, - [972] = {.lex_state = 134}, - [973] = {.lex_state = 155}, - [974] = {.lex_state = 155}, - [975] = {.lex_state = 134}, - [976] = {.lex_state = 134}, + [962] = {.lex_state = 175}, + [963] = {.lex_state = 135}, + [964] = {.lex_state = 135}, + [965] = {.lex_state = 135}, + [966] = {.lex_state = 152}, + [967] = {.lex_state = 152}, + [968] = {.lex_state = 152}, + [969] = {.lex_state = 152}, + [970] = {.lex_state = 152}, + [971] = {.lex_state = 152}, + [972] = {.lex_state = 152}, + [973] = {.lex_state = 152}, + [974] = {.lex_state = 135}, + [975] = {.lex_state = 124}, + [976] = {.lex_state = 155}, [977] = {.lex_state = 155}, - [978] = {.lex_state = 155}, - [979] = {.lex_state = 134}, - [980] = {.lex_state = 134}, - [981] = {.lex_state = 134}, - [982] = {.lex_state = 134}, - [983] = {.lex_state = 124}, - [984] = {.lex_state = 124}, - [985] = {.lex_state = 170}, - [986] = {.lex_state = 133}, - [987] = {.lex_state = 124}, - [988] = {.lex_state = 0}, - [989] = {.lex_state = 133}, - [990] = {.lex_state = 152}, - [991] = {.lex_state = 135}, - [992] = {.lex_state = 152}, - [993] = {.lex_state = 152}, - [994] = {.lex_state = 133}, - [995] = {.lex_state = 133}, - [996] = {.lex_state = 135}, - [997] = {.lex_state = 152}, - [998] = {.lex_state = 152}, - [999] = {.lex_state = 155}, - [1000] = {.lex_state = 155}, - [1001] = {.lex_state = 134}, - [1002] = {.lex_state = 172}, - [1003] = {.lex_state = 172}, + [978] = {.lex_state = 135}, + [979] = {.lex_state = 124}, + [980] = {.lex_state = 173}, + [981] = {.lex_state = 169}, + [982] = {.lex_state = 172}, + [983] = {.lex_state = 147}, + [984] = {.lex_state = 172}, + [985] = {.lex_state = 124}, + [986] = {.lex_state = 134}, + [987] = {.lex_state = 155}, + [988] = {.lex_state = 155}, + [989] = {.lex_state = 134}, + [990] = {.lex_state = 134}, + [991] = {.lex_state = 155}, + [992] = {.lex_state = 155}, + [993] = {.lex_state = 134}, + [994] = {.lex_state = 134}, + [995] = {.lex_state = 155}, + [996] = {.lex_state = 155}, + [997] = {.lex_state = 134}, + [998] = {.lex_state = 134}, + [999] = {.lex_state = 134}, + [1000] = {.lex_state = 134}, + [1001] = {.lex_state = 124}, + [1002] = {.lex_state = 124}, + [1003] = {.lex_state = 170}, [1004] = {.lex_state = 133}, - [1005] = {.lex_state = 170}, - [1006] = {.lex_state = 134}, - [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 172}, - [1009] = {.lex_state = 0}, - [1010] = {.lex_state = 133}, - [1011] = {.lex_state = 135}, - [1012] = {.lex_state = 134}, - [1013] = {.lex_state = 134}, - [1014] = {.lex_state = 170}, - [1015] = {.lex_state = 134}, - [1016] = {.lex_state = 133}, - [1017] = {.lex_state = 133}, - [1018] = {.lex_state = 133}, - [1019] = {.lex_state = 133}, - [1020] = {.lex_state = 133}, - [1021] = {.lex_state = 133}, - [1022] = {.lex_state = 124}, - [1023] = {.lex_state = 147}, - [1024] = {.lex_state = 172}, + [1005] = {.lex_state = 124}, + [1006] = {.lex_state = 0}, + [1007] = {.lex_state = 133}, + [1008] = {.lex_state = 152}, + [1009] = {.lex_state = 135}, + [1010] = {.lex_state = 152}, + [1011] = {.lex_state = 152}, + [1012] = {.lex_state = 133}, + [1013] = {.lex_state = 133}, + [1014] = {.lex_state = 135}, + [1015] = {.lex_state = 152}, + [1016] = {.lex_state = 152}, + [1017] = {.lex_state = 155}, + [1018] = {.lex_state = 155}, + [1019] = {.lex_state = 134}, + [1020] = {.lex_state = 172}, + [1021] = {.lex_state = 172}, + [1022] = {.lex_state = 133}, + [1023] = {.lex_state = 170}, + [1024] = {.lex_state = 134}, [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0}, - [1027] = {.lex_state = 124}, - [1028] = {.lex_state = 170}, - [1029] = {.lex_state = 0}, - [1030] = {.lex_state = 0}, - [1031] = {.lex_state = 170}, - [1032] = {.lex_state = 133}, - [1033] = {.lex_state = 172}, - [1034] = {.lex_state = 170}, - [1035] = {.lex_state = 172}, - [1036] = {.lex_state = 172}, - [1037] = {.lex_state = 172}, - [1038] = {.lex_state = 172}, - [1039] = {.lex_state = 172}, - [1040] = {.lex_state = 172}, - [1041] = {.lex_state = 172}, + [1026] = {.lex_state = 172}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 133}, + [1029] = {.lex_state = 135}, + [1030] = {.lex_state = 134}, + [1031] = {.lex_state = 134}, + [1032] = {.lex_state = 170}, + [1033] = {.lex_state = 134}, + [1034] = {.lex_state = 133}, + [1035] = {.lex_state = 133}, + [1036] = {.lex_state = 133}, + [1037] = {.lex_state = 133}, + [1038] = {.lex_state = 133}, + [1039] = {.lex_state = 133}, + [1040] = {.lex_state = 124}, + [1041] = {.lex_state = 147}, [1042] = {.lex_state = 172}, - [1043] = {.lex_state = 172}, - [1044] = {.lex_state = 133}, - [1045] = {.lex_state = 170}, - [1046] = {.lex_state = 124}, - [1047] = {.lex_state = 133}, - [1048] = {.lex_state = 133}, - [1049] = {.lex_state = 133}, + [1043] = {.lex_state = 0}, + [1044] = {.lex_state = 0}, + [1045] = {.lex_state = 124}, + [1046] = {.lex_state = 170}, + [1047] = {.lex_state = 0}, + [1048] = {.lex_state = 0}, + [1049] = {.lex_state = 170}, [1050] = {.lex_state = 133}, - [1051] = {.lex_state = 178}, - [1052] = {.lex_state = 135}, - [1053] = {.lex_state = 133}, + [1051] = {.lex_state = 172}, + [1052] = {.lex_state = 170}, + [1053] = {.lex_state = 172}, [1054] = {.lex_state = 172}, - [1055] = {.lex_state = 133}, + [1055] = {.lex_state = 172}, [1056] = {.lex_state = 172}, - [1057] = {.lex_state = 178}, - [1058] = {.lex_state = 135}, + [1057] = {.lex_state = 172}, + [1058] = {.lex_state = 172}, [1059] = {.lex_state = 172}, - [1060] = {.lex_state = 176}, + [1060] = {.lex_state = 172}, [1061] = {.lex_state = 172}, - [1062] = {.lex_state = 135}, - [1063] = {.lex_state = 174}, - [1064] = {.lex_state = 176}, - [1065] = {.lex_state = 124}, - [1066] = {.lex_state = 135}, - [1067] = {.lex_state = 135}, - [1068] = {.lex_state = 172}, - [1069] = {.lex_state = 134}, - [1070] = {.lex_state = 134}, - [1071] = {.lex_state = 134}, - [1072] = {.lex_state = 155}, - [1073] = {.lex_state = 155}, - [1074] = {.lex_state = 134}, - [1075] = {.lex_state = 134}, - [1076] = {.lex_state = 134}, - [1077] = {.lex_state = 155}, - [1078] = {.lex_state = 155}, - [1079] = {.lex_state = 134}, - [1080] = {.lex_state = 134}, - [1081] = {.lex_state = 134}, - [1082] = {.lex_state = 155}, - [1083] = {.lex_state = 155}, - [1084] = {.lex_state = 152}, - [1085] = {.lex_state = 155}, - [1086] = {.lex_state = 155}, + [1062] = {.lex_state = 133}, + [1063] = {.lex_state = 170}, + [1064] = {.lex_state = 124}, + [1065] = {.lex_state = 133}, + [1066] = {.lex_state = 133}, + [1067] = {.lex_state = 133}, + [1068] = {.lex_state = 133}, + [1069] = {.lex_state = 178}, + [1070] = {.lex_state = 135}, + [1071] = {.lex_state = 133}, + [1072] = {.lex_state = 172}, + [1073] = {.lex_state = 133}, + [1074] = {.lex_state = 172}, + [1075] = {.lex_state = 178}, + [1076] = {.lex_state = 135}, + [1077] = {.lex_state = 172}, + [1078] = {.lex_state = 176}, + [1079] = {.lex_state = 172}, + [1080] = {.lex_state = 135}, + [1081] = {.lex_state = 174}, + [1082] = {.lex_state = 176}, + [1083] = {.lex_state = 124}, + [1084] = {.lex_state = 135}, + [1085] = {.lex_state = 135}, + [1086] = {.lex_state = 172}, [1087] = {.lex_state = 134}, - [1088] = {.lex_state = 152}, - [1089] = {.lex_state = 155}, + [1088] = {.lex_state = 134}, + [1089] = {.lex_state = 134}, [1090] = {.lex_state = 155}, - [1091] = {.lex_state = 134}, - [1092] = {.lex_state = 152}, - [1093] = {.lex_state = 155}, - [1094] = {.lex_state = 155}, - [1095] = {.lex_state = 134}, - [1096] = {.lex_state = 172}, - [1097] = {.lex_state = 172}, - [1098] = {.lex_state = 133}, - [1099] = {.lex_state = 170}, - [1100] = {.lex_state = 152}, - [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 172}, - [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 133}, - [1105] = {.lex_state = 135}, + [1091] = {.lex_state = 155}, + [1092] = {.lex_state = 134}, + [1093] = {.lex_state = 134}, + [1094] = {.lex_state = 134}, + [1095] = {.lex_state = 155}, + [1096] = {.lex_state = 155}, + [1097] = {.lex_state = 134}, + [1098] = {.lex_state = 134}, + [1099] = {.lex_state = 134}, + [1100] = {.lex_state = 155}, + [1101] = {.lex_state = 155}, + [1102] = {.lex_state = 152}, + [1103] = {.lex_state = 155}, + [1104] = {.lex_state = 155}, + [1105] = {.lex_state = 134}, [1106] = {.lex_state = 152}, - [1107] = {.lex_state = 152}, - [1108] = {.lex_state = 170}, - [1109] = {.lex_state = 152}, - [1110] = {.lex_state = 155}, + [1107] = {.lex_state = 155}, + [1108] = {.lex_state = 155}, + [1109] = {.lex_state = 134}, + [1110] = {.lex_state = 152}, [1111] = {.lex_state = 155}, - [1112] = {.lex_state = 133}, - [1113] = {.lex_state = 133}, - [1114] = {.lex_state = 134}, - [1115] = {.lex_state = 133}, - [1116] = {.lex_state = 124}, - [1117] = {.lex_state = 178}, - [1118] = {.lex_state = 135}, - [1119] = {.lex_state = 133}, + [1112] = {.lex_state = 155}, + [1113] = {.lex_state = 134}, + [1114] = {.lex_state = 172}, + [1115] = {.lex_state = 172}, + [1116] = {.lex_state = 133}, + [1117] = {.lex_state = 170}, + [1118] = {.lex_state = 152}, + [1119] = {.lex_state = 0}, [1120] = {.lex_state = 172}, - [1121] = {.lex_state = 124}, - [1122] = {.lex_state = 124}, - [1123] = {.lex_state = 170}, - [1124] = {.lex_state = 133}, - [1125] = {.lex_state = 124}, - [1126] = {.lex_state = 133}, - [1127] = {.lex_state = 133}, - [1128] = {.lex_state = 133}, - [1129] = {.lex_state = 124}, - [1130] = {.lex_state = 170}, - [1131] = {.lex_state = 0}, - [1132] = {.lex_state = 0}, - [1133] = {.lex_state = 124}, - [1134] = {.lex_state = 170}, - [1135] = {.lex_state = 0}, - [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 170}, - [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 133}, - [1140] = {.lex_state = 172}, - [1141] = {.lex_state = 178}, - [1142] = {.lex_state = 135}, - [1143] = {.lex_state = 133}, + [1121] = {.lex_state = 0}, + [1122] = {.lex_state = 133}, + [1123] = {.lex_state = 135}, + [1124] = {.lex_state = 152}, + [1125] = {.lex_state = 152}, + [1126] = {.lex_state = 170}, + [1127] = {.lex_state = 152}, + [1128] = {.lex_state = 155}, + [1129] = {.lex_state = 155}, + [1130] = {.lex_state = 133}, + [1131] = {.lex_state = 133}, + [1132] = {.lex_state = 134}, + [1133] = {.lex_state = 133}, + [1134] = {.lex_state = 124}, + [1135] = {.lex_state = 178}, + [1136] = {.lex_state = 135}, + [1137] = {.lex_state = 133}, + [1138] = {.lex_state = 172}, + [1139] = {.lex_state = 124}, + [1140] = {.lex_state = 124}, + [1141] = {.lex_state = 170}, + [1142] = {.lex_state = 133}, + [1143] = {.lex_state = 124}, [1144] = {.lex_state = 133}, [1145] = {.lex_state = 133}, - [1146] = {.lex_state = 172}, - [1147] = {.lex_state = 172}, - [1148] = {.lex_state = 178}, - [1149] = {.lex_state = 134}, - [1150] = {.lex_state = 134}, - [1151] = {.lex_state = 134}, - [1152] = {.lex_state = 134}, - [1153] = {.lex_state = 134}, - [1154] = {.lex_state = 134}, - [1155] = {.lex_state = 152}, - [1156] = {.lex_state = 152}, - [1157] = {.lex_state = 152}, - [1158] = {.lex_state = 155}, - [1159] = {.lex_state = 155}, - [1160] = {.lex_state = 152}, - [1161] = {.lex_state = 152}, - [1162] = {.lex_state = 152}, - [1163] = {.lex_state = 155}, - [1164] = {.lex_state = 155}, - [1165] = {.lex_state = 152}, - [1166] = {.lex_state = 152}, - [1167] = {.lex_state = 152}, - [1168] = {.lex_state = 155}, - [1169] = {.lex_state = 155}, - [1170] = {.lex_state = 133}, - [1171] = {.lex_state = 133}, - [1172] = {.lex_state = 152}, - [1173] = {.lex_state = 133}, - [1174] = {.lex_state = 124}, - [1175] = {.lex_state = 178}, - [1176] = {.lex_state = 135}, - [1177] = {.lex_state = 133}, - [1178] = {.lex_state = 0}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 124}, - [1181] = {.lex_state = 170}, - [1182] = {.lex_state = 0}, - [1183] = {.lex_state = 0}, - [1184] = {.lex_state = 170}, - [1185] = {.lex_state = 134}, - [1186] = {.lex_state = 134}, - [1187] = {.lex_state = 134}, - [1188] = {.lex_state = 172}, + [1146] = {.lex_state = 133}, + [1147] = {.lex_state = 124}, + [1148] = {.lex_state = 170}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 0}, + [1151] = {.lex_state = 124}, + [1152] = {.lex_state = 170}, + [1153] = {.lex_state = 0}, + [1154] = {.lex_state = 0}, + [1155] = {.lex_state = 170}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 133}, + [1158] = {.lex_state = 172}, + [1159] = {.lex_state = 178}, + [1160] = {.lex_state = 135}, + [1161] = {.lex_state = 133}, + [1162] = {.lex_state = 133}, + [1163] = {.lex_state = 133}, + [1164] = {.lex_state = 172}, + [1165] = {.lex_state = 172}, + [1166] = {.lex_state = 178}, + [1167] = {.lex_state = 134}, + [1168] = {.lex_state = 134}, + [1169] = {.lex_state = 134}, + [1170] = {.lex_state = 134}, + [1171] = {.lex_state = 134}, + [1172] = {.lex_state = 134}, + [1173] = {.lex_state = 152}, + [1174] = {.lex_state = 152}, + [1175] = {.lex_state = 152}, + [1176] = {.lex_state = 155}, + [1177] = {.lex_state = 155}, + [1178] = {.lex_state = 152}, + [1179] = {.lex_state = 152}, + [1180] = {.lex_state = 152}, + [1181] = {.lex_state = 155}, + [1182] = {.lex_state = 155}, + [1183] = {.lex_state = 152}, + [1184] = {.lex_state = 152}, + [1185] = {.lex_state = 152}, + [1186] = {.lex_state = 155}, + [1187] = {.lex_state = 155}, + [1188] = {.lex_state = 133}, [1189] = {.lex_state = 133}, - [1190] = {.lex_state = 172}, - [1191] = {.lex_state = 178}, - [1192] = {.lex_state = 135}, - [1193] = {.lex_state = 172}, - [1194] = {.lex_state = 172}, + [1190] = {.lex_state = 152}, + [1191] = {.lex_state = 133}, + [1192] = {.lex_state = 124}, + [1193] = {.lex_state = 178}, + [1194] = {.lex_state = 135}, [1195] = {.lex_state = 133}, - [1196] = {.lex_state = 170}, - [1197] = {.lex_state = 172}, - [1198] = {.lex_state = 133}, - [1199] = {.lex_state = 135}, - [1200] = {.lex_state = 133}, - [1201] = {.lex_state = 172}, - [1202] = {.lex_state = 124}, - [1203] = {.lex_state = 124}, - [1204] = {.lex_state = 170}, - [1205] = {.lex_state = 133}, - [1206] = {.lex_state = 124}, + [1196] = {.lex_state = 0}, + [1197] = {.lex_state = 0}, + [1198] = {.lex_state = 124}, + [1199] = {.lex_state = 170}, + [1200] = {.lex_state = 0}, + [1201] = {.lex_state = 0}, + [1202] = {.lex_state = 170}, + [1203] = {.lex_state = 134}, + [1204] = {.lex_state = 134}, + [1205] = {.lex_state = 134}, + [1206] = {.lex_state = 172}, [1207] = {.lex_state = 133}, - [1208] = {.lex_state = 133}, - [1209] = {.lex_state = 133}, - [1210] = {.lex_state = 133}, + [1208] = {.lex_state = 172}, + [1209] = {.lex_state = 178}, + [1210] = {.lex_state = 135}, [1211] = {.lex_state = 172}, [1212] = {.lex_state = 172}, - [1213] = {.lex_state = 178}, - [1214] = {.lex_state = 133}, - [1215] = {.lex_state = 133}, - [1216] = {.lex_state = 172}, - [1217] = {.lex_state = 172}, - [1218] = {.lex_state = 152}, - [1219] = {.lex_state = 152}, - [1220] = {.lex_state = 152}, - [1221] = {.lex_state = 152}, - [1222] = {.lex_state = 152}, - [1223] = {.lex_state = 152}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 124}, - [1227] = {.lex_state = 170}, - [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 170}, - [1231] = {.lex_state = 152}, - [1232] = {.lex_state = 152}, - [1233] = {.lex_state = 152}, + [1213] = {.lex_state = 133}, + [1214] = {.lex_state = 170}, + [1215] = {.lex_state = 172}, + [1216] = {.lex_state = 133}, + [1217] = {.lex_state = 135}, + [1218] = {.lex_state = 133}, + [1219] = {.lex_state = 172}, + [1220] = {.lex_state = 124}, + [1221] = {.lex_state = 124}, + [1222] = {.lex_state = 170}, + [1223] = {.lex_state = 133}, + [1224] = {.lex_state = 124}, + [1225] = {.lex_state = 133}, + [1226] = {.lex_state = 133}, + [1227] = {.lex_state = 133}, + [1228] = {.lex_state = 133}, + [1229] = {.lex_state = 172}, + [1230] = {.lex_state = 172}, + [1231] = {.lex_state = 178}, + [1232] = {.lex_state = 133}, + [1233] = {.lex_state = 133}, [1234] = {.lex_state = 172}, - [1235] = {.lex_state = 133}, - [1236] = {.lex_state = 172}, - [1237] = {.lex_state = 178}, - [1238] = {.lex_state = 135}, - [1239] = {.lex_state = 124}, - [1240] = {.lex_state = 124}, - [1241] = {.lex_state = 170}, - [1242] = {.lex_state = 133}, - [1243] = {.lex_state = 124}, - [1244] = {.lex_state = 133}, - [1245] = {.lex_state = 133}, - [1246] = {.lex_state = 133}, - [1247] = {.lex_state = 134}, - [1248] = {.lex_state = 134}, - [1249] = {.lex_state = 133}, - [1250] = {.lex_state = 172}, - [1251] = {.lex_state = 172}, - [1252] = {.lex_state = 178}, + [1235] = {.lex_state = 172}, + [1236] = {.lex_state = 152}, + [1237] = {.lex_state = 152}, + [1238] = {.lex_state = 152}, + [1239] = {.lex_state = 152}, + [1240] = {.lex_state = 152}, + [1241] = {.lex_state = 152}, + [1242] = {.lex_state = 0}, + [1243] = {.lex_state = 0}, + [1244] = {.lex_state = 124}, + [1245] = {.lex_state = 170}, + [1246] = {.lex_state = 0}, + [1247] = {.lex_state = 0}, + [1248] = {.lex_state = 170}, + [1249] = {.lex_state = 152}, + [1250] = {.lex_state = 152}, + [1251] = {.lex_state = 152}, + [1252] = {.lex_state = 172}, [1253] = {.lex_state = 133}, - [1254] = {.lex_state = 133}, - [1255] = {.lex_state = 133}, - [1256] = {.lex_state = 178}, - [1257] = {.lex_state = 135}, - [1258] = {.lex_state = 133}, - [1259] = {.lex_state = 172}, - [1260] = {.lex_state = 172}, - [1261] = {.lex_state = 133}, - [1262] = {.lex_state = 170}, - [1263] = {.lex_state = 172}, + [1254] = {.lex_state = 172}, + [1255] = {.lex_state = 178}, + [1256] = {.lex_state = 135}, + [1257] = {.lex_state = 124}, + [1258] = {.lex_state = 124}, + [1259] = {.lex_state = 170}, + [1260] = {.lex_state = 133}, + [1261] = {.lex_state = 124}, + [1262] = {.lex_state = 133}, + [1263] = {.lex_state = 133}, [1264] = {.lex_state = 133}, - [1265] = {.lex_state = 135}, - [1266] = {.lex_state = 133}, - [1267] = {.lex_state = 172}, + [1265] = {.lex_state = 134}, + [1266] = {.lex_state = 134}, + [1267] = {.lex_state = 133}, [1268] = {.lex_state = 172}, - [1269] = {.lex_state = 133}, - [1270] = {.lex_state = 133}, - [1271] = {.lex_state = 172}, - [1272] = {.lex_state = 124}, - [1273] = {.lex_state = 124}, - [1274] = {.lex_state = 170}, - [1275] = {.lex_state = 133}, - [1276] = {.lex_state = 124}, - [1277] = {.lex_state = 133}, - [1278] = {.lex_state = 133}, + [1269] = {.lex_state = 172}, + [1270] = {.lex_state = 178}, + [1271] = {.lex_state = 133}, + [1272] = {.lex_state = 133}, + [1273] = {.lex_state = 133}, + [1274] = {.lex_state = 178}, + [1275] = {.lex_state = 135}, + [1276] = {.lex_state = 133}, + [1277] = {.lex_state = 172}, + [1278] = {.lex_state = 172}, [1279] = {.lex_state = 133}, - [1280] = {.lex_state = 152}, - [1281] = {.lex_state = 152}, + [1280] = {.lex_state = 170}, + [1281] = {.lex_state = 172}, [1282] = {.lex_state = 133}, - [1283] = {.lex_state = 172}, - [1284] = {.lex_state = 172}, - [1285] = {.lex_state = 178}, + [1283] = {.lex_state = 135}, + [1284] = {.lex_state = 133}, + [1285] = {.lex_state = 172}, [1286] = {.lex_state = 172}, - [1287] = {.lex_state = 172}, + [1287] = {.lex_state = 133}, [1288] = {.lex_state = 133}, - [1289] = {.lex_state = 170}, - [1290] = {.lex_state = 172}, - [1291] = {.lex_state = 133}, - [1292] = {.lex_state = 135}, - [1293] = {.lex_state = 134}, - [1294] = {.lex_state = 134}, + [1289] = {.lex_state = 172}, + [1290] = {.lex_state = 124}, + [1291] = {.lex_state = 124}, + [1292] = {.lex_state = 170}, + [1293] = {.lex_state = 133}, + [1294] = {.lex_state = 124}, [1295] = {.lex_state = 133}, - [1296] = {.lex_state = 172}, - [1297] = {.lex_state = 172}, - [1298] = {.lex_state = 133}, - [1299] = {.lex_state = 133}, - [1300] = {.lex_state = 172}, - [1301] = {.lex_state = 178}, - [1302] = {.lex_state = 135}, - [1303] = {.lex_state = 133}, - [1304] = {.lex_state = 133}, - [1305] = {.lex_state = 133}, - [1306] = {.lex_state = 178}, - [1307] = {.lex_state = 135}, - [1308] = {.lex_state = 133}, + [1296] = {.lex_state = 133}, + [1297] = {.lex_state = 133}, + [1298] = {.lex_state = 152}, + [1299] = {.lex_state = 152}, + [1300] = {.lex_state = 133}, + [1301] = {.lex_state = 172}, + [1302] = {.lex_state = 172}, + [1303] = {.lex_state = 178}, + [1304] = {.lex_state = 172}, + [1305] = {.lex_state = 172}, + [1306] = {.lex_state = 133}, + [1307] = {.lex_state = 170}, + [1308] = {.lex_state = 172}, [1309] = {.lex_state = 133}, - [1310] = {.lex_state = 172}, - [1311] = {.lex_state = 133}, - [1312] = {.lex_state = 133}, - [1313] = {.lex_state = 172}, + [1310] = {.lex_state = 135}, + [1311] = {.lex_state = 134}, + [1312] = {.lex_state = 134}, + [1313] = {.lex_state = 133}, [1314] = {.lex_state = 172}, - [1315] = {.lex_state = 133}, - [1316] = {.lex_state = 170}, - [1317] = {.lex_state = 172}, - [1318] = {.lex_state = 133}, - [1319] = {.lex_state = 135}, - [1320] = {.lex_state = 152}, - [1321] = {.lex_state = 152}, + [1315] = {.lex_state = 172}, + [1316] = {.lex_state = 133}, + [1317] = {.lex_state = 133}, + [1318] = {.lex_state = 172}, + [1319] = {.lex_state = 178}, + [1320] = {.lex_state = 135}, + [1321] = {.lex_state = 133}, [1322] = {.lex_state = 133}, - [1323] = {.lex_state = 172}, - [1324] = {.lex_state = 172}, - [1325] = {.lex_state = 133}, + [1323] = {.lex_state = 133}, + [1324] = {.lex_state = 178}, + [1325] = {.lex_state = 135}, [1326] = {.lex_state = 133}, [1327] = {.lex_state = 133}, - [1328] = {.lex_state = 178}, - [1329] = {.lex_state = 135}, + [1328] = {.lex_state = 172}, + [1329] = {.lex_state = 133}, [1330] = {.lex_state = 133}, - [1331] = {.lex_state = 134}, - [1332] = {.lex_state = 133}, - [1333] = {.lex_state = 172}, - [1334] = {.lex_state = 133}, - [1335] = {.lex_state = 133}, - [1336] = {.lex_state = 172}, - [1337] = {.lex_state = 172}, - [1338] = {.lex_state = 178}, - [1339] = {.lex_state = 0}, + [1331] = {.lex_state = 172}, + [1332] = {.lex_state = 172}, + [1333] = {.lex_state = 133}, + [1334] = {.lex_state = 170}, + [1335] = {.lex_state = 172}, + [1336] = {.lex_state = 133}, + [1337] = {.lex_state = 135}, + [1338] = {.lex_state = 152}, + [1339] = {.lex_state = 152}, [1340] = {.lex_state = 133}, [1341] = {.lex_state = 172}, - [1342] = {.lex_state = 178}, - [1343] = {.lex_state = 135}, + [1342] = {.lex_state = 172}, + [1343] = {.lex_state = 133}, [1344] = {.lex_state = 133}, [1345] = {.lex_state = 133}, - [1346] = {.lex_state = 133}, - [1347] = {.lex_state = 133}, + [1346] = {.lex_state = 178}, + [1347] = {.lex_state = 135}, [1348] = {.lex_state = 133}, - [1349] = {.lex_state = 178}, - [1350] = {.lex_state = 135}, - [1351] = {.lex_state = 133}, - [1352] = {.lex_state = 152}, + [1349] = {.lex_state = 134}, + [1350] = {.lex_state = 133}, + [1351] = {.lex_state = 172}, + [1352] = {.lex_state = 133}, [1353] = {.lex_state = 133}, [1354] = {.lex_state = 172}, - [1355] = {.lex_state = 134}, - [1356] = {.lex_state = 133}, - [1357] = {.lex_state = 172}, - [1358] = {.lex_state = 178}, - [1359] = {.lex_state = 135}, - [1360] = {.lex_state = 134}, - [1361] = {.lex_state = 133}, + [1355] = {.lex_state = 172}, + [1356] = {.lex_state = 178}, + [1357] = {.lex_state = 0}, + [1358] = {.lex_state = 133}, + [1359] = {.lex_state = 172}, + [1360] = {.lex_state = 178}, + [1361] = {.lex_state = 135}, [1362] = {.lex_state = 133}, - [1363] = {.lex_state = 172}, - [1364] = {.lex_state = 172}, + [1363] = {.lex_state = 133}, + [1364] = {.lex_state = 133}, [1365] = {.lex_state = 133}, [1366] = {.lex_state = 133}, - [1367] = {.lex_state = 172}, - [1368] = {.lex_state = 172}, - [1369] = {.lex_state = 178}, + [1367] = {.lex_state = 178}, + [1368] = {.lex_state = 135}, + [1369] = {.lex_state = 133}, [1370] = {.lex_state = 152}, [1371] = {.lex_state = 133}, [1372] = {.lex_state = 172}, - [1373] = {.lex_state = 178}, - [1374] = {.lex_state = 135}, - [1375] = {.lex_state = 152}, - [1376] = {.lex_state = 133}, - [1377] = {.lex_state = 133}, - [1378] = {.lex_state = 133}, - [1379] = {.lex_state = 172}, - [1380] = {.lex_state = 172}, - [1381] = {.lex_state = 178}, - [1382] = {.lex_state = 134}, + [1373] = {.lex_state = 134}, + [1374] = {.lex_state = 133}, + [1375] = {.lex_state = 172}, + [1376] = {.lex_state = 178}, + [1377] = {.lex_state = 135}, + [1378] = {.lex_state = 134}, + [1379] = {.lex_state = 133}, + [1380] = {.lex_state = 133}, + [1381] = {.lex_state = 172}, + [1382] = {.lex_state = 172}, [1383] = {.lex_state = 133}, - [1384] = {.lex_state = 172}, - [1385] = {.lex_state = 133}, + [1384] = {.lex_state = 133}, + [1385] = {.lex_state = 172}, [1386] = {.lex_state = 172}, - [1387] = {.lex_state = 172}, - [1388] = {.lex_state = 133}, + [1387] = {.lex_state = 178}, + [1388] = {.lex_state = 152}, [1389] = {.lex_state = 133}, [1390] = {.lex_state = 172}, - [1391] = {.lex_state = 172}, - [1392] = {.lex_state = 178}, + [1391] = {.lex_state = 178}, + [1392] = {.lex_state = 135}, [1393] = {.lex_state = 152}, [1394] = {.lex_state = 133}, - [1395] = {.lex_state = 172}, - [1396] = {.lex_state = 172}, - [1397] = {.lex_state = 133}, - [1398] = {.lex_state = 133}, - [1399] = {.lex_state = 172}, - [1400] = {.lex_state = 133}, - [1401] = {.lex_state = 172}, + [1395] = {.lex_state = 133}, + [1396] = {.lex_state = 133}, + [1397] = {.lex_state = 172}, + [1398] = {.lex_state = 172}, + [1399] = {.lex_state = 178}, + [1400] = {.lex_state = 134}, + [1401] = {.lex_state = 133}, [1402] = {.lex_state = 172}, [1403] = {.lex_state = 133}, [1404] = {.lex_state = 172}, - [1405] = {.lex_state = 133}, + [1405] = {.lex_state = 172}, [1406] = {.lex_state = 133}, - [1407] = {.lex_state = 172}, - [1408] = {.lex_state = 133}, - [1409] = {.lex_state = 133}, + [1407] = {.lex_state = 133}, + [1408] = {.lex_state = 172}, + [1409] = {.lex_state = 172}, + [1410] = {.lex_state = 178}, + [1411] = {.lex_state = 152}, + [1412] = {.lex_state = 133}, + [1413] = {.lex_state = 172}, + [1414] = {.lex_state = 172}, + [1415] = {.lex_state = 133}, + [1416] = {.lex_state = 133}, + [1417] = {.lex_state = 172}, + [1418] = {.lex_state = 133}, + [1419] = {.lex_state = 172}, + [1420] = {.lex_state = 172}, + [1421] = {.lex_state = 133}, + [1422] = {.lex_state = 172}, + [1423] = {.lex_state = 133}, + [1424] = {.lex_state = 133}, + [1425] = {.lex_state = 172}, + [1426] = {.lex_state = 133}, + [1427] = {.lex_state = 133}, }; static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { @@ -6893,15 +6911,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(119), [sym_function_declarator] = STATE(119), [sym_array_declarator] = STATE(119), + [sym_type_qualifier] = STATE(120), + [aux_sym_type_definition_repeat1] = STATE(120), [anon_sym_LPAREN] = ACTIONS(90), [anon_sym_STAR] = ACTIONS(94), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), [sym_identifier] = ACTIONS(229), [sym_comment] = ACTIONS(39), }, [45] = { - [sym_compound_statement] = STATE(126), - [sym_parameter_list] = STATE(127), - [aux_sym_declaration_repeat1] = STATE(128), + [sym_compound_statement] = STATE(127), + [sym_parameter_list] = STATE(128), + [aux_sym_declaration_repeat1] = STATE(129), [anon_sym_LPAREN] = ACTIONS(231), [anon_sym_COMMA] = ACTIONS(233), [anon_sym_SEMI] = ACTIONS(235), @@ -6911,15 +6935,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [46] = { - [aux_sym_declaration_repeat1] = STATE(128), + [aux_sym_declaration_repeat1] = STATE(129), [anon_sym_COMMA] = ACTIONS(233), [anon_sym_SEMI] = ACTIONS(235), [sym_comment] = ACTIONS(39), }, [47] = { - [sym_storage_class_specifier] = STATE(129), - [sym_type_qualifier] = STATE(129), - [aux_sym__declaration_specifiers_repeat1] = STATE(129), + [sym_storage_class_specifier] = STATE(130), + [sym_type_qualifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(130), [anon_sym_LPAREN] = ACTIONS(243), [anon_sym_SEMI] = ACTIONS(243), [anon_sym_extern] = ACTIONS(23), @@ -6987,9 +7011,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [49] = { - [sym_storage_class_specifier] = STATE(130), - [sym_type_qualifier] = STATE(130), - [aux_sym__declaration_specifiers_repeat1] = STATE(130), + [sym_storage_class_specifier] = STATE(131), + [sym_type_qualifier] = STATE(131), + [aux_sym__declaration_specifiers_repeat1] = STATE(131), [anon_sym_LPAREN] = ACTIONS(243), [anon_sym_SEMI] = ACTIONS(243), [anon_sym_extern] = ACTIONS(23), @@ -7243,17 +7267,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [64] = { - [sym_preproc_include] = STATE(150), - [sym_preproc_def] = STATE(150), - [sym_preproc_function_def] = STATE(150), - [sym_preproc_call] = STATE(150), - [sym_preproc_if] = STATE(150), - [sym_preproc_ifdef] = STATE(150), - [sym_function_definition] = STATE(150), - [sym_declaration] = STATE(150), - [sym_type_definition] = STATE(150), - [sym__declaration_specifiers] = STATE(149), - [sym_linkage_specification] = STATE(150), + [sym_preproc_include] = STATE(151), + [sym_preproc_def] = STATE(151), + [sym_preproc_function_def] = STATE(151), + [sym_preproc_call] = STATE(151), + [sym_preproc_if] = STATE(151), + [sym_preproc_ifdef] = STATE(151), + [sym_function_definition] = STATE(151), + [sym_declaration] = STATE(151), + [sym_type_definition] = STATE(151), + [sym__declaration_specifiers] = STATE(150), + [sym_linkage_specification] = STATE(151), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -7261,9 +7285,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(150), + [sym__empty_declaration] = STATE(151), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(150), + [aux_sym_translation_unit_repeat1] = STATE(151), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(348), @@ -7303,14 +7327,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(47), }, [67] = { - [sym_type_qualifier] = STATE(155), - [sym__type_specifier] = STATE(154), - [sym_sized_type_specifier] = STATE(154), - [sym_enum_specifier] = STATE(154), - [sym_struct_specifier] = STATE(154), - [sym_union_specifier] = STATE(154), - [sym_macro_type_specifier] = STATE(154), - [aux_sym_type_definition_repeat1] = STATE(155), + [sym_type_qualifier] = STATE(156), + [sym__type_specifier] = STATE(155), + [sym_sized_type_specifier] = STATE(155), + [sym_enum_specifier] = STATE(155), + [sym_struct_specifier] = STATE(155), + [sym_union_specifier] = STATE(155), + [sym_macro_type_specifier] = STATE(155), + [aux_sym_type_definition_repeat1] = STATE(156), [aux_sym_sized_type_specifier_repeat1] = STATE(31), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), @@ -7352,11 +7376,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [70] = { - [sym__declarator] = STATE(159), - [sym_pointer_declarator] = STATE(159), - [sym_function_declarator] = STATE(159), - [sym_array_declarator] = STATE(159), - [sym_init_declarator] = STATE(160), + [sym__declarator] = STATE(160), + [sym_pointer_declarator] = STATE(160), + [sym_function_declarator] = STATE(160), + [sym_array_declarator] = STATE(160), + [sym_init_declarator] = STATE(161), [anon_sym_LPAREN] = ACTIONS(90), [anon_sym_SEMI] = ACTIONS(378), [anon_sym_STAR] = ACTIONS(94), @@ -7364,19 +7388,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [71] = { - [sym_preproc_include] = STATE(162), - [sym_preproc_def] = STATE(162), - [sym_preproc_function_def] = STATE(162), - [sym_preproc_call] = STATE(162), - [sym_preproc_if] = STATE(162), - [sym_preproc_ifdef] = STATE(162), - [sym_preproc_else] = STATE(161), - [sym_preproc_elif] = STATE(161), - [sym_function_definition] = STATE(162), - [sym_declaration] = STATE(162), - [sym_type_definition] = STATE(162), + [sym_preproc_include] = STATE(163), + [sym_preproc_def] = STATE(163), + [sym_preproc_function_def] = STATE(163), + [sym_preproc_call] = STATE(163), + [sym_preproc_if] = STATE(163), + [sym_preproc_ifdef] = STATE(163), + [sym_preproc_else] = STATE(162), + [sym_preproc_elif] = STATE(162), + [sym_function_definition] = STATE(163), + [sym_declaration] = STATE(163), + [sym_type_definition] = STATE(163), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(162), + [sym_linkage_specification] = STATE(163), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -7384,9 +7408,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(162), + [sym__empty_declaration] = STATE(163), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(162), + [aux_sym_translation_unit_repeat1] = STATE(163), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), @@ -7452,19 +7476,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [74] = { - [sym_preproc_include] = STATE(162), - [sym_preproc_def] = STATE(162), - [sym_preproc_function_def] = STATE(162), - [sym_preproc_call] = STATE(162), - [sym_preproc_if] = STATE(162), - [sym_preproc_ifdef] = STATE(162), - [sym_preproc_else] = STATE(164), - [sym_preproc_elif] = STATE(164), - [sym_function_definition] = STATE(162), - [sym_declaration] = STATE(162), - [sym_type_definition] = STATE(162), + [sym_preproc_include] = STATE(163), + [sym_preproc_def] = STATE(163), + [sym_preproc_function_def] = STATE(163), + [sym_preproc_call] = STATE(163), + [sym_preproc_if] = STATE(163), + [sym_preproc_ifdef] = STATE(163), + [sym_preproc_else] = STATE(165), + [sym_preproc_elif] = STATE(165), + [sym_function_definition] = STATE(163), + [sym_declaration] = STATE(163), + [sym_type_definition] = STATE(163), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(162), + [sym_linkage_specification] = STATE(163), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -7472,9 +7496,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(162), + [sym__empty_declaration] = STATE(163), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(162), + [aux_sym_translation_unit_repeat1] = STATE(163), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), @@ -7540,19 +7564,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [77] = { - [sym_preproc_include] = STATE(162), - [sym_preproc_def] = STATE(162), - [sym_preproc_function_def] = STATE(162), - [sym_preproc_call] = STATE(162), - [sym_preproc_if] = STATE(162), - [sym_preproc_ifdef] = STATE(162), - [sym_preproc_else] = STATE(166), - [sym_preproc_elif] = STATE(166), - [sym_function_definition] = STATE(162), - [sym_declaration] = STATE(162), - [sym_type_definition] = STATE(162), + [sym_preproc_include] = STATE(163), + [sym_preproc_def] = STATE(163), + [sym_preproc_function_def] = STATE(163), + [sym_preproc_call] = STATE(163), + [sym_preproc_if] = STATE(163), + [sym_preproc_ifdef] = STATE(163), + [sym_preproc_else] = STATE(167), + [sym_preproc_elif] = STATE(167), + [sym_function_definition] = STATE(163), + [sym_declaration] = STATE(163), + [sym_type_definition] = STATE(163), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(162), + [sym_linkage_specification] = STATE(163), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -7560,9 +7584,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(162), + [sym__empty_declaration] = STATE(163), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(162), + [aux_sym_translation_unit_repeat1] = STATE(163), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), @@ -7599,7 +7623,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(47), }, [79] = { - [sym__type_declarator] = STATE(169), + [sym__type_declarator] = STATE(170), [sym_pointer_type_declarator] = STATE(83), [sym_function_type_declarator] = STATE(84), [sym_array_type_declarator] = STATE(85), @@ -7609,52 +7633,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [80] = { - [sym__type_declarator] = STATE(170), + [sym__type_declarator] = STATE(171), [sym_pointer_type_declarator] = STATE(83), [sym_function_type_declarator] = STATE(84), [sym_array_type_declarator] = STATE(85), + [sym_type_qualifier] = STATE(172), + [aux_sym_type_definition_repeat1] = STATE(172), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_STAR] = ACTIONS(161), - [sym_identifier] = ACTIONS(163), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(404), [sym_comment] = ACTIONS(39), }, [81] = { - [anon_sym_LPAREN] = ACTIONS(404), - [anon_sym_RPAREN] = ACTIONS(404), - [anon_sym_SEMI] = ACTIONS(404), - [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LPAREN] = ACTIONS(406), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(406), [sym_comment] = ACTIONS(39), }, [82] = { - [sym_parameter_list] = STATE(173), + [sym_parameter_list] = STATE(175), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_LBRACK] = ACTIONS(408), - [sym_comment] = ACTIONS(39), - }, - [83] = { - [anon_sym_LPAREN] = ACTIONS(410), - [anon_sym_RPAREN] = ACTIONS(410), - [anon_sym_SEMI] = ACTIONS(410), + [anon_sym_SEMI] = ACTIONS(408), [anon_sym_LBRACK] = ACTIONS(410), [sym_comment] = ACTIONS(39), }, - [84] = { + [83] = { [anon_sym_LPAREN] = ACTIONS(412), [anon_sym_RPAREN] = ACTIONS(412), [anon_sym_SEMI] = ACTIONS(412), [anon_sym_LBRACK] = ACTIONS(412), [sym_comment] = ACTIONS(39), }, - [85] = { + [84] = { [anon_sym_LPAREN] = ACTIONS(414), [anon_sym_RPAREN] = ACTIONS(414), [anon_sym_SEMI] = ACTIONS(414), [anon_sym_LBRACK] = ACTIONS(414), [sym_comment] = ACTIONS(39), }, + [85] = { + [anon_sym_LPAREN] = ACTIONS(416), + [anon_sym_RPAREN] = ACTIONS(416), + [anon_sym_SEMI] = ACTIONS(416), + [anon_sym_LBRACK] = ACTIONS(416), + [sym_comment] = ACTIONS(39), + }, [86] = { - [sym__type_declarator] = STATE(174), + [sym__type_declarator] = STATE(176), [sym_pointer_type_declarator] = STATE(83), [sym_function_type_declarator] = STATE(84), [sym_array_type_declarator] = STATE(85), @@ -7666,43 +7696,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [87] = { [sym_type_qualifier] = STATE(87), [aux_sym_type_definition_repeat1] = STATE(87), - [anon_sym_const] = ACTIONS(416), - [anon_sym_restrict] = ACTIONS(416), - [anon_sym_volatile] = ACTIONS(416), - [anon_sym__Atomic] = ACTIONS(416), - [anon_sym_unsigned] = ACTIONS(419), - [anon_sym_long] = ACTIONS(419), - [anon_sym_short] = ACTIONS(419), - [sym_primitive_type] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(419), - [anon_sym_struct] = ACTIONS(419), - [anon_sym_union] = ACTIONS(419), - [sym_identifier] = ACTIONS(419), + [anon_sym_const] = ACTIONS(418), + [anon_sym_restrict] = ACTIONS(418), + [anon_sym_volatile] = ACTIONS(418), + [anon_sym__Atomic] = ACTIONS(418), + [anon_sym_unsigned] = ACTIONS(421), + [anon_sym_long] = ACTIONS(421), + [anon_sym_short] = ACTIONS(421), + [sym_primitive_type] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(421), + [anon_sym_struct] = ACTIONS(421), + [anon_sym_union] = ACTIONS(421), + [sym_identifier] = ACTIONS(421), [sym_comment] = ACTIONS(39), }, [88] = { [aux_sym_sized_type_specifier_repeat1] = STATE(88), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(313), - [anon_sym_unsigned] = ACTIONS(421), - [anon_sym_long] = ACTIONS(421), - [anon_sym_short] = ACTIONS(421), + [anon_sym_unsigned] = ACTIONS(423), + [anon_sym_long] = ACTIONS(423), + [anon_sym_short] = ACTIONS(423), [sym_primitive_type] = ACTIONS(315), [sym_identifier] = ACTIONS(315), [sym_comment] = ACTIONS(39), }, [89] = { - [sym_preproc_include] = STATE(176), - [sym_preproc_def] = STATE(176), - [sym_preproc_function_def] = STATE(176), - [sym_preproc_call] = STATE(176), - [sym_preproc_if] = STATE(176), - [sym_preproc_ifdef] = STATE(176), - [sym_function_definition] = STATE(176), - [sym_declaration] = STATE(176), - [sym_type_definition] = STATE(176), + [sym_preproc_include] = STATE(178), + [sym_preproc_def] = STATE(178), + [sym_preproc_function_def] = STATE(178), + [sym_preproc_call] = STATE(178), + [sym_preproc_if] = STATE(178), + [sym_preproc_ifdef] = STATE(178), + [sym_function_definition] = STATE(178), + [sym_declaration] = STATE(178), + [sym_type_definition] = STATE(178), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(176), + [sym_linkage_specification] = STATE(178), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -7710,9 +7740,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(176), + [sym__empty_declaration] = STATE(178), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(176), + [aux_sym_translation_unit_repeat1] = STATE(178), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -7723,7 +7753,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(426), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -7743,32 +7773,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [90] = { - [ts_builtin_sym_end] = ACTIONS(426), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(428), - [sym_preproc_directive] = ACTIONS(428), - [anon_sym_typedef] = ACTIONS(428), - [anon_sym_extern] = ACTIONS(428), - [anon_sym_RBRACE] = ACTIONS(426), - [anon_sym_static] = ACTIONS(428), - [anon_sym_auto] = ACTIONS(428), - [anon_sym_register] = ACTIONS(428), - [anon_sym_inline] = ACTIONS(428), - [anon_sym_const] = ACTIONS(428), - [anon_sym_restrict] = ACTIONS(428), - [anon_sym_volatile] = ACTIONS(428), - [anon_sym__Atomic] = ACTIONS(428), - [anon_sym_unsigned] = ACTIONS(428), - [anon_sym_long] = ACTIONS(428), - [anon_sym_short] = ACTIONS(428), - [sym_primitive_type] = ACTIONS(428), - [anon_sym_enum] = ACTIONS(428), - [anon_sym_struct] = ACTIONS(428), - [anon_sym_union] = ACTIONS(428), - [sym_identifier] = ACTIONS(428), + [ts_builtin_sym_end] = ACTIONS(428), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(430), + [sym_preproc_directive] = ACTIONS(430), + [anon_sym_typedef] = ACTIONS(430), + [anon_sym_extern] = ACTIONS(430), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_auto] = ACTIONS(430), + [anon_sym_register] = ACTIONS(430), + [anon_sym_inline] = ACTIONS(430), + [anon_sym_const] = ACTIONS(430), + [anon_sym_restrict] = ACTIONS(430), + [anon_sym_volatile] = ACTIONS(430), + [anon_sym__Atomic] = ACTIONS(430), + [anon_sym_unsigned] = ACTIONS(430), + [anon_sym_long] = ACTIONS(430), + [anon_sym_short] = ACTIONS(430), + [sym_primitive_type] = ACTIONS(430), + [anon_sym_enum] = ACTIONS(430), + [anon_sym_struct] = ACTIONS(430), + [anon_sym_union] = ACTIONS(430), + [sym_identifier] = ACTIONS(430), [sym_comment] = ACTIONS(39), }, [91] = { @@ -7783,9 +7813,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [92] = { - [sym_storage_class_specifier] = STATE(177), - [sym_type_qualifier] = STATE(177), - [aux_sym__declaration_specifiers_repeat1] = STATE(177), + [sym_storage_class_specifier] = STATE(179), + [sym_type_qualifier] = STATE(179), + [aux_sym__declaration_specifiers_repeat1] = STATE(179), [anon_sym_LPAREN] = ACTIONS(98), [anon_sym_extern] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(98), @@ -7803,12 +7833,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [93] = { [sym_storage_class_specifier] = STATE(50), [sym_type_qualifier] = STATE(50), - [sym__type_specifier] = STATE(178), - [sym_sized_type_specifier] = STATE(178), - [sym_enum_specifier] = STATE(178), - [sym_struct_specifier] = STATE(178), - [sym_union_specifier] = STATE(178), - [sym_macro_type_specifier] = STATE(178), + [sym__type_specifier] = STATE(180), + [sym_sized_type_specifier] = STATE(180), + [sym_enum_specifier] = STATE(180), + [sym_struct_specifier] = STATE(180), + [sym_union_specifier] = STATE(180), + [sym_macro_type_specifier] = STATE(180), [aux_sym__declaration_specifiers_repeat1] = STATE(50), [aux_sym_sized_type_specifier_repeat1] = STATE(94), [anon_sym_extern] = ACTIONS(23), @@ -7823,7 +7853,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(171), [anon_sym_long] = ACTIONS(171), [anon_sym_short] = ACTIONS(171), - [sym_primitive_type] = ACTIONS(430), + [sym_primitive_type] = ACTIONS(432), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -7831,7 +7861,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [94] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(179), + [aux_sym_sized_type_specifier_repeat1] = STATE(181), [anon_sym_LPAREN] = ACTIONS(106), [anon_sym_extern] = ACTIONS(108), [anon_sym_STAR] = ACTIONS(106), @@ -7843,155 +7873,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(108), [anon_sym_volatile] = ACTIONS(108), [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(432), - [anon_sym_long] = ACTIONS(432), - [anon_sym_short] = ACTIONS(432), + [anon_sym_unsigned] = ACTIONS(434), + [anon_sym_long] = ACTIONS(434), + [anon_sym_short] = ACTIONS(434), [sym_primitive_type] = ACTIONS(112), [sym_identifier] = ACTIONS(114), [sym_comment] = ACTIONS(39), }, [95] = { - [anon_sym_RBRACE] = ACTIONS(434), + [anon_sym_RBRACE] = ACTIONS(436), [sym_comment] = ACTIONS(39), }, [96] = { - [anon_sym_LPAREN] = ACTIONS(436), - [anon_sym_COMMA] = ACTIONS(436), - [anon_sym_RPAREN] = ACTIONS(436), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_extern] = ACTIONS(438), - [anon_sym_STAR] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(436), - [anon_sym_RBRACK] = ACTIONS(436), - [anon_sym_static] = ACTIONS(438), - [anon_sym_auto] = ACTIONS(438), - [anon_sym_register] = ACTIONS(438), - [anon_sym_inline] = ACTIONS(438), - [anon_sym_const] = ACTIONS(438), - [anon_sym_restrict] = ACTIONS(438), - [anon_sym_volatile] = ACTIONS(438), - [anon_sym__Atomic] = ACTIONS(438), - [anon_sym_COLON] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(436), - [anon_sym_BANG] = ACTIONS(436), - [anon_sym_TILDE] = ACTIONS(436), - [anon_sym_PLUS] = ACTIONS(438), - [anon_sym_DASH] = ACTIONS(438), - [anon_sym_DASH_DASH] = ACTIONS(436), - [anon_sym_PLUS_PLUS] = ACTIONS(436), - [anon_sym_sizeof] = ACTIONS(438), - [sym_number_literal] = ACTIONS(436), - [sym_char_literal] = ACTIONS(436), - [sym_string_literal] = ACTIONS(436), - [sym_true] = ACTIONS(438), - [sym_false] = ACTIONS(438), - [sym_null] = ACTIONS(438), - [sym_identifier] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(438), + [anon_sym_COMMA] = ACTIONS(438), + [anon_sym_RPAREN] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_extern] = ACTIONS(440), + [anon_sym_STAR] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(438), + [anon_sym_RBRACK] = ACTIONS(438), + [anon_sym_static] = ACTIONS(440), + [anon_sym_auto] = ACTIONS(440), + [anon_sym_register] = ACTIONS(440), + [anon_sym_inline] = ACTIONS(440), + [anon_sym_const] = ACTIONS(440), + [anon_sym_restrict] = ACTIONS(440), + [anon_sym_volatile] = ACTIONS(440), + [anon_sym__Atomic] = ACTIONS(440), + [anon_sym_COLON] = ACTIONS(438), + [anon_sym_AMP] = ACTIONS(438), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(440), + [anon_sym_DASH] = ACTIONS(440), + [anon_sym_DASH_DASH] = ACTIONS(438), + [anon_sym_PLUS_PLUS] = ACTIONS(438), + [anon_sym_sizeof] = ACTIONS(440), + [sym_number_literal] = ACTIONS(438), + [sym_char_literal] = ACTIONS(438), + [sym_string_literal] = ACTIONS(438), + [sym_true] = ACTIONS(440), + [sym_false] = ACTIONS(440), + [sym_null] = ACTIONS(440), + [sym_identifier] = ACTIONS(440), [sym_comment] = ACTIONS(39), }, [97] = { - [anon_sym_COMMA] = ACTIONS(440), - [anon_sym_RBRACE] = ACTIONS(440), - [anon_sym_EQ] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(442), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_EQ] = ACTIONS(444), [sym_comment] = ACTIONS(39), }, [98] = { - [aux_sym_enumerator_list_repeat1] = STATE(183), - [anon_sym_COMMA] = ACTIONS(444), - [anon_sym_RBRACE] = ACTIONS(434), + [aux_sym_enumerator_list_repeat1] = STATE(185), + [anon_sym_COMMA] = ACTIONS(446), + [anon_sym_RBRACE] = ACTIONS(436), [sym_comment] = ACTIONS(39), }, [99] = { - [anon_sym_LPAREN] = ACTIONS(446), - [anon_sym_COMMA] = ACTIONS(446), - [anon_sym_RPAREN] = ACTIONS(446), - [anon_sym_SEMI] = ACTIONS(446), - [anon_sym_extern] = ACTIONS(448), - [anon_sym_STAR] = ACTIONS(446), - [anon_sym_LBRACK] = ACTIONS(446), - [anon_sym_RBRACK] = ACTIONS(446), - [anon_sym_static] = ACTIONS(448), - [anon_sym_auto] = ACTIONS(448), - [anon_sym_register] = ACTIONS(448), - [anon_sym_inline] = ACTIONS(448), - [anon_sym_const] = ACTIONS(448), - [anon_sym_restrict] = ACTIONS(448), - [anon_sym_volatile] = ACTIONS(448), - [anon_sym__Atomic] = ACTIONS(448), - [anon_sym_COLON] = ACTIONS(446), - [anon_sym_AMP] = ACTIONS(446), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_PLUS] = ACTIONS(448), - [anon_sym_DASH] = ACTIONS(448), - [anon_sym_DASH_DASH] = ACTIONS(446), - [anon_sym_PLUS_PLUS] = ACTIONS(446), - [anon_sym_sizeof] = ACTIONS(448), - [sym_number_literal] = ACTIONS(446), - [sym_char_literal] = ACTIONS(446), - [sym_string_literal] = ACTIONS(446), - [sym_true] = ACTIONS(448), - [sym_false] = ACTIONS(448), - [sym_null] = ACTIONS(448), - [sym_identifier] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(448), + [anon_sym_COMMA] = ACTIONS(448), + [anon_sym_RPAREN] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(448), + [anon_sym_extern] = ACTIONS(450), + [anon_sym_STAR] = ACTIONS(448), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_RBRACK] = ACTIONS(448), + [anon_sym_static] = ACTIONS(450), + [anon_sym_auto] = ACTIONS(450), + [anon_sym_register] = ACTIONS(450), + [anon_sym_inline] = ACTIONS(450), + [anon_sym_const] = ACTIONS(450), + [anon_sym_restrict] = ACTIONS(450), + [anon_sym_volatile] = ACTIONS(450), + [anon_sym__Atomic] = ACTIONS(450), + [anon_sym_COLON] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(448), + [anon_sym_TILDE] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_DASH_DASH] = ACTIONS(448), + [anon_sym_PLUS_PLUS] = ACTIONS(448), + [anon_sym_sizeof] = ACTIONS(450), + [sym_number_literal] = ACTIONS(448), + [sym_char_literal] = ACTIONS(448), + [sym_string_literal] = ACTIONS(448), + [sym_true] = ACTIONS(450), + [sym_false] = ACTIONS(450), + [sym_null] = ACTIONS(450), + [sym_identifier] = ACTIONS(450), [sym_comment] = ACTIONS(39), }, [100] = { - [sym_preproc_arg] = ACTIONS(450), + [sym_preproc_arg] = ACTIONS(452), [sym_comment] = ACTIONS(47), }, [101] = { - [sym_identifier] = ACTIONS(452), + [sym_identifier] = ACTIONS(454), [sym_comment] = ACTIONS(39), }, [102] = { - [sym_identifier] = ACTIONS(454), + [sym_identifier] = ACTIONS(456), [sym_comment] = ACTIONS(39), }, [103] = { - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_COMMA] = ACTIONS(456), - [anon_sym_RPAREN] = ACTIONS(456), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), - [anon_sym_STAR] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(456), - [anon_sym_RBRACK] = ACTIONS(456), - [anon_sym_static] = ACTIONS(458), - [anon_sym_auto] = ACTIONS(458), - [anon_sym_register] = ACTIONS(458), - [anon_sym_inline] = ACTIONS(458), - [anon_sym_const] = ACTIONS(458), - [anon_sym_restrict] = ACTIONS(458), - [anon_sym_volatile] = ACTIONS(458), - [anon_sym__Atomic] = ACTIONS(458), - [anon_sym_COLON] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(456), - [anon_sym_BANG] = ACTIONS(456), - [anon_sym_TILDE] = ACTIONS(456), - [anon_sym_PLUS] = ACTIONS(458), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_DASH_DASH] = ACTIONS(456), - [anon_sym_PLUS_PLUS] = ACTIONS(456), - [anon_sym_sizeof] = ACTIONS(458), - [sym_number_literal] = ACTIONS(456), - [sym_char_literal] = ACTIONS(456), - [sym_string_literal] = ACTIONS(456), - [sym_true] = ACTIONS(458), - [sym_false] = ACTIONS(458), - [sym_null] = ACTIONS(458), - [sym_identifier] = ACTIONS(458), - [sym_comment] = ACTIONS(39), - }, - [104] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(460), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(462), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(462), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(462), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(462), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(462), + [anon_sym_LPAREN] = ACTIONS(458), + [anon_sym_COMMA] = ACTIONS(458), + [anon_sym_RPAREN] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(458), [anon_sym_extern] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_STAR] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_RBRACK] = ACTIONS(458), [anon_sym_static] = ACTIONS(460), [anon_sym_auto] = ACTIONS(460), [anon_sym_register] = ACTIONS(460), @@ -8000,59 +7995,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(460), [anon_sym_volatile] = ACTIONS(460), [anon_sym__Atomic] = ACTIONS(460), - [anon_sym_unsigned] = ACTIONS(460), - [anon_sym_long] = ACTIONS(460), - [anon_sym_short] = ACTIONS(460), - [sym_primitive_type] = ACTIONS(460), - [anon_sym_enum] = ACTIONS(460), - [anon_sym_struct] = ACTIONS(460), - [anon_sym_union] = ACTIONS(460), + [anon_sym_COLON] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(458), + [anon_sym_BANG] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(458), + [anon_sym_PLUS] = ACTIONS(460), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_sizeof] = ACTIONS(460), + [sym_number_literal] = ACTIONS(458), + [sym_char_literal] = ACTIONS(458), + [sym_string_literal] = ACTIONS(458), + [sym_true] = ACTIONS(460), + [sym_false] = ACTIONS(460), + [sym_null] = ACTIONS(460), [sym_identifier] = ACTIONS(460), [sym_comment] = ACTIONS(39), }, + [104] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(462), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(464), + [anon_sym_extern] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(464), + [anon_sym_static] = ACTIONS(462), + [anon_sym_auto] = ACTIONS(462), + [anon_sym_register] = ACTIONS(462), + [anon_sym_inline] = ACTIONS(462), + [anon_sym_const] = ACTIONS(462), + [anon_sym_restrict] = ACTIONS(462), + [anon_sym_volatile] = ACTIONS(462), + [anon_sym__Atomic] = ACTIONS(462), + [anon_sym_unsigned] = ACTIONS(462), + [anon_sym_long] = ACTIONS(462), + [anon_sym_short] = ACTIONS(462), + [sym_primitive_type] = ACTIONS(462), + [anon_sym_enum] = ACTIONS(462), + [anon_sym_struct] = ACTIONS(462), + [anon_sym_union] = ACTIONS(462), + [sym_identifier] = ACTIONS(462), + [sym_comment] = ACTIONS(39), + }, [105] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(464), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(466), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(466), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(466), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(466), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(466), - [anon_sym_extern] = ACTIONS(464), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_static] = ACTIONS(464), - [anon_sym_auto] = ACTIONS(464), - [anon_sym_register] = ACTIONS(464), - [anon_sym_inline] = ACTIONS(464), - [anon_sym_const] = ACTIONS(464), - [anon_sym_restrict] = ACTIONS(464), - [anon_sym_volatile] = ACTIONS(464), - [anon_sym__Atomic] = ACTIONS(464), - [anon_sym_unsigned] = ACTIONS(464), - [anon_sym_long] = ACTIONS(464), - [anon_sym_short] = ACTIONS(464), - [sym_primitive_type] = ACTIONS(464), - [anon_sym_enum] = ACTIONS(464), - [anon_sym_struct] = ACTIONS(464), - [anon_sym_union] = ACTIONS(464), - [sym_identifier] = ACTIONS(464), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(466), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(468), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(468), + [anon_sym_extern] = ACTIONS(466), + [anon_sym_RBRACE] = ACTIONS(468), + [anon_sym_static] = ACTIONS(466), + [anon_sym_auto] = ACTIONS(466), + [anon_sym_register] = ACTIONS(466), + [anon_sym_inline] = ACTIONS(466), + [anon_sym_const] = ACTIONS(466), + [anon_sym_restrict] = ACTIONS(466), + [anon_sym_volatile] = ACTIONS(466), + [anon_sym__Atomic] = ACTIONS(466), + [anon_sym_unsigned] = ACTIONS(466), + [anon_sym_long] = ACTIONS(466), + [anon_sym_short] = ACTIONS(466), + [sym_primitive_type] = ACTIONS(466), + [anon_sym_enum] = ACTIONS(466), + [anon_sym_struct] = ACTIONS(466), + [anon_sym_union] = ACTIONS(466), + [sym_identifier] = ACTIONS(466), [sym_comment] = ACTIONS(39), }, [106] = { - [sym__field_declarator] = STATE(192), - [sym_pointer_field_declarator] = STATE(193), - [sym_function_field_declarator] = STATE(194), - [sym_array_field_declarator] = STATE(195), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_STAR] = ACTIONS(472), - [anon_sym_COLON] = ACTIONS(474), - [sym_identifier] = ACTIONS(476), + [sym__field_declarator] = STATE(194), + [sym_pointer_field_declarator] = STATE(195), + [sym_function_field_declarator] = STATE(196), + [sym_array_field_declarator] = STATE(197), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_COLON] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), [sym_comment] = ACTIONS(39), }, [107] = { - [sym_storage_class_specifier] = STATE(196), - [sym_type_qualifier] = STATE(196), - [aux_sym__declaration_specifiers_repeat1] = STATE(196), + [sym_storage_class_specifier] = STATE(198), + [sym_type_qualifier] = STATE(198), + [aux_sym__declaration_specifiers_repeat1] = STATE(198), [anon_sym_LPAREN] = ACTIONS(98), [anon_sym_SEMI] = ACTIONS(98), [anon_sym_extern] = ACTIONS(23), @@ -8080,17 +8110,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(198), - [sym_field_declaration] = STATE(198), + [sym__field_declaration_list_item] = STATE(200), + [sym_field_declaration] = STATE(200), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(200), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(189), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(191), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(193), [anon_sym_extern] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(480), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -8112,12 +8142,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [109] = { [sym_storage_class_specifier] = STATE(50), [sym_type_qualifier] = STATE(50), - [sym__type_specifier] = STATE(199), - [sym_sized_type_specifier] = STATE(199), - [sym_enum_specifier] = STATE(199), - [sym_struct_specifier] = STATE(199), - [sym_union_specifier] = STATE(199), - [sym_macro_type_specifier] = STATE(199), + [sym__type_specifier] = STATE(201), + [sym_sized_type_specifier] = STATE(201), + [sym_enum_specifier] = STATE(201), + [sym_struct_specifier] = STATE(201), + [sym_union_specifier] = STATE(201), + [sym_macro_type_specifier] = STATE(201), [aux_sym__declaration_specifiers_repeat1] = STATE(50), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [anon_sym_extern] = ACTIONS(23), @@ -8132,7 +8162,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(197), [anon_sym_long] = ACTIONS(197), [anon_sym_short] = ACTIONS(197), - [sym_primitive_type] = ACTIONS(480), + [sym_primitive_type] = ACTIONS(482), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -8140,7 +8170,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [110] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(200), + [aux_sym_sized_type_specifier_repeat1] = STATE(202), [anon_sym_LPAREN] = ACTIONS(106), [anon_sym_SEMI] = ACTIONS(106), [anon_sym_extern] = ACTIONS(108), @@ -8153,108 +8183,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(108), [anon_sym_volatile] = ACTIONS(108), [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(482), - [anon_sym_long] = ACTIONS(482), - [anon_sym_short] = ACTIONS(482), + [anon_sym_unsigned] = ACTIONS(484), + [anon_sym_long] = ACTIONS(484), + [anon_sym_short] = ACTIONS(484), [sym_primitive_type] = ACTIONS(112), [anon_sym_COLON] = ACTIONS(106), [sym_identifier] = ACTIONS(114), [sym_comment] = ACTIONS(39), }, [111] = { - [anon_sym_LPAREN] = ACTIONS(484), - [anon_sym_COMMA] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(484), - [anon_sym_extern] = ACTIONS(486), - [anon_sym_STAR] = ACTIONS(484), - [anon_sym_LBRACK] = ACTIONS(484), - [anon_sym_RBRACK] = ACTIONS(484), - [anon_sym_static] = ACTIONS(486), - [anon_sym_auto] = ACTIONS(486), - [anon_sym_register] = ACTIONS(486), - [anon_sym_inline] = ACTIONS(486), - [anon_sym_const] = ACTIONS(486), - [anon_sym_restrict] = ACTIONS(486), - [anon_sym_volatile] = ACTIONS(486), - [anon_sym__Atomic] = ACTIONS(486), - [anon_sym_COLON] = ACTIONS(484), - [anon_sym_AMP] = ACTIONS(484), - [anon_sym_BANG] = ACTIONS(484), - [anon_sym_TILDE] = ACTIONS(484), - [anon_sym_PLUS] = ACTIONS(486), - [anon_sym_DASH] = ACTIONS(486), - [anon_sym_DASH_DASH] = ACTIONS(484), - [anon_sym_PLUS_PLUS] = ACTIONS(484), - [anon_sym_sizeof] = ACTIONS(486), - [sym_number_literal] = ACTIONS(484), - [sym_char_literal] = ACTIONS(484), - [sym_string_literal] = ACTIONS(484), - [sym_true] = ACTIONS(486), - [sym_false] = ACTIONS(486), - [sym_null] = ACTIONS(486), - [sym_identifier] = ACTIONS(486), + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_RPAREN] = ACTIONS(486), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_extern] = ACTIONS(488), + [anon_sym_STAR] = ACTIONS(486), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_RBRACK] = ACTIONS(486), + [anon_sym_static] = ACTIONS(488), + [anon_sym_auto] = ACTIONS(488), + [anon_sym_register] = ACTIONS(488), + [anon_sym_inline] = ACTIONS(488), + [anon_sym_const] = ACTIONS(488), + [anon_sym_restrict] = ACTIONS(488), + [anon_sym_volatile] = ACTIONS(488), + [anon_sym__Atomic] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(486), + [anon_sym_AMP] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_DASH_DASH] = ACTIONS(486), + [anon_sym_PLUS_PLUS] = ACTIONS(486), + [anon_sym_sizeof] = ACTIONS(488), + [sym_number_literal] = ACTIONS(486), + [sym_char_literal] = ACTIONS(486), + [sym_string_literal] = ACTIONS(486), + [sym_true] = ACTIONS(488), + [sym_false] = ACTIONS(488), + [sym_null] = ACTIONS(488), + [sym_identifier] = ACTIONS(488), [sym_comment] = ACTIONS(39), }, [112] = { - [anon_sym_LPAREN] = ACTIONS(488), - [anon_sym_COMMA] = ACTIONS(488), - [anon_sym_RPAREN] = ACTIONS(488), - [anon_sym_SEMI] = ACTIONS(488), - [anon_sym_extern] = ACTIONS(490), - [anon_sym_STAR] = ACTIONS(488), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_RBRACK] = ACTIONS(488), - [anon_sym_static] = ACTIONS(490), - [anon_sym_auto] = ACTIONS(490), - [anon_sym_register] = ACTIONS(490), - [anon_sym_inline] = ACTIONS(490), - [anon_sym_const] = ACTIONS(490), - [anon_sym_restrict] = ACTIONS(490), - [anon_sym_volatile] = ACTIONS(490), - [anon_sym__Atomic] = ACTIONS(490), - [anon_sym_COLON] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(488), - [anon_sym_BANG] = ACTIONS(488), - [anon_sym_TILDE] = ACTIONS(488), - [anon_sym_PLUS] = ACTIONS(490), - [anon_sym_DASH] = ACTIONS(490), - [anon_sym_DASH_DASH] = ACTIONS(488), - [anon_sym_PLUS_PLUS] = ACTIONS(488), - [anon_sym_sizeof] = ACTIONS(490), - [sym_number_literal] = ACTIONS(488), - [sym_char_literal] = ACTIONS(488), - [sym_string_literal] = ACTIONS(488), - [sym_true] = ACTIONS(490), - [sym_false] = ACTIONS(490), - [sym_null] = ACTIONS(490), - [sym_identifier] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(490), + [anon_sym_RPAREN] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_extern] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_RBRACK] = ACTIONS(490), + [anon_sym_static] = ACTIONS(492), + [anon_sym_auto] = ACTIONS(492), + [anon_sym_register] = ACTIONS(492), + [anon_sym_inline] = ACTIONS(492), + [anon_sym_const] = ACTIONS(492), + [anon_sym_restrict] = ACTIONS(492), + [anon_sym_volatile] = ACTIONS(492), + [anon_sym__Atomic] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(490), + [anon_sym_AMP] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_DASH_DASH] = ACTIONS(490), + [anon_sym_PLUS_PLUS] = ACTIONS(490), + [anon_sym_sizeof] = ACTIONS(492), + [sym_number_literal] = ACTIONS(490), + [sym_char_literal] = ACTIONS(490), + [sym_string_literal] = ACTIONS(490), + [sym_true] = ACTIONS(492), + [sym_false] = ACTIONS(492), + [sym_null] = ACTIONS(492), + [sym_identifier] = ACTIONS(492), [sym_comment] = ACTIONS(39), }, [113] = { - [sym__abstract_declarator] = STATE(204), - [sym_abstract_pointer_declarator] = STATE(204), - [sym_abstract_function_declarator] = STATE(204), - [sym_abstract_array_declarator] = STATE(204), - [sym_parameter_list] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_RPAREN] = ACTIONS(494), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_LBRACK] = ACTIONS(498), + [sym__abstract_declarator] = STATE(206), + [sym_abstract_pointer_declarator] = STATE(206), + [sym_abstract_function_declarator] = STATE(206), + [sym_abstract_array_declarator] = STATE(206), + [sym_parameter_list] = STATE(207), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_RPAREN] = ACTIONS(496), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), [sym_comment] = ACTIONS(39), }, [114] = { - [anon_sym_RPAREN] = ACTIONS(500), + [anon_sym_RPAREN] = ACTIONS(502), [sym_comment] = ACTIONS(39), }, [115] = { [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(207), - [sym_sized_type_specifier] = STATE(207), - [sym_enum_specifier] = STATE(207), - [sym_struct_specifier] = STATE(207), - [sym_union_specifier] = STATE(207), - [sym_macro_type_specifier] = STATE(207), + [sym__type_specifier] = STATE(209), + [sym_sized_type_specifier] = STATE(209), + [sym_enum_specifier] = STATE(209), + [sym_struct_specifier] = STATE(209), + [sym_union_specifier] = STATE(209), + [sym_macro_type_specifier] = STATE(209), [aux_sym_type_definition_repeat1] = STATE(87), [aux_sym_sized_type_specifier_repeat1] = STATE(116), [anon_sym_const] = ACTIONS(25), @@ -8264,7 +8294,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(217), [anon_sym_long] = ACTIONS(217), [anon_sym_short] = ACTIONS(217), - [sym_primitive_type] = ACTIONS(502), + [sym_primitive_type] = ACTIONS(504), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), @@ -8272,16 +8302,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(39), }, [116] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(208), + [aux_sym_sized_type_specifier_repeat1] = STATE(210), [anon_sym_LPAREN] = ACTIONS(106), [anon_sym_RPAREN] = ACTIONS(106), [anon_sym_STAR] = ACTIONS(106), [anon_sym_LBRACK] = ACTIONS(106), - [anon_sym_unsigned] = ACTIONS(504), - [anon_sym_long] = ACTIONS(504), - [anon_sym_short] = ACTIONS(504), + [anon_sym_unsigned] = ACTIONS(506), + [anon_sym_long] = ACTIONS(506), + [anon_sym_short] = ACTIONS(506), [sym_primitive_type] = ACTIONS(112), - [sym_identifier] = ACTIONS(506), + [sym_identifier] = ACTIONS(508), [sym_comment] = ACTIONS(39), }, [117] = { @@ -8289,44 +8319,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pointer_declarator] = STATE(119), [sym_function_declarator] = STATE(119), [sym_array_declarator] = STATE(119), + [sym_type_qualifier] = STATE(211), + [aux_sym_type_definition_repeat1] = STATE(211), [anon_sym_LPAREN] = ACTIONS(90), [anon_sym_STAR] = ACTIONS(221), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), [sym_identifier] = ACTIONS(229), [sym_comment] = ACTIONS(39), }, [118] = { - [sym_parameter_list] = STATE(127), + [sym_parameter_list] = STATE(128), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_RPAREN] = ACTIONS(508), + [anon_sym_RPAREN] = ACTIONS(510), [anon_sym_LBRACK] = ACTIONS(239), [sym_comment] = ACTIONS(39), }, [119] = { - [sym_parameter_list] = STATE(127), + [sym_parameter_list] = STATE(128), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_COMMA] = ACTIONS(510), - [anon_sym_RPAREN] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(510), - [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(512), [anon_sym_LBRACK] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), [sym_comment] = ACTIONS(39), }, [120] = { - [sym__declaration_specifiers] = STATE(212), - [sym_storage_class_specifier] = STATE(214), + [sym__declarator] = STATE(213), + [sym_pointer_declarator] = STATE(213), + [sym_function_declarator] = STATE(213), + [sym_array_declarator] = STATE(213), [sym_type_qualifier] = STATE(214), - [sym__type_specifier] = STATE(213), - [sym_sized_type_specifier] = STATE(213), - [sym_enum_specifier] = STATE(213), - [sym_struct_specifier] = STATE(213), - [sym_union_specifier] = STATE(213), - [sym_parameter_declaration] = STATE(210), - [sym_macro_type_specifier] = STATE(213), - [aux_sym__declaration_specifiers_repeat1] = STATE(214), - [aux_sym_sized_type_specifier_repeat1] = STATE(215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(514), + [aux_sym_type_definition_repeat1] = STATE(214), + [anon_sym_LPAREN] = ACTIONS(90), + [anon_sym_STAR] = ACTIONS(94), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(514), + [sym_comment] = ACTIONS(39), + }, + [121] = { + [sym__declaration_specifiers] = STATE(217), + [sym_storage_class_specifier] = STATE(219), + [sym_type_qualifier] = STATE(219), + [sym__type_specifier] = STATE(218), + [sym_sized_type_specifier] = STATE(218), + [sym_enum_specifier] = STATE(218), + [sym_struct_specifier] = STATE(218), + [sym_union_specifier] = STATE(218), + [sym_parameter_declaration] = STATE(215), + [sym_macro_type_specifier] = STATE(218), + [aux_sym__declaration_specifiers_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(518), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -8336,97 +8388,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(516), - [anon_sym_long] = ACTIONS(516), - [anon_sym_short] = ACTIONS(516), - [sym_primitive_type] = ACTIONS(518), + [anon_sym_unsigned] = ACTIONS(520), + [anon_sym_long] = ACTIONS(520), + [anon_sym_short] = ACTIONS(520), + [sym_primitive_type] = ACTIONS(522), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [121] = { - [sym__declarator] = STATE(217), - [sym_pointer_declarator] = STATE(217), - [sym_function_declarator] = STATE(217), - [sym_array_declarator] = STATE(217), - [sym_init_declarator] = STATE(218), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(520), - [sym_identifier] = ACTIONS(522), - [sym_comment] = ACTIONS(39), - }, [122] = { - [ts_builtin_sym_end] = ACTIONS(524), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(524), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(526), - [sym_preproc_directive] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(524), + [sym__declarator] = STATE(222), + [sym_pointer_declarator] = STATE(222), + [sym_function_declarator] = STATE(222), + [sym_array_declarator] = STATE(222), + [sym_init_declarator] = STATE(223), + [anon_sym_LPAREN] = ACTIONS(90), [anon_sym_STAR] = ACTIONS(524), - [anon_sym_static] = ACTIONS(526), - [anon_sym_auto] = ACTIONS(526), - [anon_sym_register] = ACTIONS(526), - [anon_sym_inline] = ACTIONS(526), - [anon_sym_const] = ACTIONS(526), - [anon_sym_restrict] = ACTIONS(526), - [anon_sym_volatile] = ACTIONS(526), - [anon_sym__Atomic] = ACTIONS(526), - [anon_sym_unsigned] = ACTIONS(526), - [anon_sym_long] = ACTIONS(526), - [anon_sym_short] = ACTIONS(526), - [sym_primitive_type] = ACTIONS(526), - [anon_sym_enum] = ACTIONS(526), - [anon_sym_struct] = ACTIONS(526), - [anon_sym_union] = ACTIONS(526), - [anon_sym_if] = ACTIONS(526), - [anon_sym_else] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_case] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_while] = ACTIONS(526), - [anon_sym_do] = ACTIONS(526), - [anon_sym_for] = ACTIONS(526), - [anon_sym_return] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_DASH_DASH] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(524), - [anon_sym_sizeof] = ACTIONS(526), - [sym_number_literal] = ACTIONS(524), - [sym_char_literal] = ACTIONS(524), - [sym_string_literal] = ACTIONS(524), - [sym_true] = ACTIONS(526), - [sym_false] = ACTIONS(526), - [sym_null] = ACTIONS(526), [sym_identifier] = ACTIONS(526), [sym_comment] = ACTIONS(39), }, [123] = { - [sym_preproc_include] = STATE(248), - [sym_preproc_def] = STATE(248), - [sym_preproc_function_def] = STATE(248), - [sym_preproc_call] = STATE(248), - [sym_preproc_if_in_compound_statement] = STATE(243), - [sym_preproc_ifdef_in_compound_statement] = STATE(244), - [sym_declaration] = STATE(248), - [sym_type_definition] = STATE(248), - [sym__declaration_specifiers] = STATE(245), - [sym_compound_statement] = STATE(248), + [ts_builtin_sym_end] = ACTIONS(528), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(528), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(530), + [sym_preproc_directive] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_typedef] = ACTIONS(530), + [anon_sym_extern] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(528), + [anon_sym_static] = ACTIONS(530), + [anon_sym_auto] = ACTIONS(530), + [anon_sym_register] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(530), + [anon_sym_const] = ACTIONS(530), + [anon_sym_restrict] = ACTIONS(530), + [anon_sym_volatile] = ACTIONS(530), + [anon_sym__Atomic] = ACTIONS(530), + [anon_sym_unsigned] = ACTIONS(530), + [anon_sym_long] = ACTIONS(530), + [anon_sym_short] = ACTIONS(530), + [sym_primitive_type] = ACTIONS(530), + [anon_sym_enum] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(530), + [anon_sym_union] = ACTIONS(530), + [anon_sym_if] = ACTIONS(530), + [anon_sym_else] = ACTIONS(530), + [anon_sym_switch] = ACTIONS(530), + [anon_sym_case] = ACTIONS(530), + [anon_sym_default] = ACTIONS(530), + [anon_sym_while] = ACTIONS(530), + [anon_sym_do] = ACTIONS(530), + [anon_sym_for] = ACTIONS(530), + [anon_sym_return] = ACTIONS(530), + [anon_sym_break] = ACTIONS(530), + [anon_sym_continue] = ACTIONS(530), + [anon_sym_goto] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_TILDE] = ACTIONS(528), + [anon_sym_PLUS] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_DASH_DASH] = ACTIONS(528), + [anon_sym_PLUS_PLUS] = ACTIONS(528), + [anon_sym_sizeof] = ACTIONS(530), + [sym_number_literal] = ACTIONS(528), + [sym_char_literal] = ACTIONS(528), + [sym_string_literal] = ACTIONS(528), + [sym_true] = ACTIONS(530), + [sym_false] = ACTIONS(530), + [sym_null] = ACTIONS(530), + [sym_identifier] = ACTIONS(530), + [sym_comment] = ACTIONS(39), + }, + [124] = { + [sym_preproc_include] = STATE(253), + [sym_preproc_def] = STATE(253), + [sym_preproc_function_def] = STATE(253), + [sym_preproc_call] = STATE(253), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(253), + [sym_type_definition] = STATE(253), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(253), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -8434,55 +8486,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [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(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [sym__empty_declaration] = STATE(248), + [sym_labeled_statement] = STATE(253), + [sym_expression_statement] = STATE(253), + [sym_if_statement] = STATE(253), + [sym_switch_statement] = STATE(253), + [sym_case_statement] = STATE(253), + [sym_while_statement] = STATE(253), + [sym_do_statement] = STATE(253), + [sym_for_statement] = STATE(253), + [sym_return_statement] = STATE(253), + [sym_break_statement] = STATE(253), + [sym_continue_statement] = STATE(253), + [sym_goto_statement] = STATE(253), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym__empty_declaration] = STATE(253), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(248), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(253), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(530), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(532), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(534), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(538), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -8498,68 +8550,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), [sym_comment] = ACTIONS(39), }, - [124] = { - [sym__declaration_specifiers] = STATE(258), - [sym_storage_class_specifier] = STATE(261), - [sym_type_qualifier] = STATE(261), - [sym__type_specifier] = STATE(259), - [sym_sized_type_specifier] = STATE(259), - [sym_enum_specifier] = STATE(259), - [sym_struct_specifier] = STATE(259), - [sym_union_specifier] = STATE(259), - [sym__expression] = STATE(260), - [sym_conditional_expression] = STATE(260), - [sym_assignment_expression] = STATE(260), - [sym_pointer_expression] = STATE(260), - [sym_logical_expression] = STATE(260), - [sym_bitwise_expression] = STATE(260), - [sym_equality_expression] = STATE(260), - [sym_relational_expression] = STATE(260), - [sym_shift_expression] = STATE(260), - [sym_math_expression] = STATE(260), - [sym_cast_expression] = STATE(260), - [sym_sizeof_expression] = STATE(260), - [sym_subscript_expression] = STATE(260), - [sym_call_expression] = STATE(260), - [sym_field_expression] = STATE(260), - [sym_compound_literal_expression] = STATE(260), - [sym_parenthesized_expression] = STATE(260), - [sym_concatenated_string] = STATE(260), - [sym_macro_type_specifier] = STATE(259), - [aux_sym__declaration_specifiers_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(262), - [anon_sym_LPAREN] = ACTIONS(582), + [125] = { + [sym__declaration_specifiers] = STATE(263), + [sym_storage_class_specifier] = STATE(266), + [sym_type_qualifier] = STATE(266), + [sym__type_specifier] = STATE(264), + [sym_sized_type_specifier] = STATE(264), + [sym_enum_specifier] = STATE(264), + [sym_struct_specifier] = STATE(264), + [sym_union_specifier] = STATE(264), + [sym__expression] = STATE(265), + [sym_conditional_expression] = STATE(265), + [sym_assignment_expression] = STATE(265), + [sym_pointer_expression] = STATE(265), + [sym_logical_expression] = STATE(265), + [sym_bitwise_expression] = STATE(265), + [sym_equality_expression] = STATE(265), + [sym_relational_expression] = STATE(265), + [sym_shift_expression] = STATE(265), + [sym_math_expression] = STATE(265), + [sym_cast_expression] = STATE(265), + [sym_sizeof_expression] = STATE(265), + [sym_subscript_expression] = STATE(265), + [sym_call_expression] = STATE(265), + [sym_field_expression] = STATE(265), + [sym_compound_literal_expression] = STATE(265), + [sym_parenthesized_expression] = STATE(265), + [sym_concatenated_string] = STATE(265), + [sym_macro_type_specifier] = STATE(264), + [aux_sym__declaration_specifiers_repeat1] = STATE(266), + [aux_sym_sized_type_specifier_repeat1] = STATE(267), + [anon_sym_LPAREN] = ACTIONS(586), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_RBRACK] = ACTIONS(590), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -8568,123 +8620,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(588), - [anon_sym_long] = ACTIONS(588), - [anon_sym_short] = ACTIONS(588), - [sym_primitive_type] = ACTIONS(590), + [anon_sym_unsigned] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [sym_primitive_type] = ACTIONS(594), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(602), - [sym_char_literal] = ACTIONS(602), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(606), - [sym_false] = ACTIONS(606), - [sym_null] = ACTIONS(606), - [sym_identifier] = ACTIONS(608), - [sym_comment] = ACTIONS(39), - }, - [125] = { - [sym__expression] = STATE(264), - [sym_conditional_expression] = STATE(264), - [sym_assignment_expression] = STATE(264), - [sym_pointer_expression] = STATE(264), - [sym_logical_expression] = STATE(264), - [sym_bitwise_expression] = STATE(264), - [sym_equality_expression] = STATE(264), - [sym_relational_expression] = STATE(264), - [sym_shift_expression] = STATE(264), - [sym_math_expression] = STATE(264), - [sym_cast_expression] = STATE(264), - [sym_sizeof_expression] = STATE(264), - [sym_subscript_expression] = STATE(264), - [sym_call_expression] = STATE(264), - [sym_field_expression] = STATE(264), - [sym_compound_literal_expression] = STATE(264), - [sym_parenthesized_expression] = STATE(264), - [sym_initializer_list] = STATE(265), - [sym_concatenated_string] = STATE(264), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(612), - [sym_char_literal] = ACTIONS(612), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(614), - [sym_false] = ACTIONS(614), - [sym_null] = ACTIONS(614), - [sym_identifier] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(606), + [sym_char_literal] = ACTIONS(606), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(610), + [sym_false] = ACTIONS(610), + [sym_null] = ACTIONS(610), + [sym_identifier] = ACTIONS(612), [sym_comment] = ACTIONS(39), }, [126] = { - [ts_builtin_sym_end] = ACTIONS(616), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(618), - [sym_preproc_directive] = ACTIONS(618), - [anon_sym_typedef] = ACTIONS(618), - [anon_sym_extern] = ACTIONS(618), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_static] = ACTIONS(618), - [anon_sym_auto] = ACTIONS(618), - [anon_sym_register] = ACTIONS(618), - [anon_sym_inline] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_restrict] = ACTIONS(618), - [anon_sym_volatile] = ACTIONS(618), - [anon_sym__Atomic] = ACTIONS(618), - [anon_sym_unsigned] = ACTIONS(618), - [anon_sym_long] = ACTIONS(618), - [anon_sym_short] = ACTIONS(618), - [sym_primitive_type] = ACTIONS(618), - [anon_sym_enum] = ACTIONS(618), - [anon_sym_struct] = ACTIONS(618), - [anon_sym_union] = ACTIONS(618), + [sym__expression] = STATE(269), + [sym_conditional_expression] = STATE(269), + [sym_assignment_expression] = STATE(269), + [sym_pointer_expression] = STATE(269), + [sym_logical_expression] = STATE(269), + [sym_bitwise_expression] = STATE(269), + [sym_equality_expression] = STATE(269), + [sym_relational_expression] = STATE(269), + [sym_shift_expression] = STATE(269), + [sym_math_expression] = STATE(269), + [sym_cast_expression] = STATE(269), + [sym_sizeof_expression] = STATE(269), + [sym_subscript_expression] = STATE(269), + [sym_call_expression] = STATE(269), + [sym_field_expression] = STATE(269), + [sym_compound_literal_expression] = STATE(269), + [sym_parenthesized_expression] = STATE(269), + [sym_initializer_list] = STATE(270), + [sym_concatenated_string] = STATE(269), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(616), + [sym_char_literal] = ACTIONS(616), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(618), + [sym_false] = ACTIONS(618), + [sym_null] = ACTIONS(618), [sym_identifier] = ACTIONS(618), [sym_comment] = ACTIONS(39), }, [127] = { - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(620), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_EQ] = ACTIONS(620), + [ts_builtin_sym_end] = ACTIONS(620), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(622), + [sym_preproc_directive] = ACTIONS(622), + [anon_sym_typedef] = ACTIONS(622), + [anon_sym_extern] = ACTIONS(622), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_static] = ACTIONS(622), + [anon_sym_auto] = ACTIONS(622), + [anon_sym_register] = ACTIONS(622), + [anon_sym_inline] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_restrict] = ACTIONS(622), + [anon_sym_volatile] = ACTIONS(622), + [anon_sym__Atomic] = ACTIONS(622), + [anon_sym_unsigned] = ACTIONS(622), + [anon_sym_long] = ACTIONS(622), + [anon_sym_short] = ACTIONS(622), + [sym_primitive_type] = ACTIONS(622), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_struct] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [sym_identifier] = ACTIONS(622), [sym_comment] = ACTIONS(39), }, [128] = { - [aux_sym_declaration_repeat1] = STATE(267), - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(622), + [anon_sym_LPAREN] = ACTIONS(624), + [anon_sym_COMMA] = ACTIONS(624), + [anon_sym_RPAREN] = ACTIONS(624), + [anon_sym_SEMI] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_EQ] = ACTIONS(624), [sym_comment] = ACTIONS(39), }, [129] = { - [sym_storage_class_specifier] = STATE(129), - [sym_type_qualifier] = STATE(129), - [aux_sym__declaration_specifiers_repeat1] = STATE(129), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_SEMI] = ACTIONS(624), + [aux_sym_declaration_repeat1] = STATE(272), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(626), + [sym_comment] = ACTIONS(39), + }, + [130] = { + [sym_storage_class_specifier] = STATE(130), + [sym_type_qualifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(130), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_SEMI] = ACTIONS(628), [anon_sym_extern] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(624), + [anon_sym_STAR] = ACTIONS(628), [anon_sym_static] = ACTIONS(297), [anon_sym_auto] = ACTIONS(297), [anon_sym_register] = ACTIONS(297), @@ -8696,14 +8748,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(303), [sym_comment] = ACTIONS(39), }, - [130] = { - [sym_storage_class_specifier] = STATE(129), - [sym_type_qualifier] = STATE(129), - [aux_sym__declaration_specifiers_repeat1] = STATE(129), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(626), + [131] = { + [sym_storage_class_specifier] = STATE(130), + [sym_type_qualifier] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(130), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(630), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -8712,87 +8764,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(628), + [sym_identifier] = ACTIONS(632), [sym_comment] = ACTIONS(39), }, - [131] = { - [anon_sym_LF] = ACTIONS(630), + [132] = { + [anon_sym_LF] = ACTIONS(634), [sym_comment] = ACTIONS(47), }, - [132] = { - [aux_sym_preproc_params_repeat1] = STATE(271), - [anon_sym_COMMA] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(634), + [133] = { + [aux_sym_preproc_params_repeat1] = STATE(276), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_RPAREN] = ACTIONS(638), [sym_comment] = ACTIONS(39), }, - [133] = { - [anon_sym_LF] = ACTIONS(636), - [sym_preproc_arg] = ACTIONS(636), + [134] = { + [anon_sym_LF] = ACTIONS(640), + [sym_preproc_arg] = ACTIONS(640), [sym_comment] = ACTIONS(47), }, - [134] = { - [ts_builtin_sym_end] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(640), - [sym_preproc_directive] = ACTIONS(640), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_typedef] = ACTIONS(640), - [anon_sym_extern] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_static] = ACTIONS(640), - [anon_sym_auto] = ACTIONS(640), - [anon_sym_register] = ACTIONS(640), - [anon_sym_inline] = ACTIONS(640), - [anon_sym_const] = ACTIONS(640), - [anon_sym_restrict] = ACTIONS(640), - [anon_sym_volatile] = ACTIONS(640), - [anon_sym__Atomic] = ACTIONS(640), - [anon_sym_unsigned] = ACTIONS(640), - [anon_sym_long] = ACTIONS(640), - [anon_sym_short] = ACTIONS(640), - [sym_primitive_type] = ACTIONS(640), - [anon_sym_enum] = ACTIONS(640), - [anon_sym_struct] = ACTIONS(640), - [anon_sym_union] = ACTIONS(640), - [anon_sym_if] = ACTIONS(640), - [anon_sym_switch] = ACTIONS(640), - [anon_sym_case] = ACTIONS(640), - [anon_sym_default] = ACTIONS(640), - [anon_sym_while] = ACTIONS(640), - [anon_sym_do] = ACTIONS(640), - [anon_sym_for] = ACTIONS(640), - [anon_sym_return] = ACTIONS(640), - [anon_sym_break] = ACTIONS(640), - [anon_sym_continue] = ACTIONS(640), - [anon_sym_goto] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(638), - [anon_sym_sizeof] = ACTIONS(640), - [sym_number_literal] = ACTIONS(638), - [sym_char_literal] = ACTIONS(638), - [sym_string_literal] = ACTIONS(638), - [sym_true] = ACTIONS(640), - [sym_false] = ACTIONS(640), - [sym_null] = ACTIONS(640), - [sym_identifier] = ACTIONS(640), + [135] = { + [ts_builtin_sym_end] = ACTIONS(642), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(642), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(644), + [sym_preproc_directive] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_typedef] = ACTIONS(644), + [anon_sym_extern] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_static] = ACTIONS(644), + [anon_sym_auto] = ACTIONS(644), + [anon_sym_register] = ACTIONS(644), + [anon_sym_inline] = ACTIONS(644), + [anon_sym_const] = ACTIONS(644), + [anon_sym_restrict] = ACTIONS(644), + [anon_sym_volatile] = ACTIONS(644), + [anon_sym__Atomic] = ACTIONS(644), + [anon_sym_unsigned] = ACTIONS(644), + [anon_sym_long] = ACTIONS(644), + [anon_sym_short] = ACTIONS(644), + [sym_primitive_type] = ACTIONS(644), + [anon_sym_enum] = ACTIONS(644), + [anon_sym_struct] = ACTIONS(644), + [anon_sym_union] = ACTIONS(644), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(644), + [anon_sym_case] = ACTIONS(644), + [anon_sym_default] = ACTIONS(644), + [anon_sym_while] = ACTIONS(644), + [anon_sym_do] = ACTIONS(644), + [anon_sym_for] = ACTIONS(644), + [anon_sym_return] = ACTIONS(644), + [anon_sym_break] = ACTIONS(644), + [anon_sym_continue] = ACTIONS(644), + [anon_sym_goto] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(644), + [anon_sym_DASH_DASH] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(642), + [anon_sym_sizeof] = ACTIONS(644), + [sym_number_literal] = ACTIONS(642), + [sym_char_literal] = ACTIONS(642), + [sym_string_literal] = ACTIONS(642), + [sym_true] = ACTIONS(644), + [sym_false] = ACTIONS(644), + [sym_null] = ACTIONS(644), + [sym_identifier] = ACTIONS(644), [sym_comment] = ACTIONS(39), }, - [135] = { - [anon_sym_LF] = ACTIONS(642), + [136] = { + [anon_sym_LF] = ACTIONS(646), [sym_comment] = ACTIONS(47), }, - [136] = { + [137] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(119), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(117), @@ -8851,27 +8903,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(119), [sym_comment] = ACTIONS(39), }, - [137] = { - [sym_preproc_params] = STATE(275), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(644), - [anon_sym_LF] = ACTIONS(646), + [138] = { + [sym_preproc_params] = STATE(280), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(648), + [anon_sym_LF] = ACTIONS(650), [anon_sym_LPAREN] = ACTIONS(125), [sym_comment] = ACTIONS(47), }, - [138] = { - [sym_preproc_include] = STATE(278), - [sym_preproc_def] = STATE(278), - [sym_preproc_function_def] = STATE(278), - [sym_preproc_call] = STATE(278), - [sym_preproc_if] = STATE(278), - [sym_preproc_ifdef] = STATE(278), - [sym_preproc_else] = STATE(277), - [sym_preproc_elif] = STATE(277), - [sym_function_definition] = STATE(278), - [sym_declaration] = STATE(278), - [sym_type_definition] = STATE(278), + [139] = { + [sym_preproc_include] = STATE(283), + [sym_preproc_def] = STATE(283), + [sym_preproc_function_def] = STATE(283), + [sym_preproc_call] = STATE(283), + [sym_preproc_if] = STATE(283), + [sym_preproc_ifdef] = STATE(283), + [sym_preproc_else] = STATE(282), + [sym_preproc_elif] = STATE(282), + [sym_function_definition] = STATE(283), + [sym_declaration] = STATE(283), + [sym_type_definition] = STATE(283), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(278), + [sym_linkage_specification] = STATE(283), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -8879,15 +8931,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(278), + [sym__empty_declaration] = STATE(283), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(278), + [aux_sym_translation_unit_repeat1] = STATE(283), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(652), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -8913,20 +8965,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [139] = { - [sym_preproc_include] = STATE(281), - [sym_preproc_def] = STATE(281), - [sym_preproc_function_def] = STATE(281), - [sym_preproc_call] = STATE(281), - [sym_preproc_if] = STATE(281), - [sym_preproc_ifdef] = STATE(281), - [sym_preproc_else] = STATE(280), - [sym_preproc_elif] = STATE(280), - [sym_function_definition] = STATE(281), - [sym_declaration] = STATE(281), - [sym_type_definition] = STATE(281), + [140] = { + [sym_preproc_include] = STATE(286), + [sym_preproc_def] = STATE(286), + [sym_preproc_function_def] = STATE(286), + [sym_preproc_call] = STATE(286), + [sym_preproc_if] = STATE(286), + [sym_preproc_ifdef] = STATE(286), + [sym_preproc_else] = STATE(285), + [sym_preproc_elif] = STATE(285), + [sym_function_definition] = STATE(286), + [sym_declaration] = STATE(286), + [sym_type_definition] = STATE(286), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(281), + [sym_linkage_specification] = STATE(286), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -8934,15 +8986,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(281), + [sym__empty_declaration] = STATE(286), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(281), + [aux_sym_translation_unit_repeat1] = STATE(286), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(654), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -8968,20 +9020,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [140] = { - [sym_preproc_include] = STATE(284), - [sym_preproc_def] = STATE(284), - [sym_preproc_function_def] = STATE(284), - [sym_preproc_call] = STATE(284), - [sym_preproc_if] = STATE(284), - [sym_preproc_ifdef] = STATE(284), - [sym_preproc_else] = STATE(283), - [sym_preproc_elif] = STATE(283), - [sym_function_definition] = STATE(284), - [sym_declaration] = STATE(284), - [sym_type_definition] = STATE(284), + [141] = { + [sym_preproc_include] = STATE(289), + [sym_preproc_def] = STATE(289), + [sym_preproc_function_def] = STATE(289), + [sym_preproc_call] = STATE(289), + [sym_preproc_if] = STATE(289), + [sym_preproc_ifdef] = STATE(289), + [sym_preproc_else] = STATE(288), + [sym_preproc_elif] = STATE(288), + [sym_function_definition] = STATE(289), + [sym_declaration] = STATE(289), + [sym_type_definition] = STATE(289), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(284), + [sym_linkage_specification] = STATE(289), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -8989,15 +9041,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(284), + [sym__empty_declaration] = STATE(289), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(284), + [aux_sym_translation_unit_repeat1] = STATE(289), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(652), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(656), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -9023,41 +9075,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [141] = { - [sym_string_literal] = ACTIONS(654), - [sym_system_lib_string] = ACTIONS(654), - [sym_comment] = ACTIONS(39), - }, [142] = { - [sym_identifier] = ACTIONS(656), + [sym_string_literal] = ACTIONS(658), + [sym_system_lib_string] = ACTIONS(658), [sym_comment] = ACTIONS(39), }, [143] = { - [sym_preproc_arg] = ACTIONS(658), - [sym_comment] = ACTIONS(47), - }, - [144] = { [sym_identifier] = ACTIONS(660), [sym_comment] = ACTIONS(39), }, + [144] = { + [sym_preproc_arg] = ACTIONS(662), + [sym_comment] = ACTIONS(47), + }, [145] = { - [sym_identifier] = ACTIONS(662), + [sym_identifier] = ACTIONS(664), [sym_comment] = ACTIONS(39), }, [146] = { - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(664), - [anon_sym_LF] = ACTIONS(666), - [sym_comment] = ACTIONS(47), + [sym_identifier] = ACTIONS(666), + [sym_comment] = ACTIONS(39), }, [147] = { - [sym_type_qualifier] = STATE(293), - [sym__type_specifier] = STATE(292), - [sym_sized_type_specifier] = STATE(292), - [sym_enum_specifier] = STATE(292), - [sym_struct_specifier] = STATE(292), - [sym_union_specifier] = STATE(292), - [sym_macro_type_specifier] = STATE(292), - [aux_sym_type_definition_repeat1] = STATE(293), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(668), + [anon_sym_LF] = ACTIONS(670), + [sym_comment] = ACTIONS(47), + }, + [148] = { + [sym_type_qualifier] = STATE(298), + [sym__type_specifier] = STATE(297), + [sym_sized_type_specifier] = STATE(297), + [sym_enum_specifier] = STATE(297), + [sym_struct_specifier] = STATE(297), + [sym_union_specifier] = STATE(297), + [sym_macro_type_specifier] = STATE(297), + [aux_sym_type_definition_repeat1] = STATE(298), [aux_sym_sized_type_specifier_repeat1] = STATE(31), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), @@ -9066,14 +9118,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(668), + [sym_primitive_type] = ACTIONS(672), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [148] = { + [149] = { [anon_sym_extern] = ACTIONS(61), [anon_sym_static] = ACTIONS(61), [anon_sym_auto] = ACTIONS(61), @@ -9090,34 +9142,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(61), [anon_sym_struct] = ACTIONS(61), [anon_sym_union] = ACTIONS(61), - [sym_string_literal] = ACTIONS(670), + [sym_string_literal] = ACTIONS(674), [sym_identifier] = ACTIONS(61), [sym_comment] = ACTIONS(39), }, - [149] = { - [sym__declarator] = STATE(296), - [sym_pointer_declarator] = STATE(296), - [sym_function_declarator] = STATE(296), - [sym_array_declarator] = STATE(296), - [sym_init_declarator] = STATE(297), + [150] = { + [sym__declarator] = STATE(301), + [sym_pointer_declarator] = STATE(301), + [sym_function_declarator] = STATE(301), + [sym_array_declarator] = STATE(301), + [sym_init_declarator] = STATE(302), [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_SEMI] = ACTIONS(676), [anon_sym_STAR] = ACTIONS(94), - [sym_identifier] = ACTIONS(674), + [sym_identifier] = ACTIONS(678), [sym_comment] = ACTIONS(39), }, - [150] = { - [sym_preproc_include] = STATE(298), - [sym_preproc_def] = STATE(298), - [sym_preproc_function_def] = STATE(298), - [sym_preproc_call] = STATE(298), - [sym_preproc_if] = STATE(298), - [sym_preproc_ifdef] = STATE(298), - [sym_function_definition] = STATE(298), - [sym_declaration] = STATE(298), - [sym_type_definition] = STATE(298), - [sym__declaration_specifiers] = STATE(149), - [sym_linkage_specification] = STATE(298), + [151] = { + [sym_preproc_include] = STATE(303), + [sym_preproc_def] = STATE(303), + [sym_preproc_function_def] = STATE(303), + [sym_preproc_call] = STATE(303), + [sym_preproc_if] = STATE(303), + [sym_preproc_ifdef] = STATE(303), + [sym_function_definition] = STATE(303), + [sym_declaration] = STATE(303), + [sym_type_definition] = STATE(303), + [sym__declaration_specifiers] = STATE(150), + [sym_linkage_specification] = STATE(303), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -9125,15 +9177,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(298), + [sym__empty_declaration] = STATE(303), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(298), + [aux_sym_translation_unit_repeat1] = STATE(303), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(348), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(350), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(352), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(680), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(356), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(358), [sym_preproc_directive] = ACTIONS(360), @@ -9157,20 +9209,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [151] = { - [sym_preproc_include] = STATE(300), - [sym_preproc_def] = STATE(300), - [sym_preproc_function_def] = STATE(300), - [sym_preproc_call] = STATE(300), - [sym_preproc_if] = STATE(300), - [sym_preproc_ifdef] = STATE(300), - [sym_preproc_else] = STATE(299), - [sym_preproc_elif] = STATE(299), - [sym_function_definition] = STATE(300), - [sym_declaration] = STATE(300), - [sym_type_definition] = STATE(300), + [152] = { + [sym_preproc_include] = STATE(305), + [sym_preproc_def] = STATE(305), + [sym_preproc_function_def] = STATE(305), + [sym_preproc_call] = STATE(305), + [sym_preproc_if] = STATE(305), + [sym_preproc_ifdef] = STATE(305), + [sym_preproc_else] = STATE(304), + [sym_preproc_elif] = STATE(304), + [sym_function_definition] = STATE(305), + [sym_declaration] = STATE(305), + [sym_type_definition] = STATE(305), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(300), + [sym_linkage_specification] = STATE(305), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -9178,15 +9230,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(300), + [sym__empty_declaration] = STATE(305), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(300), + [aux_sym_translation_unit_repeat1] = STATE(305), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(682), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -9212,11 +9264,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [152] = { - [sym_preproc_arg] = ACTIONS(680), + [153] = { + [sym_preproc_arg] = ACTIONS(684), [sym_comment] = ACTIONS(47), }, - [153] = { + [154] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(157), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(155), @@ -9275,8 +9327,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(157), [sym_comment] = ACTIONS(39), }, - [154] = { - [sym__type_declarator] = STATE(302), + [155] = { + [sym__type_declarator] = STATE(307), [sym_pointer_type_declarator] = STATE(83), [sym_function_type_declarator] = STATE(84), [sym_array_type_declarator] = STATE(85), @@ -9285,14 +9337,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(163), [sym_comment] = ACTIONS(39), }, - [155] = { + [156] = { [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(303), - [sym_sized_type_specifier] = STATE(303), - [sym_enum_specifier] = STATE(303), - [sym_struct_specifier] = STATE(303), - [sym_union_specifier] = STATE(303), - [sym_macro_type_specifier] = STATE(303), + [sym__type_specifier] = STATE(308), + [sym_sized_type_specifier] = STATE(308), + [sym_enum_specifier] = STATE(308), + [sym_struct_specifier] = STATE(308), + [sym_union_specifier] = STATE(308), + [sym_macro_type_specifier] = STATE(308), [aux_sym_type_definition_repeat1] = STATE(87), [aux_sym_sized_type_specifier_repeat1] = STATE(31), [anon_sym_const] = ACTIONS(25), @@ -9302,18 +9354,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(682), + [sym_primitive_type] = ACTIONS(686), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [156] = { - [sym_function_definition] = STATE(305), - [sym_declaration] = STATE(305), - [sym__declaration_specifiers] = STATE(306), - [sym_declaration_list] = STATE(305), + [157] = { + [sym_function_definition] = STATE(310), + [sym_declaration] = STATE(310), + [sym__declaration_specifiers] = STATE(311), + [sym_declaration_list] = STATE(310), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -9325,7 +9377,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_LBRACE] = ACTIONS(688), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9344,36 +9396,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [157] = { - [ts_builtin_sym_end] = ACTIONS(686), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(688), - [sym_preproc_directive] = ACTIONS(688), - [anon_sym_typedef] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(688), - [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_static] = ACTIONS(688), - [anon_sym_auto] = ACTIONS(688), - [anon_sym_register] = ACTIONS(688), - [anon_sym_inline] = ACTIONS(688), - [anon_sym_const] = ACTIONS(688), - [anon_sym_restrict] = ACTIONS(688), - [anon_sym_volatile] = ACTIONS(688), - [anon_sym__Atomic] = ACTIONS(688), - [anon_sym_unsigned] = ACTIONS(688), - [anon_sym_long] = ACTIONS(688), - [anon_sym_short] = ACTIONS(688), - [sym_primitive_type] = ACTIONS(688), - [anon_sym_enum] = ACTIONS(688), - [anon_sym_struct] = ACTIONS(688), - [anon_sym_union] = ACTIONS(688), - [sym_identifier] = ACTIONS(688), + [158] = { + [ts_builtin_sym_end] = ACTIONS(690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(692), + [sym_preproc_directive] = ACTIONS(692), + [anon_sym_typedef] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_static] = ACTIONS(692), + [anon_sym_auto] = ACTIONS(692), + [anon_sym_register] = ACTIONS(692), + [anon_sym_inline] = ACTIONS(692), + [anon_sym_const] = ACTIONS(692), + [anon_sym_restrict] = ACTIONS(692), + [anon_sym_volatile] = ACTIONS(692), + [anon_sym__Atomic] = ACTIONS(692), + [anon_sym_unsigned] = ACTIONS(692), + [anon_sym_long] = ACTIONS(692), + [anon_sym_short] = ACTIONS(692), + [sym_primitive_type] = ACTIONS(692), + [anon_sym_enum] = ACTIONS(692), + [anon_sym_struct] = ACTIONS(692), + [anon_sym_union] = ACTIONS(692), + [sym_identifier] = ACTIONS(692), [sym_comment] = ACTIONS(39), }, - [158] = { + [159] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(227), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(227), [anon_sym_LPAREN] = ACTIONS(225), @@ -9432,40 +9484,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(227), [sym_comment] = ACTIONS(39), }, - [159] = { - [sym_compound_statement] = STATE(309), - [sym_parameter_list] = STATE(127), - [aux_sym_declaration_repeat1] = STATE(310), + [160] = { + [sym_compound_statement] = STATE(314), + [sym_parameter_list] = STATE(128), + [aux_sym_declaration_repeat1] = STATE(315), [anon_sym_LPAREN] = ACTIONS(231), [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_EQ] = ACTIONS(241), [sym_comment] = ACTIONS(39), }, - [160] = { - [aux_sym_declaration_repeat1] = STATE(310), + [161] = { + [aux_sym_declaration_repeat1] = STATE(315), [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(694), [sym_comment] = ACTIONS(39), }, - [161] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(694), + [162] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(698), [sym_comment] = ACTIONS(39), }, - [162] = { - [sym_preproc_include] = STATE(162), - [sym_preproc_def] = STATE(162), - [sym_preproc_function_def] = STATE(162), - [sym_preproc_call] = STATE(162), - [sym_preproc_if] = STATE(162), - [sym_preproc_ifdef] = STATE(162), - [sym_function_definition] = STATE(162), - [sym_declaration] = STATE(162), - [sym_type_definition] = STATE(162), + [163] = { + [sym_preproc_include] = STATE(163), + [sym_preproc_def] = STATE(163), + [sym_preproc_function_def] = STATE(163), + [sym_preproc_call] = STATE(163), + [sym_preproc_if] = STATE(163), + [sym_preproc_ifdef] = STATE(163), + [sym_function_definition] = STATE(163), + [sym_declaration] = STATE(163), + [sym_type_definition] = STATE(163), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(162), + [sym_linkage_specification] = STATE(163), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -9473,22 +9525,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(162), + [sym__empty_declaration] = STATE(163), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(162), + [aux_sym_translation_unit_repeat1] = STATE(163), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(699), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(702), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(705), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(707), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(710), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(705), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(705), - [sym_preproc_directive] = ACTIONS(713), - [anon_sym_typedef] = ACTIONS(716), - [anon_sym_extern] = ACTIONS(719), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(700), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(706), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(709), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(711), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(714), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(709), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(709), + [sym_preproc_directive] = ACTIONS(717), + [anon_sym_typedef] = ACTIONS(720), + [anon_sym_extern] = ACTIONS(723), [anon_sym_static] = ACTIONS(273), [anon_sym_auto] = ACTIONS(273), [anon_sym_register] = ACTIONS(273), @@ -9507,248 +9559,270 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(294), [sym_comment] = ACTIONS(39), }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(722), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(724), - [sym_preproc_directive] = ACTIONS(724), - [anon_sym_typedef] = ACTIONS(724), - [anon_sym_extern] = ACTIONS(724), - [anon_sym_RBRACE] = ACTIONS(722), - [anon_sym_static] = ACTIONS(724), - [anon_sym_auto] = ACTIONS(724), - [anon_sym_register] = ACTIONS(724), - [anon_sym_inline] = ACTIONS(724), - [anon_sym_const] = ACTIONS(724), - [anon_sym_restrict] = ACTIONS(724), - [anon_sym_volatile] = ACTIONS(724), - [anon_sym__Atomic] = ACTIONS(724), - [anon_sym_unsigned] = ACTIONS(724), - [anon_sym_long] = ACTIONS(724), - [anon_sym_short] = ACTIONS(724), - [sym_primitive_type] = ACTIONS(724), - [anon_sym_enum] = ACTIONS(724), - [anon_sym_struct] = ACTIONS(724), - [anon_sym_union] = ACTIONS(724), - [sym_identifier] = ACTIONS(724), - [sym_comment] = ACTIONS(39), - }, [164] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(726), + [ts_builtin_sym_end] = ACTIONS(726), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(728), + [sym_preproc_directive] = ACTIONS(728), + [anon_sym_typedef] = ACTIONS(728), + [anon_sym_extern] = ACTIONS(728), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_static] = ACTIONS(728), + [anon_sym_auto] = ACTIONS(728), + [anon_sym_register] = ACTIONS(728), + [anon_sym_inline] = ACTIONS(728), + [anon_sym_const] = ACTIONS(728), + [anon_sym_restrict] = ACTIONS(728), + [anon_sym_volatile] = ACTIONS(728), + [anon_sym__Atomic] = ACTIONS(728), + [anon_sym_unsigned] = ACTIONS(728), + [anon_sym_long] = ACTIONS(728), + [anon_sym_short] = ACTIONS(728), + [sym_primitive_type] = ACTIONS(728), + [anon_sym_enum] = ACTIONS(728), + [anon_sym_struct] = ACTIONS(728), + [anon_sym_union] = ACTIONS(728), + [sym_identifier] = ACTIONS(728), [sym_comment] = ACTIONS(39), }, [165] = { - [ts_builtin_sym_end] = ACTIONS(728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(730), - [sym_preproc_directive] = ACTIONS(730), - [anon_sym_typedef] = ACTIONS(730), - [anon_sym_extern] = ACTIONS(730), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_static] = ACTIONS(730), - [anon_sym_auto] = ACTIONS(730), - [anon_sym_register] = ACTIONS(730), - [anon_sym_inline] = ACTIONS(730), - [anon_sym_const] = ACTIONS(730), - [anon_sym_restrict] = ACTIONS(730), - [anon_sym_volatile] = ACTIONS(730), - [anon_sym__Atomic] = ACTIONS(730), - [anon_sym_unsigned] = ACTIONS(730), - [anon_sym_long] = ACTIONS(730), - [anon_sym_short] = ACTIONS(730), - [sym_primitive_type] = ACTIONS(730), - [anon_sym_enum] = ACTIONS(730), - [anon_sym_struct] = ACTIONS(730), - [anon_sym_union] = ACTIONS(730), - [sym_identifier] = ACTIONS(730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(730), [sym_comment] = ACTIONS(39), }, [166] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(732), + [ts_builtin_sym_end] = ACTIONS(732), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(734), + [sym_preproc_directive] = ACTIONS(734), + [anon_sym_typedef] = ACTIONS(734), + [anon_sym_extern] = ACTIONS(734), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_static] = ACTIONS(734), + [anon_sym_auto] = ACTIONS(734), + [anon_sym_register] = ACTIONS(734), + [anon_sym_inline] = ACTIONS(734), + [anon_sym_const] = ACTIONS(734), + [anon_sym_restrict] = ACTIONS(734), + [anon_sym_volatile] = ACTIONS(734), + [anon_sym__Atomic] = ACTIONS(734), + [anon_sym_unsigned] = ACTIONS(734), + [anon_sym_long] = ACTIONS(734), + [anon_sym_short] = ACTIONS(734), + [sym_primitive_type] = ACTIONS(734), + [anon_sym_enum] = ACTIONS(734), + [anon_sym_struct] = ACTIONS(734), + [anon_sym_union] = ACTIONS(734), + [sym_identifier] = ACTIONS(734), [sym_comment] = ACTIONS(39), }, [167] = { - [ts_builtin_sym_end] = ACTIONS(734), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(736), - [anon_sym_LPAREN] = ACTIONS(734), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(736), - [sym_preproc_directive] = ACTIONS(736), - [anon_sym_SEMI] = ACTIONS(734), - [anon_sym_typedef] = ACTIONS(736), - [anon_sym_extern] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_STAR] = ACTIONS(734), - [anon_sym_static] = ACTIONS(736), - [anon_sym_auto] = ACTIONS(736), - [anon_sym_register] = ACTIONS(736), - [anon_sym_inline] = ACTIONS(736), - [anon_sym_const] = ACTIONS(736), - [anon_sym_restrict] = ACTIONS(736), - [anon_sym_volatile] = ACTIONS(736), - [anon_sym__Atomic] = ACTIONS(736), - [anon_sym_unsigned] = ACTIONS(736), - [anon_sym_long] = ACTIONS(736), - [anon_sym_short] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(736), - [anon_sym_enum] = ACTIONS(736), - [anon_sym_struct] = ACTIONS(736), - [anon_sym_union] = ACTIONS(736), - [anon_sym_if] = ACTIONS(736), - [anon_sym_switch] = ACTIONS(736), - [anon_sym_case] = ACTIONS(736), - [anon_sym_default] = ACTIONS(736), - [anon_sym_while] = ACTIONS(736), - [anon_sym_do] = ACTIONS(736), - [anon_sym_for] = ACTIONS(736), - [anon_sym_return] = ACTIONS(736), - [anon_sym_break] = ACTIONS(736), - [anon_sym_continue] = ACTIONS(736), - [anon_sym_goto] = ACTIONS(736), - [anon_sym_AMP] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_TILDE] = ACTIONS(734), - [anon_sym_PLUS] = ACTIONS(736), - [anon_sym_DASH] = ACTIONS(736), - [anon_sym_DASH_DASH] = ACTIONS(734), - [anon_sym_PLUS_PLUS] = ACTIONS(734), - [anon_sym_sizeof] = ACTIONS(736), - [sym_number_literal] = ACTIONS(734), - [sym_char_literal] = ACTIONS(734), - [sym_string_literal] = ACTIONS(734), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_null] = ACTIONS(736), - [sym_identifier] = ACTIONS(736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(736), [sym_comment] = ACTIONS(39), }, [168] = { - [sym__type_declarator] = STATE(170), + [ts_builtin_sym_end] = ACTIONS(738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(740), + [sym_preproc_directive] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_typedef] = ACTIONS(740), + [anon_sym_extern] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_static] = ACTIONS(740), + [anon_sym_auto] = ACTIONS(740), + [anon_sym_register] = ACTIONS(740), + [anon_sym_inline] = ACTIONS(740), + [anon_sym_const] = ACTIONS(740), + [anon_sym_restrict] = ACTIONS(740), + [anon_sym_volatile] = ACTIONS(740), + [anon_sym__Atomic] = ACTIONS(740), + [anon_sym_unsigned] = ACTIONS(740), + [anon_sym_long] = ACTIONS(740), + [anon_sym_short] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(740), + [anon_sym_enum] = ACTIONS(740), + [anon_sym_struct] = ACTIONS(740), + [anon_sym_union] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_switch] = ACTIONS(740), + [anon_sym_case] = ACTIONS(740), + [anon_sym_default] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_do] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_goto] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(738), + [anon_sym_PLUS_PLUS] = ACTIONS(738), + [anon_sym_sizeof] = ACTIONS(740), + [sym_number_literal] = ACTIONS(738), + [sym_char_literal] = ACTIONS(738), + [sym_string_literal] = ACTIONS(738), + [sym_true] = ACTIONS(740), + [sym_false] = ACTIONS(740), + [sym_null] = ACTIONS(740), + [sym_identifier] = ACTIONS(740), + [sym_comment] = ACTIONS(39), + }, + [169] = { + [sym__type_declarator] = STATE(171), [sym_pointer_type_declarator] = STATE(83), [sym_function_type_declarator] = STATE(84), [sym_array_type_declarator] = STATE(85), + [sym_type_qualifier] = STATE(319), + [aux_sym_type_definition_repeat1] = STATE(319), [anon_sym_LPAREN] = ACTIONS(159), [anon_sym_STAR] = ACTIONS(402), - [sym_identifier] = ACTIONS(163), - [sym_comment] = ACTIONS(39), - }, - [169] = { - [sym_parameter_list] = STATE(173), - [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(408), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(404), [sym_comment] = ACTIONS(39), }, [170] = { - [sym_parameter_list] = STATE(173), + [sym_parameter_list] = STATE(175), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(408), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(410), [sym_comment] = ACTIONS(39), }, [171] = { - [ts_builtin_sym_end] = ACTIONS(742), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(742), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(744), - [sym_preproc_directive] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_typedef] = ACTIONS(744), - [anon_sym_extern] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_static] = ACTIONS(744), - [anon_sym_auto] = ACTIONS(744), - [anon_sym_register] = ACTIONS(744), - [anon_sym_inline] = ACTIONS(744), - [anon_sym_const] = ACTIONS(744), - [anon_sym_restrict] = ACTIONS(744), - [anon_sym_volatile] = ACTIONS(744), - [anon_sym__Atomic] = ACTIONS(744), - [anon_sym_unsigned] = ACTIONS(744), - [anon_sym_long] = ACTIONS(744), - [anon_sym_short] = ACTIONS(744), - [sym_primitive_type] = ACTIONS(744), - [anon_sym_enum] = ACTIONS(744), - [anon_sym_struct] = ACTIONS(744), - [anon_sym_union] = ACTIONS(744), - [anon_sym_if] = ACTIONS(744), - [anon_sym_else] = ACTIONS(744), - [anon_sym_switch] = ACTIONS(744), - [anon_sym_case] = ACTIONS(744), - [anon_sym_default] = ACTIONS(744), - [anon_sym_while] = ACTIONS(744), - [anon_sym_do] = ACTIONS(744), - [anon_sym_for] = ACTIONS(744), - [anon_sym_return] = ACTIONS(744), - [anon_sym_break] = ACTIONS(744), - [anon_sym_continue] = ACTIONS(744), - [anon_sym_goto] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(742), - [anon_sym_PLUS_PLUS] = ACTIONS(742), - [anon_sym_sizeof] = ACTIONS(744), - [sym_number_literal] = ACTIONS(742), - [sym_char_literal] = ACTIONS(742), - [sym_string_literal] = ACTIONS(742), - [sym_true] = ACTIONS(744), - [sym_false] = ACTIONS(744), - [sym_null] = ACTIONS(744), - [sym_identifier] = ACTIONS(744), + [sym_parameter_list] = STATE(175), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(410), [sym_comment] = ACTIONS(39), }, [172] = { - [sym__declaration_specifiers] = STATE(316), - [sym_storage_class_specifier] = STATE(261), - [sym_type_qualifier] = STATE(261), - [sym__type_specifier] = STATE(259), - [sym_sized_type_specifier] = STATE(259), - [sym_enum_specifier] = STATE(259), - [sym_struct_specifier] = STATE(259), - [sym_union_specifier] = STATE(259), - [sym__expression] = STATE(317), - [sym_conditional_expression] = STATE(317), - [sym_assignment_expression] = STATE(317), - [sym_pointer_expression] = STATE(317), - [sym_logical_expression] = STATE(317), - [sym_bitwise_expression] = STATE(317), - [sym_equality_expression] = STATE(317), - [sym_relational_expression] = STATE(317), - [sym_shift_expression] = STATE(317), - [sym_math_expression] = STATE(317), - [sym_cast_expression] = STATE(317), - [sym_sizeof_expression] = STATE(317), - [sym_subscript_expression] = STATE(317), - [sym_call_expression] = STATE(317), - [sym_field_expression] = STATE(317), - [sym_compound_literal_expression] = STATE(317), - [sym_parenthesized_expression] = STATE(317), - [sym_concatenated_string] = STATE(317), - [sym_macro_type_specifier] = STATE(259), - [aux_sym__declaration_specifiers_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(262), - [anon_sym_LPAREN] = ACTIONS(582), + [sym__type_declarator] = STATE(321), + [sym_pointer_type_declarator] = STATE(83), + [sym_function_type_declarator] = STATE(84), + [sym_array_type_declarator] = STATE(85), + [sym_type_qualifier] = STATE(214), + [aux_sym_type_definition_repeat1] = STATE(214), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(161), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(404), + [sym_comment] = ACTIONS(39), + }, + [173] = { + [ts_builtin_sym_end] = ACTIONS(746), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(746), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(748), + [sym_preproc_directive] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_typedef] = ACTIONS(748), + [anon_sym_extern] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_static] = ACTIONS(748), + [anon_sym_auto] = ACTIONS(748), + [anon_sym_register] = ACTIONS(748), + [anon_sym_inline] = ACTIONS(748), + [anon_sym_const] = ACTIONS(748), + [anon_sym_restrict] = ACTIONS(748), + [anon_sym_volatile] = ACTIONS(748), + [anon_sym__Atomic] = ACTIONS(748), + [anon_sym_unsigned] = ACTIONS(748), + [anon_sym_long] = ACTIONS(748), + [anon_sym_short] = ACTIONS(748), + [sym_primitive_type] = ACTIONS(748), + [anon_sym_enum] = ACTIONS(748), + [anon_sym_struct] = ACTIONS(748), + [anon_sym_union] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_else] = ACTIONS(748), + [anon_sym_switch] = ACTIONS(748), + [anon_sym_case] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_goto] = ACTIONS(748), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(746), + [anon_sym_sizeof] = ACTIONS(748), + [sym_number_literal] = ACTIONS(746), + [sym_char_literal] = ACTIONS(746), + [sym_string_literal] = ACTIONS(746), + [sym_true] = ACTIONS(748), + [sym_false] = ACTIONS(748), + [sym_null] = ACTIONS(748), + [sym_identifier] = ACTIONS(748), + [sym_comment] = ACTIONS(39), + }, + [174] = { + [sym__declaration_specifiers] = STATE(323), + [sym_storage_class_specifier] = STATE(266), + [sym_type_qualifier] = STATE(266), + [sym__type_specifier] = STATE(264), + [sym_sized_type_specifier] = STATE(264), + [sym_enum_specifier] = STATE(264), + [sym_struct_specifier] = STATE(264), + [sym_union_specifier] = STATE(264), + [sym__expression] = STATE(324), + [sym_conditional_expression] = STATE(324), + [sym_assignment_expression] = STATE(324), + [sym_pointer_expression] = STATE(324), + [sym_logical_expression] = STATE(324), + [sym_bitwise_expression] = STATE(324), + [sym_equality_expression] = STATE(324), + [sym_relational_expression] = STATE(324), + [sym_shift_expression] = STATE(324), + [sym_math_expression] = STATE(324), + [sym_cast_expression] = STATE(324), + [sym_sizeof_expression] = STATE(324), + [sym_subscript_expression] = STATE(324), + [sym_call_expression] = STATE(324), + [sym_field_expression] = STATE(324), + [sym_compound_literal_expression] = STATE(324), + [sym_parenthesized_expression] = STATE(324), + [sym_concatenated_string] = STATE(324), + [sym_macro_type_specifier] = STATE(264), + [aux_sym__declaration_specifiers_repeat1] = STATE(266), + [aux_sym_sized_type_specifier_repeat1] = STATE(267), + [anon_sym_LPAREN] = ACTIONS(586), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_RBRACK] = ACTIONS(750), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9757,85 +9831,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(588), - [anon_sym_long] = ACTIONS(588), - [anon_sym_short] = ACTIONS(588), - [sym_primitive_type] = ACTIONS(590), + [anon_sym_unsigned] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [sym_primitive_type] = ACTIONS(594), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(748), - [sym_char_literal] = ACTIONS(748), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(750), - [sym_false] = ACTIONS(750), - [sym_null] = ACTIONS(750), - [sym_identifier] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(752), + [sym_char_literal] = ACTIONS(752), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(754), + [sym_false] = ACTIONS(754), + [sym_null] = ACTIONS(754), + [sym_identifier] = ACTIONS(612), [sym_comment] = ACTIONS(39), }, - [173] = { - [anon_sym_LPAREN] = ACTIONS(752), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_SEMI] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(752), + [175] = { + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_SEMI] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), [sym_comment] = ACTIONS(39), }, - [174] = { - [sym_parameter_list] = STATE(173), + [176] = { + [sym_parameter_list] = STATE(175), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_SEMI] = ACTIONS(754), - [anon_sym_LBRACK] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(410), [sym_comment] = ACTIONS(39), }, - [175] = { - [ts_builtin_sym_end] = ACTIONS(756), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(758), - [sym_preproc_directive] = ACTIONS(758), - [anon_sym_typedef] = ACTIONS(758), - [anon_sym_extern] = ACTIONS(758), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_static] = ACTIONS(758), - [anon_sym_auto] = ACTIONS(758), - [anon_sym_register] = ACTIONS(758), - [anon_sym_inline] = ACTIONS(758), - [anon_sym_const] = ACTIONS(758), - [anon_sym_restrict] = ACTIONS(758), - [anon_sym_volatile] = ACTIONS(758), - [anon_sym__Atomic] = ACTIONS(758), - [anon_sym_unsigned] = ACTIONS(758), - [anon_sym_long] = ACTIONS(758), - [anon_sym_short] = ACTIONS(758), - [sym_primitive_type] = ACTIONS(758), - [anon_sym_enum] = ACTIONS(758), - [anon_sym_struct] = ACTIONS(758), - [anon_sym_union] = ACTIONS(758), - [sym_identifier] = ACTIONS(758), + [177] = { + [ts_builtin_sym_end] = ACTIONS(760), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(762), + [sym_preproc_directive] = ACTIONS(762), + [anon_sym_typedef] = ACTIONS(762), + [anon_sym_extern] = ACTIONS(762), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_static] = ACTIONS(762), + [anon_sym_auto] = ACTIONS(762), + [anon_sym_register] = ACTIONS(762), + [anon_sym_inline] = ACTIONS(762), + [anon_sym_const] = ACTIONS(762), + [anon_sym_restrict] = ACTIONS(762), + [anon_sym_volatile] = ACTIONS(762), + [anon_sym__Atomic] = ACTIONS(762), + [anon_sym_unsigned] = ACTIONS(762), + [anon_sym_long] = ACTIONS(762), + [anon_sym_short] = ACTIONS(762), + [sym_primitive_type] = ACTIONS(762), + [anon_sym_enum] = ACTIONS(762), + [anon_sym_struct] = ACTIONS(762), + [anon_sym_union] = ACTIONS(762), + [sym_identifier] = ACTIONS(762), [sym_comment] = ACTIONS(39), }, - [176] = { - [sym_preproc_include] = STATE(320), - [sym_preproc_def] = STATE(320), - [sym_preproc_function_def] = STATE(320), - [sym_preproc_call] = STATE(320), - [sym_preproc_if] = STATE(320), - [sym_preproc_ifdef] = STATE(320), - [sym_function_definition] = STATE(320), - [sym_declaration] = STATE(320), - [sym_type_definition] = STATE(320), + [178] = { + [sym_preproc_include] = STATE(327), + [sym_preproc_def] = STATE(327), + [sym_preproc_function_def] = STATE(327), + [sym_preproc_call] = STATE(327), + [sym_preproc_if] = STATE(327), + [sym_preproc_ifdef] = STATE(327), + [sym_function_definition] = STATE(327), + [sym_declaration] = STATE(327), + [sym_type_definition] = STATE(327), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(320), + [sym_linkage_specification] = STATE(327), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -9843,9 +9917,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(320), + [sym__empty_declaration] = STATE(327), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(320), + [aux_sym_translation_unit_repeat1] = STATE(327), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -9856,7 +9930,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(764), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -9875,10 +9949,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [177] = { - [sym_storage_class_specifier] = STATE(321), - [sym_type_qualifier] = STATE(321), - [aux_sym__declaration_specifiers_repeat1] = STATE(321), + [179] = { + [sym_storage_class_specifier] = STATE(328), + [sym_type_qualifier] = STATE(328), + [aux_sym__declaration_specifiers_repeat1] = STATE(328), [anon_sym_LPAREN] = ACTIONS(243), [anon_sym_extern] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(243), @@ -9893,10 +9967,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, - [178] = { - [sym_storage_class_specifier] = STATE(322), - [sym_type_qualifier] = STATE(322), - [aux_sym__declaration_specifiers_repeat1] = STATE(322), + [180] = { + [sym_storage_class_specifier] = STATE(329), + [sym_type_qualifier] = STATE(329), + [aux_sym__declaration_specifiers_repeat1] = STATE(329), [anon_sym_LPAREN] = ACTIONS(243), [anon_sym_extern] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(243), @@ -9911,8 +9985,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, - [179] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(179), + [181] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(181), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_extern] = ACTIONS(315), [anon_sym_STAR] = ACTIONS(313), @@ -9924,103 +9998,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(315), [anon_sym_volatile] = ACTIONS(315), [anon_sym__Atomic] = ACTIONS(315), - [anon_sym_unsigned] = ACTIONS(762), - [anon_sym_long] = ACTIONS(762), - [anon_sym_short] = ACTIONS(762), + [anon_sym_unsigned] = ACTIONS(766), + [anon_sym_long] = ACTIONS(766), + [anon_sym_short] = ACTIONS(766), [sym_primitive_type] = ACTIONS(315), [sym_identifier] = ACTIONS(315), [sym_comment] = ACTIONS(39), }, - [180] = { - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(765), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_extern] = ACTIONS(767), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_LBRACK] = ACTIONS(765), - [anon_sym_RBRACK] = ACTIONS(765), - [anon_sym_static] = ACTIONS(767), - [anon_sym_auto] = ACTIONS(767), - [anon_sym_register] = ACTIONS(767), - [anon_sym_inline] = ACTIONS(767), - [anon_sym_const] = ACTIONS(767), - [anon_sym_restrict] = ACTIONS(767), - [anon_sym_volatile] = ACTIONS(767), - [anon_sym__Atomic] = ACTIONS(767), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_TILDE] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(767), - [anon_sym_DASH_DASH] = ACTIONS(765), - [anon_sym_PLUS_PLUS] = ACTIONS(765), - [anon_sym_sizeof] = ACTIONS(767), - [sym_number_literal] = ACTIONS(765), - [sym_char_literal] = ACTIONS(765), - [sym_string_literal] = ACTIONS(765), - [sym_true] = ACTIONS(767), - [sym_false] = ACTIONS(767), - [sym_null] = ACTIONS(767), - [sym_identifier] = ACTIONS(767), + [182] = { + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_extern] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_RBRACK] = ACTIONS(769), + [anon_sym_static] = ACTIONS(771), + [anon_sym_auto] = ACTIONS(771), + [anon_sym_register] = ACTIONS(771), + [anon_sym_inline] = ACTIONS(771), + [anon_sym_const] = ACTIONS(771), + [anon_sym_restrict] = ACTIONS(771), + [anon_sym_volatile] = ACTIONS(771), + [anon_sym__Atomic] = ACTIONS(771), + [anon_sym_COLON] = ACTIONS(769), + [anon_sym_AMP] = ACTIONS(769), + [anon_sym_BANG] = ACTIONS(769), + [anon_sym_TILDE] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(771), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_sizeof] = ACTIONS(771), + [sym_number_literal] = ACTIONS(769), + [sym_char_literal] = ACTIONS(769), + [sym_string_literal] = ACTIONS(769), + [sym_true] = ACTIONS(771), + [sym_false] = ACTIONS(771), + [sym_null] = ACTIONS(771), + [sym_identifier] = ACTIONS(771), [sym_comment] = ACTIONS(39), }, - [181] = { - [sym__expression] = STATE(330), - [sym_conditional_expression] = STATE(330), - [sym_assignment_expression] = STATE(330), - [sym_pointer_expression] = STATE(330), - [sym_logical_expression] = STATE(330), - [sym_bitwise_expression] = STATE(330), - [sym_equality_expression] = STATE(330), - [sym_relational_expression] = STATE(330), - [sym_shift_expression] = STATE(330), - [sym_math_expression] = STATE(330), - [sym_cast_expression] = STATE(330), - [sym_sizeof_expression] = STATE(330), - [sym_subscript_expression] = STATE(330), - [sym_call_expression] = STATE(330), - [sym_field_expression] = STATE(330), - [sym_compound_literal_expression] = STATE(330), - [sym_parenthesized_expression] = STATE(330), - [sym_concatenated_string] = STATE(330), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(783), - [sym_char_literal] = ACTIONS(783), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), - [sym_null] = ACTIONS(787), - [sym_identifier] = ACTIONS(787), + [183] = { + [sym__expression] = STATE(337), + [sym_conditional_expression] = STATE(337), + [sym_assignment_expression] = STATE(337), + [sym_pointer_expression] = STATE(337), + [sym_logical_expression] = STATE(337), + [sym_bitwise_expression] = STATE(337), + [sym_equality_expression] = STATE(337), + [sym_relational_expression] = STATE(337), + [sym_shift_expression] = STATE(337), + [sym_math_expression] = STATE(337), + [sym_cast_expression] = STATE(337), + [sym_sizeof_expression] = STATE(337), + [sym_subscript_expression] = STATE(337), + [sym_call_expression] = STATE(337), + [sym_field_expression] = STATE(337), + [sym_compound_literal_expression] = STATE(337), + [sym_parenthesized_expression] = STATE(337), + [sym_concatenated_string] = STATE(337), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(787), + [sym_char_literal] = ACTIONS(787), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(791), + [sym_false] = ACTIONS(791), + [sym_null] = ACTIONS(791), + [sym_identifier] = ACTIONS(791), [sym_comment] = ACTIONS(39), }, - [182] = { - [sym_enumerator] = STATE(332), - [anon_sym_RBRACE] = ACTIONS(789), + [184] = { + [sym_enumerator] = STATE(339), + [anon_sym_RBRACE] = ACTIONS(793), [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(39), }, - [183] = { - [aux_sym_enumerator_list_repeat1] = STATE(334), - [anon_sym_COMMA] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(789), + [185] = { + [aux_sym_enumerator_list_repeat1] = STATE(341), + [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(793), [sym_comment] = ACTIONS(39), }, - [184] = { + [186] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), - [sym_preproc_else_in_field_declaration_list] = STATE(338), - [sym_preproc_elif_in_field_declaration_list] = STATE(339), + [sym_preproc_else_in_field_declaration_list] = STATE(345), + [sym_preproc_elif_in_field_declaration_list] = STATE(346), [sym__declaration_specifiers] = STATE(106), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), @@ -10029,18 +10103,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(340), - [sym_field_declaration] = STATE(340), + [sym__field_declaration_list_item] = STATE(347), + [sym_field_declaration] = STATE(347), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(340), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(347), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(793), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(797), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(191), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(797), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(801), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10060,11 +10134,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [185] = { + [187] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), - [sym_preproc_else_in_field_declaration_list] = STATE(342), - [sym_preproc_elif_in_field_declaration_list] = STATE(343), + [sym_preproc_else_in_field_declaration_list] = STATE(349), + [sym_preproc_elif_in_field_declaration_list] = STATE(350), [sym__declaration_specifiers] = STATE(106), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), @@ -10073,18 +10147,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(344), - [sym_field_declaration] = STATE(344), + [sym__field_declaration_list_item] = STATE(351), + [sym_field_declaration] = STATE(351), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(344), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(351), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(803), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(191), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(797), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(801), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10104,11 +10178,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [186] = { + [188] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), - [sym_preproc_else_in_field_declaration_list] = STATE(346), - [sym_preproc_elif_in_field_declaration_list] = STATE(347), + [sym_preproc_else_in_field_declaration_list] = STATE(353), + [sym_preproc_elif_in_field_declaration_list] = STATE(354), [sym__declaration_specifiers] = STATE(106), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), @@ -10117,18 +10191,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(348), - [sym_field_declaration] = STATE(348), + [sym__field_declaration_list_item] = STATE(355), + [sym_field_declaration] = STATE(355), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(348), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(355), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(801), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(805), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(191), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(797), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(801), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10148,141 +10222,147 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [187] = { - [sym__field_declarator] = STATE(350), - [sym_pointer_field_declarator] = STATE(193), - [sym_function_field_declarator] = STATE(194), - [sym_array_field_declarator] = STATE(195), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(803), - [sym_identifier] = ACTIONS(476), + [189] = { + [sym__field_declarator] = STATE(357), + [sym_pointer_field_declarator] = STATE(195), + [sym_function_field_declarator] = STATE(196), + [sym_array_field_declarator] = STATE(197), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(807), + [sym_identifier] = ACTIONS(478), [sym_comment] = ACTIONS(39), }, - [188] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(805), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(807), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(807), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(807), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(807), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(807), - [anon_sym_extern] = ACTIONS(805), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_static] = ACTIONS(805), - [anon_sym_auto] = ACTIONS(805), - [anon_sym_register] = ACTIONS(805), - [anon_sym_inline] = ACTIONS(805), - [anon_sym_const] = ACTIONS(805), - [anon_sym_restrict] = ACTIONS(805), - [anon_sym_volatile] = ACTIONS(805), - [anon_sym__Atomic] = ACTIONS(805), - [anon_sym_unsigned] = ACTIONS(805), - [anon_sym_long] = ACTIONS(805), - [anon_sym_short] = ACTIONS(805), - [sym_primitive_type] = ACTIONS(805), - [anon_sym_enum] = ACTIONS(805), - [anon_sym_struct] = ACTIONS(805), - [anon_sym_union] = ACTIONS(805), - [sym_identifier] = ACTIONS(805), - [sym_comment] = ACTIONS(39), - }, - [189] = { - [sym__field_declarator] = STATE(351), - [sym_pointer_field_declarator] = STATE(193), - [sym_function_field_declarator] = STATE(194), - [sym_array_field_declarator] = STATE(195), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(472), - [sym_identifier] = ACTIONS(476), - [sym_comment] = ACTIONS(39), - }, - [190] = { - [sym__expression] = STATE(359), - [sym_conditional_expression] = STATE(359), - [sym_assignment_expression] = STATE(359), - [sym_pointer_expression] = STATE(359), - [sym_logical_expression] = STATE(359), - [sym_bitwise_expression] = STATE(359), - [sym_equality_expression] = STATE(359), - [sym_relational_expression] = STATE(359), - [sym_shift_expression] = STATE(359), - [sym_math_expression] = STATE(359), - [sym_cast_expression] = STATE(359), - [sym_sizeof_expression] = STATE(359), - [sym_subscript_expression] = STATE(359), - [sym_call_expression] = STATE(359), - [sym_field_expression] = STATE(359), - [sym_compound_literal_expression] = STATE(359), - [sym_parenthesized_expression] = STATE(359), - [sym_concatenated_string] = STATE(359), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(823), - [sym_char_literal] = ACTIONS(823), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_null] = ACTIONS(827), - [sym_identifier] = ACTIONS(827), + [190] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(809), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(811), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(811), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(811), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(811), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(811), + [anon_sym_extern] = ACTIONS(809), + [anon_sym_RBRACE] = ACTIONS(811), + [anon_sym_static] = ACTIONS(809), + [anon_sym_auto] = ACTIONS(809), + [anon_sym_register] = ACTIONS(809), + [anon_sym_inline] = ACTIONS(809), + [anon_sym_const] = ACTIONS(809), + [anon_sym_restrict] = ACTIONS(809), + [anon_sym_volatile] = ACTIONS(809), + [anon_sym__Atomic] = ACTIONS(809), + [anon_sym_unsigned] = ACTIONS(809), + [anon_sym_long] = ACTIONS(809), + [anon_sym_short] = ACTIONS(809), + [sym_primitive_type] = ACTIONS(809), + [anon_sym_enum] = ACTIONS(809), + [anon_sym_struct] = ACTIONS(809), + [anon_sym_union] = ACTIONS(809), + [sym_identifier] = ACTIONS(809), [sym_comment] = ACTIONS(39), }, [191] = { - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_COMMA] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(829), + [sym__field_declarator] = STATE(358), + [sym_pointer_field_declarator] = STATE(195), + [sym_function_field_declarator] = STATE(196), + [sym_array_field_declarator] = STATE(197), + [sym_type_qualifier] = STATE(359), + [aux_sym_type_definition_repeat1] = STATE(359), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(813), [sym_comment] = ACTIONS(39), }, [192] = { - [sym_parameter_list] = STATE(364), - [aux_sym_field_declaration_repeat1] = STATE(365), - [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_COMMA] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), + [sym__expression] = STATE(367), + [sym_conditional_expression] = STATE(367), + [sym_assignment_expression] = STATE(367), + [sym_pointer_expression] = STATE(367), + [sym_logical_expression] = STATE(367), + [sym_bitwise_expression] = STATE(367), + [sym_equality_expression] = STATE(367), + [sym_relational_expression] = STATE(367), + [sym_shift_expression] = STATE(367), + [sym_math_expression] = STATE(367), + [sym_cast_expression] = STATE(367), + [sym_sizeof_expression] = STATE(367), + [sym_subscript_expression] = STATE(367), + [sym_call_expression] = STATE(367), + [sym_field_expression] = STATE(367), + [sym_compound_literal_expression] = STATE(367), + [sym_parenthesized_expression] = STATE(367), + [sym_concatenated_string] = STATE(367), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(829), + [sym_char_literal] = ACTIONS(829), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(833), + [sym_false] = ACTIONS(833), + [sym_null] = ACTIONS(833), + [sym_identifier] = ACTIONS(833), [sym_comment] = ACTIONS(39), }, [193] = { - [anon_sym_LPAREN] = ACTIONS(839), - [anon_sym_COMMA] = ACTIONS(839), - [anon_sym_RPAREN] = ACTIONS(839), - [anon_sym_SEMI] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(839), - [anon_sym_COLON] = ACTIONS(839), + [anon_sym_LPAREN] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(835), [sym_comment] = ACTIONS(39), }, [194] = { - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_COMMA] = ACTIONS(841), - [anon_sym_RPAREN] = ACTIONS(841), - [anon_sym_SEMI] = ACTIONS(841), + [sym_parameter_list] = STATE(372), + [aux_sym_field_declaration_repeat1] = STATE(373), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(839), [anon_sym_LBRACK] = ACTIONS(841), - [anon_sym_COLON] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(843), [sym_comment] = ACTIONS(39), }, [195] = { - [anon_sym_LPAREN] = ACTIONS(843), - [anon_sym_COMMA] = ACTIONS(843), - [anon_sym_RPAREN] = ACTIONS(843), - [anon_sym_SEMI] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(843), - [anon_sym_COLON] = ACTIONS(843), + [anon_sym_LPAREN] = ACTIONS(845), + [anon_sym_COMMA] = ACTIONS(845), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_COLON] = ACTIONS(845), [sym_comment] = ACTIONS(39), }, [196] = { - [sym_storage_class_specifier] = STATE(366), - [sym_type_qualifier] = STATE(366), - [aux_sym__declaration_specifiers_repeat1] = STATE(366), + [anon_sym_LPAREN] = ACTIONS(847), + [anon_sym_COMMA] = ACTIONS(847), + [anon_sym_RPAREN] = ACTIONS(847), + [anon_sym_SEMI] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(847), + [anon_sym_COLON] = ACTIONS(847), + [sym_comment] = ACTIONS(39), + }, + [197] = { + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_COMMA] = ACTIONS(849), + [anon_sym_RPAREN] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_COLON] = ACTIONS(849), + [sym_comment] = ACTIONS(39), + }, + [198] = { + [sym_storage_class_specifier] = STATE(374), + [sym_type_qualifier] = STATE(374), + [aux_sym__declaration_specifiers_repeat1] = STATE(374), [anon_sym_LPAREN] = ACTIONS(243), [anon_sym_SEMI] = ACTIONS(243), [anon_sym_extern] = ACTIONS(23), @@ -10299,42 +10379,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, - [197] = { - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_COMMA] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [anon_sym_extern] = ACTIONS(847), - [anon_sym_STAR] = ACTIONS(845), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_RBRACK] = ACTIONS(845), - [anon_sym_static] = ACTIONS(847), - [anon_sym_auto] = ACTIONS(847), - [anon_sym_register] = ACTIONS(847), - [anon_sym_inline] = ACTIONS(847), - [anon_sym_const] = ACTIONS(847), - [anon_sym_restrict] = ACTIONS(847), - [anon_sym_volatile] = ACTIONS(847), - [anon_sym__Atomic] = ACTIONS(847), - [anon_sym_COLON] = ACTIONS(845), - [anon_sym_AMP] = ACTIONS(845), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_TILDE] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(847), - [anon_sym_DASH] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_sizeof] = ACTIONS(847), - [sym_number_literal] = ACTIONS(845), - [sym_char_literal] = ACTIONS(845), - [sym_string_literal] = ACTIONS(845), - [sym_true] = ACTIONS(847), - [sym_false] = ACTIONS(847), - [sym_null] = ACTIONS(847), - [sym_identifier] = ACTIONS(847), + [199] = { + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_COMMA] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(851), + [anon_sym_extern] = ACTIONS(853), + [anon_sym_STAR] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(851), + [anon_sym_RBRACK] = ACTIONS(851), + [anon_sym_static] = ACTIONS(853), + [anon_sym_auto] = ACTIONS(853), + [anon_sym_register] = ACTIONS(853), + [anon_sym_inline] = ACTIONS(853), + [anon_sym_const] = ACTIONS(853), + [anon_sym_restrict] = ACTIONS(853), + [anon_sym_volatile] = ACTIONS(853), + [anon_sym__Atomic] = ACTIONS(853), + [anon_sym_COLON] = ACTIONS(851), + [anon_sym_AMP] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(851), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(851), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_sizeof] = ACTIONS(853), + [sym_number_literal] = ACTIONS(851), + [sym_char_literal] = ACTIONS(851), + [sym_string_literal] = ACTIONS(851), + [sym_true] = ACTIONS(853), + [sym_false] = ACTIONS(853), + [sym_null] = ACTIONS(853), + [sym_identifier] = ACTIONS(853), [sym_comment] = ACTIONS(39), }, - [198] = { + [200] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), [sym__declaration_specifiers] = STATE(106), @@ -10345,39 +10425,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(198), - [sym_field_declaration] = STATE(198), + [sym__field_declaration_list_item] = STATE(200), + [sym_field_declaration] = STATE(200), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(198), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(200), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(849), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(855), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_static] = ACTIONS(858), - [anon_sym_auto] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_inline] = ACTIONS(858), - [anon_sym_const] = ACTIONS(863), - [anon_sym_restrict] = ACTIONS(863), - [anon_sym_volatile] = ACTIONS(863), - [anon_sym__Atomic] = ACTIONS(863), - [anon_sym_unsigned] = ACTIONS(866), - [anon_sym_long] = ACTIONS(866), - [anon_sym_short] = ACTIONS(866), - [sym_primitive_type] = ACTIONS(869), - [anon_sym_enum] = ACTIONS(872), - [anon_sym_struct] = ACTIONS(875), - [anon_sym_union] = ACTIONS(878), - [sym_identifier] = ACTIONS(881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(855), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(858), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(867), + [anon_sym_static] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(864), + [anon_sym_register] = ACTIONS(864), + [anon_sym_inline] = ACTIONS(864), + [anon_sym_const] = ACTIONS(869), + [anon_sym_restrict] = ACTIONS(869), + [anon_sym_volatile] = ACTIONS(869), + [anon_sym__Atomic] = ACTIONS(869), + [anon_sym_unsigned] = ACTIONS(872), + [anon_sym_long] = ACTIONS(872), + [anon_sym_short] = ACTIONS(872), + [sym_primitive_type] = ACTIONS(875), + [anon_sym_enum] = ACTIONS(878), + [anon_sym_struct] = ACTIONS(881), + [anon_sym_union] = ACTIONS(884), + [sym_identifier] = ACTIONS(887), [sym_comment] = ACTIONS(39), }, - [199] = { - [sym_storage_class_specifier] = STATE(367), - [sym_type_qualifier] = STATE(367), - [aux_sym__declaration_specifiers_repeat1] = STATE(367), + [201] = { + [sym_storage_class_specifier] = STATE(375), + [sym_type_qualifier] = STATE(375), + [aux_sym__declaration_specifiers_repeat1] = STATE(375), [anon_sym_LPAREN] = ACTIONS(243), [anon_sym_SEMI] = ACTIONS(243), [anon_sym_extern] = ACTIONS(23), @@ -10394,8 +10474,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, - [200] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(200), + [202] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(202), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_SEMI] = ACTIONS(313), [anon_sym_extern] = ACTIONS(315), @@ -10408,38 +10488,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(315), [anon_sym_volatile] = ACTIONS(315), [anon_sym__Atomic] = ACTIONS(315), - [anon_sym_unsigned] = ACTIONS(884), - [anon_sym_long] = ACTIONS(884), - [anon_sym_short] = ACTIONS(884), + [anon_sym_unsigned] = ACTIONS(890), + [anon_sym_long] = ACTIONS(890), + [anon_sym_short] = ACTIONS(890), [sym_primitive_type] = ACTIONS(315), [anon_sym_COLON] = ACTIONS(313), [sym_identifier] = ACTIONS(315), [sym_comment] = ACTIONS(39), }, - [201] = { - [sym__declaration_specifiers] = STATE(212), - [sym__abstract_declarator] = STATE(368), - [sym_abstract_pointer_declarator] = STATE(368), - [sym_abstract_function_declarator] = STATE(368), - [sym_abstract_array_declarator] = STATE(368), - [sym_storage_class_specifier] = STATE(214), - [sym_type_qualifier] = STATE(214), - [sym__type_specifier] = STATE(213), - [sym_sized_type_specifier] = STATE(213), - [sym_enum_specifier] = STATE(213), - [sym_struct_specifier] = STATE(213), - [sym_union_specifier] = STATE(213), - [sym_parameter_list] = STATE(205), - [sym_parameter_declaration] = STATE(210), - [sym_macro_type_specifier] = STATE(213), - [aux_sym__declaration_specifiers_repeat1] = STATE(214), - [aux_sym_sized_type_specifier_repeat1] = STATE(215), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_DOT_DOT_DOT] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(514), + [203] = { + [sym__declaration_specifiers] = STATE(217), + [sym__abstract_declarator] = STATE(376), + [sym_abstract_pointer_declarator] = STATE(376), + [sym_abstract_function_declarator] = STATE(376), + [sym_abstract_array_declarator] = STATE(376), + [sym_storage_class_specifier] = STATE(219), + [sym_type_qualifier] = STATE(219), + [sym__type_specifier] = STATE(218), + [sym_sized_type_specifier] = STATE(218), + [sym_enum_specifier] = STATE(218), + [sym_struct_specifier] = STATE(218), + [sym_union_specifier] = STATE(218), + [sym_parameter_list] = STATE(207), + [sym_parameter_declaration] = STATE(215), + [sym_macro_type_specifier] = STATE(218), + [aux_sym__declaration_specifiers_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(518), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -10448,62 +10528,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(516), - [anon_sym_long] = ACTIONS(516), - [anon_sym_short] = ACTIONS(516), - [sym_primitive_type] = ACTIONS(518), + [anon_sym_unsigned] = ACTIONS(520), + [anon_sym_long] = ACTIONS(520), + [anon_sym_short] = ACTIONS(520), + [sym_primitive_type] = ACTIONS(522), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [202] = { - [sym__abstract_declarator] = STATE(369), - [sym_abstract_pointer_declarator] = STATE(369), - [sym_abstract_function_declarator] = STATE(369), - [sym_abstract_array_declarator] = STATE(369), - [sym_parameter_list] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_RPAREN] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_LBRACK] = ACTIONS(498), + [204] = { + [sym__abstract_declarator] = STATE(377), + [sym_abstract_pointer_declarator] = STATE(377), + [sym_abstract_function_declarator] = STATE(377), + [sym_abstract_array_declarator] = STATE(377), + [sym_type_qualifier] = STATE(378), + [sym_parameter_list] = STATE(207), + [aux_sym_type_definition_repeat1] = STATE(378), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_const] = ACTIONS(895), + [anon_sym_restrict] = ACTIONS(895), + [anon_sym_volatile] = ACTIONS(895), + [anon_sym__Atomic] = ACTIONS(895), [sym_comment] = ACTIONS(39), }, - [203] = { - [sym__declaration_specifiers] = STATE(371), - [sym_storage_class_specifier] = STATE(261), - [sym_type_qualifier] = STATE(261), - [sym__type_specifier] = STATE(259), - [sym_sized_type_specifier] = STATE(259), - [sym_enum_specifier] = STATE(259), - [sym_struct_specifier] = STATE(259), - [sym_union_specifier] = STATE(259), - [sym__expression] = STATE(372), - [sym_conditional_expression] = STATE(372), - [sym_assignment_expression] = STATE(372), - [sym_pointer_expression] = STATE(372), - [sym_logical_expression] = STATE(372), - [sym_bitwise_expression] = STATE(372), - [sym_equality_expression] = STATE(372), - [sym_relational_expression] = STATE(372), - [sym_shift_expression] = STATE(372), - [sym_math_expression] = STATE(372), - [sym_cast_expression] = STATE(372), - [sym_sizeof_expression] = STATE(372), - [sym_subscript_expression] = STATE(372), - [sym_call_expression] = STATE(372), - [sym_field_expression] = STATE(372), - [sym_compound_literal_expression] = STATE(372), - [sym_parenthesized_expression] = STATE(372), - [sym_concatenated_string] = STATE(372), - [sym_macro_type_specifier] = STATE(259), - [aux_sym__declaration_specifiers_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(262), - [anon_sym_LPAREN] = ACTIONS(582), + [205] = { + [sym__declaration_specifiers] = STATE(380), + [sym_storage_class_specifier] = STATE(266), + [sym_type_qualifier] = STATE(266), + [sym__type_specifier] = STATE(264), + [sym_sized_type_specifier] = STATE(264), + [sym_enum_specifier] = STATE(264), + [sym_struct_specifier] = STATE(264), + [sym_union_specifier] = STATE(264), + [sym__expression] = STATE(381), + [sym_conditional_expression] = STATE(381), + [sym_assignment_expression] = STATE(381), + [sym_pointer_expression] = STATE(381), + [sym_logical_expression] = STATE(381), + [sym_bitwise_expression] = STATE(381), + [sym_equality_expression] = STATE(381), + [sym_relational_expression] = STATE(381), + [sym_shift_expression] = STATE(381), + [sym_math_expression] = STATE(381), + [sym_cast_expression] = STATE(381), + [sym_sizeof_expression] = STATE(381), + [sym_subscript_expression] = STATE(381), + [sym_call_expression] = STATE(381), + [sym_field_expression] = STATE(381), + [sym_compound_literal_expression] = STATE(381), + [sym_parenthesized_expression] = STATE(381), + [sym_concatenated_string] = STATE(381), + [sym_macro_type_specifier] = STATE(264), + [aux_sym__declaration_specifiers_repeat1] = STATE(266), + [aux_sym_sized_type_specifier_repeat1] = STATE(267), + [anon_sym_LPAREN] = ACTIONS(586), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_RBRACK] = ACTIONS(897), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -10512,153 +10598,192 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(588), - [anon_sym_long] = ACTIONS(588), - [anon_sym_short] = ACTIONS(588), - [sym_primitive_type] = ACTIONS(590), + [anon_sym_unsigned] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [sym_primitive_type] = ACTIONS(594), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(891), - [sym_char_literal] = ACTIONS(891), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(893), - [sym_false] = ACTIONS(893), - [sym_null] = ACTIONS(893), - [sym_identifier] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(899), + [sym_char_literal] = ACTIONS(899), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(901), + [sym_false] = ACTIONS(901), + [sym_null] = ACTIONS(901), + [sym_identifier] = ACTIONS(612), [sym_comment] = ACTIONS(39), }, - [204] = { - [sym_parameter_list] = STATE(374), + [206] = { + [sym_parameter_list] = STATE(383), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(905), [sym_comment] = ACTIONS(39), }, - [205] = { - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), + [207] = { + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), [sym_comment] = ACTIONS(39), }, - [206] = { - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_COMMA] = ACTIONS(901), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(901), - [anon_sym_extern] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_RBRACK] = ACTIONS(901), - [anon_sym_static] = ACTIONS(903), - [anon_sym_auto] = ACTIONS(903), - [anon_sym_register] = ACTIONS(903), - [anon_sym_inline] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_restrict] = ACTIONS(903), - [anon_sym_volatile] = ACTIONS(903), - [anon_sym__Atomic] = ACTIONS(903), - [anon_sym_COLON] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(901), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_sizeof] = ACTIONS(903), - [sym_number_literal] = ACTIONS(901), - [sym_char_literal] = ACTIONS(901), - [sym_string_literal] = ACTIONS(901), - [sym_true] = ACTIONS(903), - [sym_false] = ACTIONS(903), - [sym_null] = ACTIONS(903), - [sym_identifier] = ACTIONS(903), + [208] = { + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_COMMA] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(909), + [anon_sym_static] = ACTIONS(911), + [anon_sym_auto] = ACTIONS(911), + [anon_sym_register] = ACTIONS(911), + [anon_sym_inline] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_restrict] = ACTIONS(911), + [anon_sym_volatile] = ACTIONS(911), + [anon_sym__Atomic] = ACTIONS(911), + [anon_sym_COLON] = ACTIONS(909), + [anon_sym_AMP] = ACTIONS(909), + [anon_sym_BANG] = ACTIONS(909), + [anon_sym_TILDE] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_sizeof] = ACTIONS(911), + [sym_number_literal] = ACTIONS(909), + [sym_char_literal] = ACTIONS(909), + [sym_string_literal] = ACTIONS(909), + [sym_true] = ACTIONS(911), + [sym_false] = ACTIONS(911), + [sym_null] = ACTIONS(911), + [sym_identifier] = ACTIONS(911), [sym_comment] = ACTIONS(39), }, - [207] = { - [sym__abstract_declarator] = STATE(375), - [sym_abstract_pointer_declarator] = STATE(375), - [sym_abstract_function_declarator] = STATE(375), - [sym_abstract_array_declarator] = STATE(375), - [sym_parameter_list] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(496), - [anon_sym_LBRACK] = ACTIONS(498), + [209] = { + [sym__abstract_declarator] = STATE(384), + [sym_abstract_pointer_declarator] = STATE(384), + [sym_abstract_function_declarator] = STATE(384), + [sym_abstract_array_declarator] = STATE(384), + [sym_parameter_list] = STATE(207), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), [sym_comment] = ACTIONS(39), }, - [208] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(208), + [210] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(210), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_RPAREN] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(313), [anon_sym_LBRACK] = ACTIONS(313), - [anon_sym_unsigned] = ACTIONS(905), - [anon_sym_long] = ACTIONS(905), - [anon_sym_short] = ACTIONS(905), + [anon_sym_unsigned] = ACTIONS(913), + [anon_sym_long] = ACTIONS(913), + [anon_sym_short] = ACTIONS(913), [sym_primitive_type] = ACTIONS(315), [sym_identifier] = ACTIONS(315), [sym_comment] = ACTIONS(39), }, - [209] = { - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_COMMA] = ACTIONS(908), - [anon_sym_RPAREN] = ACTIONS(908), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_EQ] = ACTIONS(908), - [sym_comment] = ACTIONS(39), - }, - [210] = { - [aux_sym_parameter_list_repeat1] = STATE(378), - [anon_sym_COMMA] = ACTIONS(910), - [anon_sym_RPAREN] = ACTIONS(912), - [sym_comment] = ACTIONS(39), - }, [211] = { - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_SEMI] = ACTIONS(914), - [anon_sym_LBRACE] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(914), - [anon_sym_COLON] = ACTIONS(914), + [sym__declarator] = STATE(213), + [sym_pointer_declarator] = STATE(213), + [sym_function_declarator] = STATE(213), + [sym_array_declarator] = STATE(213), + [sym_type_qualifier] = STATE(214), + [aux_sym_type_definition_repeat1] = STATE(214), + [anon_sym_LPAREN] = ACTIONS(90), + [anon_sym_STAR] = ACTIONS(221), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(514), [sym_comment] = ACTIONS(39), }, [212] = { - [sym__declarator] = STATE(381), - [sym__abstract_declarator] = STATE(382), - [sym_pointer_declarator] = STATE(381), - [sym_abstract_pointer_declarator] = STATE(382), - [sym_function_declarator] = STATE(381), - [sym_abstract_function_declarator] = STATE(382), - [sym_array_declarator] = STATE(381), - [sym_abstract_array_declarator] = STATE(382), - [sym_parameter_list] = STATE(205), [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_COMMA] = ACTIONS(916), + [anon_sym_RPAREN] = ACTIONS(916), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(916), + [anon_sym_EQ] = ACTIONS(916), + [sym_comment] = ACTIONS(39), + }, + [213] = { + [sym_parameter_list] = STATE(128), + [anon_sym_LPAREN] = ACTIONS(231), [anon_sym_COMMA] = ACTIONS(918), [anon_sym_RPAREN] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(918), + [sym_comment] = ACTIONS(39), + }, + [214] = { + [sym_type_qualifier] = STATE(214), + [aux_sym_type_definition_repeat1] = STATE(214), + [anon_sym_LPAREN] = ACTIONS(920), [anon_sym_STAR] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(498), - [sym_identifier] = ACTIONS(922), + [anon_sym_const] = ACTIONS(418), + [anon_sym_restrict] = ACTIONS(418), + [anon_sym_volatile] = ACTIONS(418), + [anon_sym__Atomic] = ACTIONS(418), + [sym_identifier] = ACTIONS(421), [sym_comment] = ACTIONS(39), }, - [213] = { - [sym_storage_class_specifier] = STATE(383), - [sym_type_qualifier] = STATE(383), - [aux_sym__declaration_specifiers_repeat1] = STATE(383), + [215] = { + [aux_sym_parameter_list_repeat1] = STATE(387), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(924), + [sym_comment] = ACTIONS(39), + }, + [216] = { + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_COMMA] = ACTIONS(926), + [anon_sym_RPAREN] = ACTIONS(926), + [anon_sym_SEMI] = ACTIONS(926), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_LBRACK] = ACTIONS(926), + [anon_sym_EQ] = ACTIONS(926), + [anon_sym_COLON] = ACTIONS(926), + [sym_comment] = ACTIONS(39), + }, + [217] = { + [sym__declarator] = STATE(390), + [sym__abstract_declarator] = STATE(391), + [sym_pointer_declarator] = STATE(390), + [sym_abstract_pointer_declarator] = STATE(391), + [sym_function_declarator] = STATE(390), + [sym_abstract_function_declarator] = STATE(391), + [sym_array_declarator] = STATE(390), + [sym_abstract_array_declarator] = STATE(391), + [sym_parameter_list] = STATE(207), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LBRACK] = ACTIONS(500), + [sym_identifier] = ACTIONS(934), + [sym_comment] = ACTIONS(39), + }, + [218] = { + [sym_storage_class_specifier] = STATE(392), + [sym_type_qualifier] = STATE(392), + [aux_sym__declaration_specifiers_repeat1] = STATE(392), [anon_sym_LPAREN] = ACTIONS(98), [anon_sym_COMMA] = ACTIONS(98), [anon_sym_RPAREN] = ACTIONS(98), @@ -10676,17 +10801,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(100), [sym_comment] = ACTIONS(39), }, - [214] = { + [219] = { [sym_storage_class_specifier] = STATE(50), [sym_type_qualifier] = STATE(50), - [sym__type_specifier] = STATE(384), - [sym_sized_type_specifier] = STATE(384), - [sym_enum_specifier] = STATE(384), - [sym_struct_specifier] = STATE(384), - [sym_union_specifier] = STATE(384), - [sym_macro_type_specifier] = STATE(384), + [sym__type_specifier] = STATE(393), + [sym_sized_type_specifier] = STATE(393), + [sym_enum_specifier] = STATE(393), + [sym_struct_specifier] = STATE(393), + [sym_union_specifier] = STATE(393), + [sym_macro_type_specifier] = STATE(393), [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(215), + [aux_sym_sized_type_specifier_repeat1] = STATE(220), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -10696,18 +10821,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(516), - [anon_sym_long] = ACTIONS(516), - [anon_sym_short] = ACTIONS(516), - [sym_primitive_type] = ACTIONS(924), + [anon_sym_unsigned] = ACTIONS(520), + [anon_sym_long] = ACTIONS(520), + [anon_sym_short] = ACTIONS(520), + [sym_primitive_type] = ACTIONS(936), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [215] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(385), + [220] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(394), [anon_sym_LPAREN] = ACTIONS(106), [anon_sym_COMMA] = ACTIONS(106), [anon_sym_RPAREN] = ACTIONS(106), @@ -10722,69 +10847,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(108), [anon_sym_volatile] = ACTIONS(108), [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(926), - [anon_sym_long] = ACTIONS(926), - [anon_sym_short] = ACTIONS(926), + [anon_sym_unsigned] = ACTIONS(938), + [anon_sym_long] = ACTIONS(938), + [anon_sym_short] = ACTIONS(938), [sym_primitive_type] = ACTIONS(112), [sym_identifier] = ACTIONS(114), [sym_comment] = ACTIONS(39), }, - [216] = { + [221] = { [sym__declarator] = STATE(119), [sym_pointer_declarator] = STATE(119), [sym_function_declarator] = STATE(119), [sym_array_declarator] = STATE(119), + [sym_type_qualifier] = STATE(395), + [aux_sym_type_definition_repeat1] = STATE(395), [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(520), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), [sym_identifier] = ACTIONS(229), [sym_comment] = ACTIONS(39), }, - [217] = { - [sym_parameter_list] = STATE(127), + [222] = { + [sym_parameter_list] = STATE(128), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_COMMA] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_EQ] = ACTIONS(241), [sym_comment] = ACTIONS(39), }, - [218] = { - [anon_sym_COMMA] = ACTIONS(928), - [anon_sym_SEMI] = ACTIONS(928), + [223] = { + [anon_sym_COMMA] = ACTIONS(940), + [anon_sym_SEMI] = ACTIONS(940), [sym_comment] = ACTIONS(39), }, - [219] = { + [224] = { [sym_type_qualifier] = STATE(115), [sym__type_specifier] = STATE(113), [sym_sized_type_specifier] = STATE(113), [sym_enum_specifier] = STATE(113), [sym_struct_specifier] = STATE(113), [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(396), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(406), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), [sym_macro_type_specifier] = STATE(113), [aux_sym_type_definition_repeat1] = STATE(115), [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -10796,199 +10927,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [220] = { - [sym_preproc_arg] = ACTIONS(952), + [225] = { + [sym_preproc_arg] = ACTIONS(964), [sym_comment] = ACTIONS(47), }, - [221] = { - [sym_identifier] = ACTIONS(954), - [sym_comment] = ACTIONS(39), - }, - [222] = { - [sym_identifier] = ACTIONS(956), - [sym_comment] = ACTIONS(39), - }, - [223] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_static] = ACTIONS(958), - [anon_sym_auto] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_inline] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym_unsigned] = ACTIONS(958), - [anon_sym_long] = ACTIONS(958), - [anon_sym_short] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(958), - [anon_sym_enum] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_union] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(958), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_goto] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_sizeof] = ACTIONS(958), - [sym_number_literal] = ACTIONS(960), - [sym_char_literal] = ACTIONS(960), - [sym_string_literal] = ACTIONS(960), - [sym_true] = ACTIONS(958), - [sym_false] = ACTIONS(958), - [sym_null] = ACTIONS(958), - [sym_identifier] = ACTIONS(958), - [sym_comment] = ACTIONS(39), - }, - [224] = { - [ts_builtin_sym_end] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_RBRACE] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(964), - [sym_number_literal] = ACTIONS(962), - [sym_char_literal] = ACTIONS(962), - [sym_string_literal] = ACTIONS(962), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [sym_identifier] = ACTIONS(964), + [226] = { + [sym_identifier] = ACTIONS(966), [sym_comment] = ACTIONS(39), }, - [225] = { - [sym__expression] = STATE(400), - [sym_conditional_expression] = STATE(400), - [sym_assignment_expression] = STATE(400), - [sym_pointer_expression] = STATE(400), - [sym_logical_expression] = STATE(400), - [sym_bitwise_expression] = STATE(400), - [sym_equality_expression] = STATE(400), - [sym_relational_expression] = STATE(400), - [sym_shift_expression] = STATE(400), - [sym_math_expression] = STATE(400), - [sym_cast_expression] = STATE(400), - [sym_sizeof_expression] = STATE(400), - [sym_subscript_expression] = STATE(400), - [sym_call_expression] = STATE(400), - [sym_field_expression] = STATE(400), - [sym_compound_literal_expression] = STATE(400), - [sym_parenthesized_expression] = STATE(400), - [sym_concatenated_string] = STATE(400), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(966), - [sym_char_literal] = ACTIONS(966), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), + [227] = { [sym_identifier] = ACTIONS(968), [sym_comment] = ACTIONS(39), }, - [226] = { - [anon_sym_LPAREN] = ACTIONS(970), + [228] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(970), + [sym_preproc_directive] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_typedef] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_static] = ACTIONS(970), + [anon_sym_auto] = ACTIONS(970), + [anon_sym_register] = ACTIONS(970), + [anon_sym_inline] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [anon_sym_restrict] = ACTIONS(970), + [anon_sym_volatile] = ACTIONS(970), + [anon_sym__Atomic] = ACTIONS(970), + [anon_sym_unsigned] = ACTIONS(970), + [anon_sym_long] = ACTIONS(970), + [anon_sym_short] = ACTIONS(970), + [sym_primitive_type] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_struct] = ACTIONS(970), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_switch] = ACTIONS(970), + [anon_sym_case] = ACTIONS(970), + [anon_sym_default] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_TILDE] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [sym_char_literal] = ACTIONS(972), + [sym_string_literal] = ACTIONS(972), + [sym_true] = ACTIONS(970), + [sym_false] = ACTIONS(970), + [sym_null] = ACTIONS(970), + [sym_identifier] = ACTIONS(970), [sym_comment] = ACTIONS(39), }, - [227] = { - [anon_sym_LPAREN] = ACTIONS(972), + [229] = { + [ts_builtin_sym_end] = ACTIONS(974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(974), + [sym_char_literal] = ACTIONS(974), + [sym_string_literal] = ACTIONS(974), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_identifier] = ACTIONS(976), [sym_comment] = ACTIONS(39), }, - [228] = { + [230] = { [sym__expression] = STATE(410), [sym_conditional_expression] = STATE(410), [sym_assignment_expression] = STATE(410), @@ -11007,356 +11092,402 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(410), [sym_parenthesized_expression] = STATE(410), [sym_concatenated_string] = STATE(410), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(988), - [sym_char_literal] = ACTIONS(988), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(992), - [sym_false] = ACTIONS(992), - [sym_null] = ACTIONS(992), - [sym_identifier] = ACTIONS(992), - [sym_comment] = ACTIONS(39), - }, - [229] = { - [anon_sym_COLON] = ACTIONS(994), - [sym_comment] = ACTIONS(39), - }, - [230] = { - [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(978), + [sym_char_literal] = ACTIONS(978), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), [sym_comment] = ACTIONS(39), }, [231] = { - [sym_compound_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(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(982), [sym_comment] = ACTIONS(39), }, [232] = { - [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(984), [sym_comment] = ACTIONS(39), }, [233] = { - [sym__expression] = STATE(423), - [sym_conditional_expression] = STATE(423), - [sym_assignment_expression] = STATE(423), - [sym_pointer_expression] = STATE(423), - [sym_logical_expression] = STATE(423), - [sym_bitwise_expression] = STATE(423), - [sym_equality_expression] = STATE(423), - [sym_relational_expression] = STATE(423), - [sym_shift_expression] = STATE(423), - [sym_math_expression] = STATE(423), - [sym_cast_expression] = STATE(423), - [sym_sizeof_expression] = STATE(423), - [sym_subscript_expression] = STATE(423), - [sym_call_expression] = STATE(423), - [sym_field_expression] = STATE(423), - [sym_compound_literal_expression] = STATE(423), - [sym_parenthesized_expression] = STATE(423), - [sym_concatenated_string] = STATE(423), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(1016), - [sym_char_literal] = ACTIONS(1016), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(1018), - [sym_false] = ACTIONS(1018), - [sym_null] = ACTIONS(1018), - [sym_identifier] = ACTIONS(1018), + [sym__expression] = STATE(420), + [sym_conditional_expression] = STATE(420), + [sym_assignment_expression] = STATE(420), + [sym_pointer_expression] = STATE(420), + [sym_logical_expression] = STATE(420), + [sym_bitwise_expression] = STATE(420), + [sym_equality_expression] = STATE(420), + [sym_relational_expression] = STATE(420), + [sym_shift_expression] = STATE(420), + [sym_math_expression] = STATE(420), + [sym_cast_expression] = STATE(420), + [sym_sizeof_expression] = STATE(420), + [sym_subscript_expression] = STATE(420), + [sym_call_expression] = STATE(420), + [sym_field_expression] = STATE(420), + [sym_compound_literal_expression] = STATE(420), + [sym_parenthesized_expression] = STATE(420), + [sym_concatenated_string] = STATE(420), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1000), + [sym_char_literal] = ACTIONS(1000), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(1004), + [sym_false] = ACTIONS(1004), + [sym_null] = ACTIONS(1004), + [sym_identifier] = ACTIONS(1004), [sym_comment] = ACTIONS(39), }, [234] = { - [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_COLON] = ACTIONS(1006), [sym_comment] = ACTIONS(39), }, [235] = { - [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1008), [sym_comment] = ACTIONS(39), }, [236] = { - [sym_identifier] = ACTIONS(1024), + [sym_compound_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(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, [237] = { - [sym__expression] = STATE(427), - [sym_conditional_expression] = STATE(427), - [sym_assignment_expression] = STATE(427), - [sym_pointer_expression] = STATE(427), - [sym_logical_expression] = STATE(427), - [sym_bitwise_expression] = STATE(427), - [sym_equality_expression] = STATE(427), - [sym_relational_expression] = STATE(427), - [sym_shift_expression] = STATE(427), - [sym_math_expression] = STATE(427), - [sym_cast_expression] = STATE(427), - [sym_sizeof_expression] = STATE(427), - [sym_subscript_expression] = STATE(427), - [sym_call_expression] = STATE(427), - [sym_field_expression] = STATE(427), - [sym_compound_literal_expression] = STATE(427), - [sym_parenthesized_expression] = STATE(427), - [sym_concatenated_string] = STATE(427), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1026), - [sym_char_literal] = ACTIONS(1026), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1024), [sym_comment] = ACTIONS(39), }, [238] = { - [sym__expression] = STATE(428), - [sym_conditional_expression] = STATE(428), - [sym_assignment_expression] = STATE(428), - [sym_pointer_expression] = STATE(428), - [sym_logical_expression] = STATE(428), - [sym_bitwise_expression] = STATE(428), - [sym_equality_expression] = STATE(428), - [sym_relational_expression] = STATE(428), - [sym_shift_expression] = STATE(428), - [sym_math_expression] = STATE(428), - [sym_cast_expression] = STATE(428), - [sym_sizeof_expression] = STATE(428), - [sym_subscript_expression] = STATE(428), - [sym_call_expression] = STATE(428), - [sym_field_expression] = STATE(428), - [sym_compound_literal_expression] = STATE(428), - [sym_parenthesized_expression] = STATE(428), - [sym_concatenated_string] = STATE(428), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1030), - [sym_char_literal] = ACTIONS(1030), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_identifier] = ACTIONS(1032), + [sym__expression] = STATE(433), + [sym_conditional_expression] = STATE(433), + [sym_assignment_expression] = STATE(433), + [sym_pointer_expression] = STATE(433), + [sym_logical_expression] = STATE(433), + [sym_bitwise_expression] = STATE(433), + [sym_equality_expression] = STATE(433), + [sym_relational_expression] = STATE(433), + [sym_shift_expression] = STATE(433), + [sym_math_expression] = STATE(433), + [sym_cast_expression] = STATE(433), + [sym_sizeof_expression] = STATE(433), + [sym_subscript_expression] = STATE(433), + [sym_call_expression] = STATE(433), + [sym_field_expression] = STATE(433), + [sym_compound_literal_expression] = STATE(433), + [sym_parenthesized_expression] = STATE(433), + [sym_concatenated_string] = STATE(433), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(1028), + [sym_char_literal] = ACTIONS(1028), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(1030), + [sym_false] = ACTIONS(1030), + [sym_null] = ACTIONS(1030), + [sym_identifier] = ACTIONS(1030), [sym_comment] = ACTIONS(39), }, [239] = { - [sym__expression] = STATE(429), - [sym_conditional_expression] = STATE(429), - [sym_assignment_expression] = STATE(429), - [sym_pointer_expression] = STATE(429), - [sym_logical_expression] = STATE(429), - [sym_bitwise_expression] = STATE(429), - [sym_equality_expression] = STATE(429), - [sym_relational_expression] = STATE(429), - [sym_shift_expression] = STATE(429), - [sym_math_expression] = STATE(429), - [sym_cast_expression] = STATE(429), - [sym_sizeof_expression] = STATE(429), - [sym_subscript_expression] = STATE(429), - [sym_call_expression] = STATE(429), - [sym_field_expression] = STATE(429), - [sym_compound_literal_expression] = STATE(429), - [sym_parenthesized_expression] = STATE(429), - [sym_concatenated_string] = STATE(429), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1034), - [sym_char_literal] = ACTIONS(1034), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_identifier] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1032), [sym_comment] = ACTIONS(39), }, [240] = { - [sym__expression] = STATE(431), - [sym_conditional_expression] = STATE(431), - [sym_assignment_expression] = STATE(431), - [sym_pointer_expression] = STATE(431), - [sym_logical_expression] = STATE(431), - [sym_bitwise_expression] = STATE(431), - [sym_equality_expression] = STATE(431), - [sym_relational_expression] = STATE(431), - [sym_shift_expression] = STATE(431), - [sym_math_expression] = STATE(431), - [sym_cast_expression] = STATE(431), - [sym_sizeof_expression] = STATE(431), - [sym_subscript_expression] = STATE(431), - [sym_call_expression] = STATE(431), - [sym_field_expression] = STATE(431), - [sym_compound_literal_expression] = STATE(431), - [sym_parenthesized_expression] = STATE(431), - [sym_concatenated_string] = STATE(431), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1040), - [sym_char_literal] = ACTIONS(1040), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1042), - [sym_false] = ACTIONS(1042), - [sym_null] = ACTIONS(1042), - [sym_identifier] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1034), [sym_comment] = ACTIONS(39), }, [241] = { - [aux_sym_concatenated_string_repeat1] = STATE(432), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_string_literal] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1036), [sym_comment] = ACTIONS(39), }, [242] = { + [sym__expression] = STATE(437), + [sym_conditional_expression] = STATE(437), + [sym_assignment_expression] = STATE(437), + [sym_pointer_expression] = STATE(437), + [sym_logical_expression] = STATE(437), + [sym_bitwise_expression] = STATE(437), + [sym_equality_expression] = STATE(437), + [sym_relational_expression] = STATE(437), + [sym_shift_expression] = STATE(437), + [sym_math_expression] = STATE(437), + [sym_cast_expression] = STATE(437), + [sym_sizeof_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_call_expression] = STATE(437), + [sym_field_expression] = STATE(437), + [sym_compound_literal_expression] = STATE(437), + [sym_parenthesized_expression] = STATE(437), + [sym_concatenated_string] = STATE(437), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1038), + [sym_char_literal] = ACTIONS(1038), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1040), + [sym_comment] = ACTIONS(39), + }, + [243] = { + [sym__expression] = STATE(438), + [sym_conditional_expression] = STATE(438), + [sym_assignment_expression] = STATE(438), + [sym_pointer_expression] = STATE(438), + [sym_logical_expression] = STATE(438), + [sym_bitwise_expression] = STATE(438), + [sym_equality_expression] = STATE(438), + [sym_relational_expression] = STATE(438), + [sym_shift_expression] = STATE(438), + [sym_math_expression] = STATE(438), + [sym_cast_expression] = STATE(438), + [sym_sizeof_expression] = STATE(438), + [sym_subscript_expression] = STATE(438), + [sym_call_expression] = STATE(438), + [sym_field_expression] = STATE(438), + [sym_compound_literal_expression] = STATE(438), + [sym_parenthesized_expression] = STATE(438), + [sym_concatenated_string] = STATE(438), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1042), + [sym_char_literal] = ACTIONS(1042), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1044), + [sym_comment] = ACTIONS(39), + }, + [244] = { + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_concatenated_string] = STATE(439), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1046), + [sym_char_literal] = ACTIONS(1046), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), + [sym_comment] = ACTIONS(39), + }, + [245] = { + [sym__expression] = STATE(441), + [sym_conditional_expression] = STATE(441), + [sym_assignment_expression] = STATE(441), + [sym_pointer_expression] = STATE(441), + [sym_logical_expression] = STATE(441), + [sym_bitwise_expression] = STATE(441), + [sym_equality_expression] = STATE(441), + [sym_relational_expression] = STATE(441), + [sym_shift_expression] = STATE(441), + [sym_math_expression] = STATE(441), + [sym_cast_expression] = STATE(441), + [sym_sizeof_expression] = STATE(441), + [sym_subscript_expression] = STATE(441), + [sym_call_expression] = STATE(441), + [sym_field_expression] = STATE(441), + [sym_compound_literal_expression] = STATE(441), + [sym_parenthesized_expression] = STATE(441), + [sym_concatenated_string] = STATE(441), [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1052), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1054), + [sym_false] = ACTIONS(1054), + [sym_null] = ACTIONS(1054), + [sym_identifier] = ACTIONS(1054), + [sym_comment] = ACTIONS(39), + }, + [246] = { + [aux_sym_concatenated_string_repeat1] = STATE(442), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), + [sym_string_literal] = ACTIONS(1060), + [sym_comment] = ACTIONS(39), + }, + [247] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1066), [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_static] = ACTIONS(86), [anon_sym_auto] = ACTIONS(86), [anon_sym_register] = ACTIONS(86), @@ -11365,225 +11496,225 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(86), [anon_sym_volatile] = ACTIONS(86), [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1060), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(1072), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [243] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1064), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_RBRACE] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [anon_sym_struct] = ACTIONS(1062), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_switch] = ACTIONS(1062), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_goto] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1064), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_sizeof] = ACTIONS(1062), - [sym_number_literal] = ACTIONS(1064), - [sym_char_literal] = ACTIONS(1064), - [sym_string_literal] = ACTIONS(1064), - [sym_true] = ACTIONS(1062), - [sym_false] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1062), + [248] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_case] = ACTIONS(1074), + [anon_sym_default] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_sizeof] = ACTIONS(1074), + [sym_number_literal] = ACTIONS(1076), + [sym_char_literal] = ACTIONS(1076), + [sym_string_literal] = ACTIONS(1076), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1074), [sym_comment] = ACTIONS(39), }, - [244] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1068), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1066), - [sym_preproc_directive] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_typedef] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_static] = ACTIONS(1066), - [anon_sym_auto] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_inline] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [anon_sym_restrict] = ACTIONS(1066), - [anon_sym_volatile] = ACTIONS(1066), - [anon_sym__Atomic] = ACTIONS(1066), - [anon_sym_unsigned] = ACTIONS(1066), - [anon_sym_long] = ACTIONS(1066), - [anon_sym_short] = ACTIONS(1066), - [sym_primitive_type] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1066), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_switch] = ACTIONS(1066), - [anon_sym_case] = ACTIONS(1066), - [anon_sym_default] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_goto] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1068), - [anon_sym_sizeof] = ACTIONS(1066), - [sym_number_literal] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1068), - [sym_string_literal] = ACTIONS(1068), - [sym_true] = ACTIONS(1066), - [sym_false] = ACTIONS(1066), - [sym_null] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1066), + [249] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1080), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [sym_char_literal] = ACTIONS(1080), + [sym_string_literal] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1078), [sym_comment] = ACTIONS(39), }, - [245] = { - [sym__declarator] = STATE(434), - [sym_pointer_declarator] = STATE(434), - [sym_function_declarator] = STATE(434), - [sym_array_declarator] = STATE(434), + [250] = { + [sym__declarator] = STATE(444), + [sym_pointer_declarator] = STATE(444), + [sym_function_declarator] = STATE(444), + [sym_array_declarator] = STATE(444), [sym_init_declarator] = STATE(46), [anon_sym_LPAREN] = ACTIONS(90), [anon_sym_SEMI] = ACTIONS(92), - [anon_sym_STAR] = ACTIONS(520), - [sym_identifier] = ACTIONS(1070), + [anon_sym_STAR] = ACTIONS(524), + [sym_identifier] = ACTIONS(1082), [sym_comment] = ACTIONS(39), }, - [246] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_STAR_EQ] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1086), - [anon_sym_PERCENT_EQ] = ACTIONS(1086), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - [anon_sym_LT_LT_EQ] = ACTIONS(1086), - [anon_sym_GT_GT_EQ] = ACTIONS(1086), - [anon_sym_AMP_EQ] = ACTIONS(1086), - [anon_sym_CARET_EQ] = ACTIONS(1086), - [anon_sym_PIPE_EQ] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [251] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(1088), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1096), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [247] = { - [anon_sym_SEMI] = ACTIONS(1076), + [252] = { + [anon_sym_SEMI] = ACTIONS(1088), [sym_comment] = ACTIONS(39), }, - [248] = { - [sym_preproc_include] = STATE(455), - [sym_preproc_def] = STATE(455), - [sym_preproc_function_def] = STATE(455), - [sym_preproc_call] = STATE(455), - [sym_preproc_if_in_compound_statement] = STATE(243), - [sym_preproc_ifdef_in_compound_statement] = STATE(244), - [sym_declaration] = STATE(455), - [sym_type_definition] = STATE(455), - [sym__declaration_specifiers] = STATE(245), - [sym_compound_statement] = STATE(455), + [253] = { + [sym_preproc_include] = STATE(465), + [sym_preproc_def] = STATE(465), + [sym_preproc_function_def] = STATE(465), + [sym_preproc_call] = STATE(465), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(465), + [sym_type_definition] = STATE(465), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(465), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -11591,55 +11722,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(455), - [sym_expression_statement] = STATE(455), - [sym_if_statement] = STATE(455), - [sym_switch_statement] = STATE(455), - [sym_case_statement] = STATE(455), - [sym_while_statement] = STATE(455), - [sym_do_statement] = STATE(455), - [sym_for_statement] = STATE(455), - [sym_return_statement] = STATE(455), - [sym_break_statement] = STATE(455), - [sym_continue_statement] = STATE(455), - [sym_goto_statement] = STATE(455), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [sym__empty_declaration] = STATE(455), + [sym_labeled_statement] = STATE(465), + [sym_expression_statement] = STATE(465), + [sym_if_statement] = STATE(465), + [sym_switch_statement] = STATE(465), + [sym_case_statement] = STATE(465), + [sym_while_statement] = STATE(465), + [sym_do_statement] = STATE(465), + [sym_for_statement] = STATE(465), + [sym_return_statement] = STATE(465), + [sym_break_statement] = STATE(465), + [sym_continue_statement] = STATE(465), + [sym_goto_statement] = STATE(465), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym__empty_declaration] = STATE(465), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(455), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(465), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(530), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(532), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(534), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(538), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(1112), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -11655,66 +11786,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), [sym_comment] = ACTIONS(39), }, - [249] = { + [254] = { [sym_type_qualifier] = STATE(115), [sym__type_specifier] = STATE(113), [sym_sized_type_specifier] = STATE(113), [sym_enum_specifier] = STATE(113), [sym_struct_specifier] = STATE(113), [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(456), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(466), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), [sym_macro_type_specifier] = STATE(113), [aux_sym_type_definition_repeat1] = STATE(115), [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -11726,272 +11857,272 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [250] = { - [sym__expression] = STATE(400), - [sym_conditional_expression] = STATE(400), - [sym_assignment_expression] = STATE(400), - [sym_pointer_expression] = STATE(400), - [sym_logical_expression] = STATE(400), - [sym_bitwise_expression] = STATE(400), - [sym_equality_expression] = STATE(400), - [sym_relational_expression] = STATE(400), - [sym_shift_expression] = STATE(400), - [sym_math_expression] = STATE(400), - [sym_cast_expression] = STATE(400), - [sym_sizeof_expression] = STATE(400), - [sym_subscript_expression] = STATE(400), - [sym_call_expression] = STATE(400), - [sym_field_expression] = STATE(400), - [sym_compound_literal_expression] = STATE(400), - [sym_parenthesized_expression] = STATE(400), - [sym_concatenated_string] = STATE(400), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(966), - [sym_char_literal] = ACTIONS(966), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), + [255] = { + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_concatenated_string] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(978), + [sym_char_literal] = ACTIONS(978), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), [sym_comment] = ACTIONS(39), }, - [251] = { - [anon_sym_LPAREN] = ACTIONS(1114), - [anon_sym_COMMA] = ACTIONS(1114), - [anon_sym_RPAREN] = ACTIONS(1114), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym_LBRACE] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1114), - [anon_sym_EQ] = ACTIONS(1114), + [256] = { + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_COMMA] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_EQ] = ACTIONS(1126), [sym_comment] = ACTIONS(39), }, - [252] = { - [sym__expression] = STATE(427), - [sym_conditional_expression] = STATE(427), - [sym_assignment_expression] = STATE(427), - [sym_pointer_expression] = STATE(427), - [sym_logical_expression] = STATE(427), - [sym_bitwise_expression] = STATE(427), - [sym_equality_expression] = STATE(427), - [sym_relational_expression] = STATE(427), - [sym_shift_expression] = STATE(427), - [sym_math_expression] = STATE(427), - [sym_cast_expression] = STATE(427), - [sym_sizeof_expression] = STATE(427), - [sym_subscript_expression] = STATE(427), - [sym_call_expression] = STATE(427), - [sym_field_expression] = STATE(427), - [sym_compound_literal_expression] = STATE(427), - [sym_parenthesized_expression] = STATE(427), - [sym_concatenated_string] = STATE(427), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1026), - [sym_char_literal] = ACTIONS(1026), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), + [257] = { + [sym__expression] = STATE(437), + [sym_conditional_expression] = STATE(437), + [sym_assignment_expression] = STATE(437), + [sym_pointer_expression] = STATE(437), + [sym_logical_expression] = STATE(437), + [sym_bitwise_expression] = STATE(437), + [sym_equality_expression] = STATE(437), + [sym_relational_expression] = STATE(437), + [sym_shift_expression] = STATE(437), + [sym_math_expression] = STATE(437), + [sym_cast_expression] = STATE(437), + [sym_sizeof_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_call_expression] = STATE(437), + [sym_field_expression] = STATE(437), + [sym_compound_literal_expression] = STATE(437), + [sym_parenthesized_expression] = STATE(437), + [sym_concatenated_string] = STATE(437), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1038), + [sym_char_literal] = ACTIONS(1038), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1040), [sym_comment] = ACTIONS(39), }, - [253] = { - [sym__expression] = STATE(428), - [sym_conditional_expression] = STATE(428), - [sym_assignment_expression] = STATE(428), - [sym_pointer_expression] = STATE(428), - [sym_logical_expression] = STATE(428), - [sym_bitwise_expression] = STATE(428), - [sym_equality_expression] = STATE(428), - [sym_relational_expression] = STATE(428), - [sym_shift_expression] = STATE(428), - [sym_math_expression] = STATE(428), - [sym_cast_expression] = STATE(428), - [sym_sizeof_expression] = STATE(428), - [sym_subscript_expression] = STATE(428), - [sym_call_expression] = STATE(428), - [sym_field_expression] = STATE(428), - [sym_compound_literal_expression] = STATE(428), - [sym_parenthesized_expression] = STATE(428), - [sym_concatenated_string] = STATE(428), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1030), - [sym_char_literal] = ACTIONS(1030), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_identifier] = ACTIONS(1032), + [258] = { + [sym__expression] = STATE(438), + [sym_conditional_expression] = STATE(438), + [sym_assignment_expression] = STATE(438), + [sym_pointer_expression] = STATE(438), + [sym_logical_expression] = STATE(438), + [sym_bitwise_expression] = STATE(438), + [sym_equality_expression] = STATE(438), + [sym_relational_expression] = STATE(438), + [sym_shift_expression] = STATE(438), + [sym_math_expression] = STATE(438), + [sym_cast_expression] = STATE(438), + [sym_sizeof_expression] = STATE(438), + [sym_subscript_expression] = STATE(438), + [sym_call_expression] = STATE(438), + [sym_field_expression] = STATE(438), + [sym_compound_literal_expression] = STATE(438), + [sym_parenthesized_expression] = STATE(438), + [sym_concatenated_string] = STATE(438), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1042), + [sym_char_literal] = ACTIONS(1042), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1044), [sym_comment] = ACTIONS(39), }, - [254] = { - [sym__expression] = STATE(429), - [sym_conditional_expression] = STATE(429), - [sym_assignment_expression] = STATE(429), - [sym_pointer_expression] = STATE(429), - [sym_logical_expression] = STATE(429), - [sym_bitwise_expression] = STATE(429), - [sym_equality_expression] = STATE(429), - [sym_relational_expression] = STATE(429), - [sym_shift_expression] = STATE(429), - [sym_math_expression] = STATE(429), - [sym_cast_expression] = STATE(429), - [sym_sizeof_expression] = STATE(429), - [sym_subscript_expression] = STATE(429), - [sym_call_expression] = STATE(429), - [sym_field_expression] = STATE(429), - [sym_compound_literal_expression] = STATE(429), - [sym_parenthesized_expression] = STATE(429), - [sym_concatenated_string] = STATE(429), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1034), - [sym_char_literal] = ACTIONS(1034), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_identifier] = ACTIONS(1036), + [259] = { + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_concatenated_string] = STATE(439), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1046), + [sym_char_literal] = ACTIONS(1046), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, - [255] = { - [sym__expression] = STATE(458), - [sym_conditional_expression] = STATE(458), - [sym_assignment_expression] = STATE(458), - [sym_pointer_expression] = STATE(458), - [sym_logical_expression] = STATE(458), - [sym_bitwise_expression] = STATE(458), - [sym_equality_expression] = STATE(458), - [sym_relational_expression] = STATE(458), - [sym_shift_expression] = STATE(458), - [sym_math_expression] = STATE(458), - [sym_cast_expression] = STATE(458), - [sym_sizeof_expression] = STATE(458), - [sym_subscript_expression] = STATE(458), - [sym_call_expression] = STATE(458), - [sym_field_expression] = STATE(458), - [sym_compound_literal_expression] = STATE(458), - [sym_parenthesized_expression] = STATE(458), - [sym_concatenated_string] = STATE(458), - [anon_sym_LPAREN] = ACTIONS(1116), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1118), - [sym_char_literal] = ACTIONS(1118), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1120), - [sym_false] = ACTIONS(1120), - [sym_null] = ACTIONS(1120), - [sym_identifier] = ACTIONS(1120), + [260] = { + [sym__expression] = STATE(468), + [sym_conditional_expression] = STATE(468), + [sym_assignment_expression] = STATE(468), + [sym_pointer_expression] = STATE(468), + [sym_logical_expression] = STATE(468), + [sym_bitwise_expression] = STATE(468), + [sym_equality_expression] = STATE(468), + [sym_relational_expression] = STATE(468), + [sym_shift_expression] = STATE(468), + [sym_math_expression] = STATE(468), + [sym_cast_expression] = STATE(468), + [sym_sizeof_expression] = STATE(468), + [sym_subscript_expression] = STATE(468), + [sym_call_expression] = STATE(468), + [sym_field_expression] = STATE(468), + [sym_compound_literal_expression] = STATE(468), + [sym_parenthesized_expression] = STATE(468), + [sym_concatenated_string] = STATE(468), + [anon_sym_LPAREN] = ACTIONS(1128), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1130), + [sym_char_literal] = ACTIONS(1130), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1132), + [sym_false] = ACTIONS(1132), + [sym_null] = ACTIONS(1132), + [sym_identifier] = ACTIONS(1132), [sym_comment] = ACTIONS(39), }, - [256] = { - [aux_sym_concatenated_string_repeat1] = STATE(459), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_RBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_string_literal] = ACTIONS(1122), + [261] = { + [aux_sym_concatenated_string_repeat1] = STATE(469), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_RBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), + [sym_string_literal] = ACTIONS(1134), [sym_comment] = ACTIONS(39), }, - [257] = { - [anon_sym_LPAREN] = ACTIONS(1050), + [262] = { + [anon_sym_LPAREN] = ACTIONS(1062), [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_RBRACK] = ACTIONS(1054), - [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_RBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_static] = ACTIONS(86), [anon_sym_auto] = ACTIONS(86), [anon_sym_register] = ACTIONS(86), @@ -12000,41 +12131,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(86), [anon_sym_volatile] = ACTIONS(86), [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1057), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), [anon_sym_BANG] = ACTIONS(86), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), [anon_sym_TILDE] = ACTIONS(84), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1054), - [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1069), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1066), + [anon_sym_PLUS_PLUS] = ACTIONS(1066), [anon_sym_sizeof] = ACTIONS(86), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_number_literal] = ACTIONS(84), [sym_char_literal] = ACTIONS(84), [sym_string_literal] = ACTIONS(84), @@ -12044,49 +12175,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [258] = { - [sym__expression] = STATE(461), - [sym_conditional_expression] = STATE(461), - [sym_assignment_expression] = STATE(461), - [sym_pointer_expression] = STATE(461), - [sym_logical_expression] = STATE(461), - [sym_bitwise_expression] = STATE(461), - [sym_equality_expression] = STATE(461), - [sym_relational_expression] = STATE(461), - [sym_shift_expression] = STATE(461), - [sym_math_expression] = STATE(461), - [sym_cast_expression] = STATE(461), - [sym_sizeof_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_call_expression] = STATE(461), - [sym_field_expression] = STATE(461), - [sym_compound_literal_expression] = STATE(461), - [sym_parenthesized_expression] = STATE(461), - [sym_concatenated_string] = STATE(461), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1126), - [sym_char_literal] = ACTIONS(1126), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1128), - [sym_false] = ACTIONS(1128), - [sym_null] = ACTIONS(1128), - [sym_identifier] = ACTIONS(1128), + [263] = { + [sym__expression] = STATE(471), + [sym_conditional_expression] = STATE(471), + [sym_assignment_expression] = STATE(471), + [sym_pointer_expression] = STATE(471), + [sym_logical_expression] = STATE(471), + [sym_bitwise_expression] = STATE(471), + [sym_equality_expression] = STATE(471), + [sym_relational_expression] = STATE(471), + [sym_shift_expression] = STATE(471), + [sym_math_expression] = STATE(471), + [sym_cast_expression] = STATE(471), + [sym_sizeof_expression] = STATE(471), + [sym_subscript_expression] = STATE(471), + [sym_call_expression] = STATE(471), + [sym_field_expression] = STATE(471), + [sym_compound_literal_expression] = STATE(471), + [sym_parenthesized_expression] = STATE(471), + [sym_concatenated_string] = STATE(471), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_RBRACK] = ACTIONS(1136), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1138), + [sym_char_literal] = ACTIONS(1138), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1140), + [sym_false] = ACTIONS(1140), + [sym_null] = ACTIONS(1140), + [sym_identifier] = ACTIONS(1140), [sym_comment] = ACTIONS(39), }, - [259] = { - [sym_storage_class_specifier] = STATE(462), - [sym_type_qualifier] = STATE(462), - [aux_sym__declaration_specifiers_repeat1] = STATE(462), + [264] = { + [sym_storage_class_specifier] = STATE(472), + [sym_type_qualifier] = STATE(472), + [aux_sym__declaration_specifiers_repeat1] = STATE(472), [anon_sym_LPAREN] = ACTIONS(98), [anon_sym_extern] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(98), @@ -12116,58 +12247,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(100), [sym_comment] = ACTIONS(39), }, - [260] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1124), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [265] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1136), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [261] = { + [266] = { [sym_storage_class_specifier] = STATE(50), [sym_type_qualifier] = STATE(50), - [sym__type_specifier] = STATE(475), - [sym_sized_type_specifier] = STATE(475), - [sym_enum_specifier] = STATE(475), - [sym_struct_specifier] = STATE(475), - [sym_union_specifier] = STATE(475), - [sym_macro_type_specifier] = STATE(475), + [sym__type_specifier] = STATE(485), + [sym_sized_type_specifier] = STATE(485), + [sym_enum_specifier] = STATE(485), + [sym_struct_specifier] = STATE(485), + [sym_union_specifier] = STATE(485), + [sym_macro_type_specifier] = STATE(485), [aux_sym__declaration_specifiers_repeat1] = STATE(50), - [aux_sym_sized_type_specifier_repeat1] = STATE(262), + [aux_sym_sized_type_specifier_repeat1] = STATE(267), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -12177,18 +12308,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(588), - [anon_sym_long] = ACTIONS(588), - [anon_sym_short] = ACTIONS(588), - [sym_primitive_type] = ACTIONS(1158), + [anon_sym_unsigned] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [sym_primitive_type] = ACTIONS(1170), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [262] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(476), + [267] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(486), [anon_sym_LPAREN] = ACTIONS(106), [anon_sym_extern] = ACTIONS(108), [anon_sym_STAR] = ACTIONS(106), @@ -12201,9 +12332,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(108), [anon_sym_volatile] = ACTIONS(108), [anon_sym__Atomic] = ACTIONS(108), - [anon_sym_unsigned] = ACTIONS(1160), - [anon_sym_long] = ACTIONS(1160), - [anon_sym_short] = ACTIONS(1160), + [anon_sym_unsigned] = ACTIONS(1172), + [anon_sym_long] = ACTIONS(1172), + [anon_sym_short] = ACTIONS(1172), [sym_primitive_type] = ACTIONS(112), [anon_sym_AMP] = ACTIONS(106), [anon_sym_BANG] = ACTIONS(106), @@ -12222,303 +12353,303 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(114), [sym_comment] = ACTIONS(39), }, - [263] = { - [sym__expression] = STATE(481), - [sym_conditional_expression] = STATE(481), - [sym_assignment_expression] = STATE(481), - [sym_pointer_expression] = STATE(481), - [sym_logical_expression] = STATE(481), - [sym_bitwise_expression] = STATE(481), - [sym_equality_expression] = STATE(481), - [sym_relational_expression] = STATE(481), - [sym_shift_expression] = STATE(481), - [sym_math_expression] = STATE(481), - [sym_cast_expression] = STATE(481), - [sym_sizeof_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_field_expression] = STATE(481), - [sym_compound_literal_expression] = STATE(481), - [sym_parenthesized_expression] = STATE(481), - [sym_initializer_list] = STATE(482), - [sym_initializer_pair] = STATE(482), - [sym_subscript_designator] = STATE(483), - [sym_field_designator] = STATE(483), - [sym_concatenated_string] = STATE(481), - [aux_sym_initializer_pair_repeat1] = STATE(483), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(1164), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(1170), - [sym_char_literal] = ACTIONS(1170), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(1172), - [sym_false] = ACTIONS(1172), - [sym_null] = ACTIONS(1172), - [sym_identifier] = ACTIONS(1172), + [268] = { + [sym__expression] = STATE(491), + [sym_conditional_expression] = STATE(491), + [sym_assignment_expression] = STATE(491), + [sym_pointer_expression] = STATE(491), + [sym_logical_expression] = STATE(491), + [sym_bitwise_expression] = STATE(491), + [sym_equality_expression] = STATE(491), + [sym_relational_expression] = STATE(491), + [sym_shift_expression] = STATE(491), + [sym_math_expression] = STATE(491), + [sym_cast_expression] = STATE(491), + [sym_sizeof_expression] = STATE(491), + [sym_subscript_expression] = STATE(491), + [sym_call_expression] = STATE(491), + [sym_field_expression] = STATE(491), + [sym_compound_literal_expression] = STATE(491), + [sym_parenthesized_expression] = STATE(491), + [sym_initializer_list] = STATE(492), + [sym_initializer_pair] = STATE(492), + [sym_subscript_designator] = STATE(493), + [sym_field_designator] = STATE(493), + [sym_concatenated_string] = STATE(491), + [aux_sym_initializer_pair_repeat1] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_COMMA] = ACTIONS(1174), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1180), + [sym_number_literal] = ACTIONS(1182), + [sym_char_literal] = ACTIONS(1182), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(1184), + [sym_false] = ACTIONS(1184), + [sym_null] = ACTIONS(1184), + [sym_identifier] = ACTIONS(1184), [sym_comment] = ACTIONS(39), }, - [264] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_STAR_EQ] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1086), - [anon_sym_PERCENT_EQ] = ACTIONS(1086), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - [anon_sym_LT_LT_EQ] = ACTIONS(1086), - [anon_sym_GT_GT_EQ] = ACTIONS(1086), - [anon_sym_AMP_EQ] = ACTIONS(1086), - [anon_sym_CARET_EQ] = ACTIONS(1086), - [anon_sym_PIPE_EQ] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [269] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1096), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [265] = { - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_SEMI] = ACTIONS(1174), + [270] = { + [anon_sym_COMMA] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1186), [sym_comment] = ACTIONS(39), }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1176), - [sym_char_literal] = ACTIONS(1176), - [sym_string_literal] = ACTIONS(1176), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [sym_null] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1178), + [271] = { + [ts_builtin_sym_end] = ACTIONS(1188), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = 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(1190), + [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_AMP] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1188), + [sym_char_literal] = ACTIONS(1188), + [sym_string_literal] = ACTIONS(1188), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [sym_identifier] = ACTIONS(1190), [sym_comment] = ACTIONS(39), }, - [267] = { - [aux_sym_declaration_repeat1] = STATE(267), - [anon_sym_COMMA] = ACTIONS(1180), - [anon_sym_SEMI] = ACTIONS(928), + [272] = { + [aux_sym_declaration_repeat1] = STATE(272), + [anon_sym_COMMA] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(940), [sym_comment] = ACTIONS(39), }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1183), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1183), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1183), - [sym_char_literal] = ACTIONS(1183), - [sym_string_literal] = ACTIONS(1183), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [sym_null] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1185), + [273] = { + [ts_builtin_sym_end] = ACTIONS(1195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1195), + [sym_char_literal] = ACTIONS(1195), + [sym_string_literal] = ACTIONS(1195), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [sym_null] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1197), [sym_comment] = ACTIONS(39), }, - [269] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), - [sym_identifier] = ACTIONS(1187), + [274] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), + [sym_identifier] = ACTIONS(1199), [sym_comment] = ACTIONS(39), }, - [270] = { - [anon_sym_LF] = ACTIONS(1189), - [sym_preproc_arg] = ACTIONS(1189), + [275] = { + [anon_sym_LF] = ACTIONS(1201), + [sym_preproc_arg] = ACTIONS(1201), [sym_comment] = ACTIONS(47), }, - [271] = { - [aux_sym_preproc_params_repeat1] = STATE(486), - [anon_sym_COMMA] = ACTIONS(632), - [anon_sym_RPAREN] = ACTIONS(1191), + [276] = { + [aux_sym_preproc_params_repeat1] = STATE(496), + [anon_sym_COMMA] = ACTIONS(636), + [anon_sym_RPAREN] = ACTIONS(1203), [sym_comment] = ACTIONS(39), }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1195), - [sym_preproc_directive] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1195), - [anon_sym_extern] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_auto] = ACTIONS(1195), - [anon_sym_register] = ACTIONS(1195), - [anon_sym_inline] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(1195), - [anon_sym_restrict] = ACTIONS(1195), - [anon_sym_volatile] = ACTIONS(1195), - [anon_sym__Atomic] = ACTIONS(1195), - [anon_sym_unsigned] = ACTIONS(1195), - [anon_sym_long] = ACTIONS(1195), - [anon_sym_short] = ACTIONS(1195), - [sym_primitive_type] = ACTIONS(1195), - [anon_sym_enum] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_union] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_goto] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_sizeof] = ACTIONS(1195), - [sym_number_literal] = ACTIONS(1193), - [sym_char_literal] = ACTIONS(1193), - [sym_string_literal] = ACTIONS(1193), - [sym_true] = ACTIONS(1195), - [sym_false] = ACTIONS(1195), - [sym_null] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1195), + [277] = { + [ts_builtin_sym_end] = ACTIONS(1205), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1205), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1205), + [sym_char_literal] = ACTIONS(1205), + [sym_string_literal] = ACTIONS(1205), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [sym_null] = ACTIONS(1207), + [sym_identifier] = ACTIONS(1207), [sym_comment] = ACTIONS(39), }, - [273] = { - [sym_preproc_arg] = ACTIONS(1197), + [278] = { + [sym_preproc_arg] = ACTIONS(1209), [sym_comment] = ACTIONS(47), }, - [274] = { + [279] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(324), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(324), [anon_sym_LPAREN] = ACTIONS(322), @@ -12577,12 +12708,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(39), }, - [275] = { - [anon_sym_LF] = ACTIONS(1199), - [sym_preproc_arg] = ACTIONS(1201), + [280] = { + [anon_sym_LF] = ACTIONS(1211), + [sym_preproc_arg] = ACTIONS(1213), [sym_comment] = ACTIONS(47), }, - [276] = { + [281] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(342), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(342), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), @@ -12612,24 +12743,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(342), [sym_comment] = ACTIONS(39), }, - [277] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1203), + [282] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1215), [sym_comment] = ACTIONS(39), }, - [278] = { - [sym_preproc_include] = STATE(162), - [sym_preproc_def] = STATE(162), - [sym_preproc_function_def] = STATE(162), - [sym_preproc_call] = STATE(162), - [sym_preproc_if] = STATE(162), - [sym_preproc_ifdef] = STATE(162), - [sym_preproc_else] = STATE(491), - [sym_preproc_elif] = STATE(491), - [sym_function_definition] = STATE(162), - [sym_declaration] = STATE(162), - [sym_type_definition] = STATE(162), + [283] = { + [sym_preproc_include] = STATE(163), + [sym_preproc_def] = STATE(163), + [sym_preproc_function_def] = STATE(163), + [sym_preproc_call] = STATE(163), + [sym_preproc_if] = STATE(163), + [sym_preproc_ifdef] = STATE(163), + [sym_preproc_else] = STATE(501), + [sym_preproc_elif] = STATE(501), + [sym_function_definition] = STATE(163), + [sym_declaration] = STATE(163), + [sym_type_definition] = STATE(163), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(162), + [sym_linkage_specification] = STATE(163), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -12637,15 +12768,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(162), + [sym__empty_declaration] = STATE(163), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(162), + [aux_sym_translation_unit_repeat1] = STATE(163), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1205), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1217), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -12671,7 +12802,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [279] = { + [284] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(386), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(386), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(386), @@ -12701,24 +12832,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(386), [sym_comment] = ACTIONS(39), }, - [280] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1207), + [285] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1219), [sym_comment] = ACTIONS(39), }, - [281] = { - [sym_preproc_include] = STATE(162), - [sym_preproc_def] = STATE(162), - [sym_preproc_function_def] = STATE(162), - [sym_preproc_call] = STATE(162), - [sym_preproc_if] = STATE(162), - [sym_preproc_ifdef] = STATE(162), - [sym_preproc_else] = STATE(493), - [sym_preproc_elif] = STATE(493), - [sym_function_definition] = STATE(162), - [sym_declaration] = STATE(162), - [sym_type_definition] = STATE(162), + [286] = { + [sym_preproc_include] = STATE(163), + [sym_preproc_def] = STATE(163), + [sym_preproc_function_def] = STATE(163), + [sym_preproc_call] = STATE(163), + [sym_preproc_if] = STATE(163), + [sym_preproc_ifdef] = STATE(163), + [sym_preproc_else] = STATE(503), + [sym_preproc_elif] = STATE(503), + [sym_function_definition] = STATE(163), + [sym_declaration] = STATE(163), + [sym_type_definition] = STATE(163), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(162), + [sym_linkage_specification] = STATE(163), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -12726,15 +12857,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(162), + [sym__empty_declaration] = STATE(163), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(162), + [aux_sym_translation_unit_repeat1] = STATE(163), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1209), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1221), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -12760,7 +12891,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [282] = { + [287] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(394), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(394), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(394), @@ -12790,24 +12921,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(394), [sym_comment] = ACTIONS(39), }, - [283] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1211), + [288] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1223), [sym_comment] = ACTIONS(39), }, - [284] = { - [sym_preproc_include] = STATE(162), - [sym_preproc_def] = STATE(162), - [sym_preproc_function_def] = STATE(162), - [sym_preproc_call] = STATE(162), - [sym_preproc_if] = STATE(162), - [sym_preproc_ifdef] = STATE(162), - [sym_preproc_else] = STATE(495), - [sym_preproc_elif] = STATE(495), - [sym_function_definition] = STATE(162), - [sym_declaration] = STATE(162), - [sym_type_definition] = STATE(162), + [289] = { + [sym_preproc_include] = STATE(163), + [sym_preproc_def] = STATE(163), + [sym_preproc_function_def] = STATE(163), + [sym_preproc_call] = STATE(163), + [sym_preproc_if] = STATE(163), + [sym_preproc_ifdef] = STATE(163), + [sym_preproc_else] = STATE(505), + [sym_preproc_elif] = STATE(505), + [sym_function_definition] = STATE(163), + [sym_declaration] = STATE(163), + [sym_type_definition] = STATE(163), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(162), + [sym_linkage_specification] = STATE(163), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -12815,15 +12946,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(162), + [sym__empty_declaration] = STATE(163), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(162), + [aux_sym_translation_unit_repeat1] = STATE(163), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1213), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1225), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -12849,7 +12980,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [285] = { + [290] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(119), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(119), [anon_sym_LPAREN] = ACTIONS(117), @@ -12906,27 +13037,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(119), [sym_comment] = ACTIONS(39), }, - [286] = { - [sym_preproc_params] = STATE(498), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(1215), - [anon_sym_LF] = ACTIONS(1217), + [291] = { + [sym_preproc_params] = STATE(508), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(1227), + [anon_sym_LF] = ACTIONS(1229), [anon_sym_LPAREN] = ACTIONS(125), [sym_comment] = ACTIONS(47), }, - [287] = { - [sym_preproc_include] = STATE(501), - [sym_preproc_def] = STATE(501), - [sym_preproc_function_def] = STATE(501), - [sym_preproc_call] = STATE(501), - [sym_preproc_if] = STATE(501), - [sym_preproc_ifdef] = STATE(501), - [sym_preproc_else] = STATE(500), - [sym_preproc_elif] = STATE(500), - [sym_function_definition] = STATE(501), - [sym_declaration] = STATE(501), - [sym_type_definition] = STATE(501), + [292] = { + [sym_preproc_include] = STATE(511), + [sym_preproc_def] = STATE(511), + [sym_preproc_function_def] = STATE(511), + [sym_preproc_call] = STATE(511), + [sym_preproc_if] = STATE(511), + [sym_preproc_ifdef] = STATE(511), + [sym_preproc_else] = STATE(510), + [sym_preproc_elif] = STATE(510), + [sym_function_definition] = STATE(511), + [sym_declaration] = STATE(511), + [sym_type_definition] = STATE(511), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(501), + [sym_linkage_specification] = STATE(511), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -12934,15 +13065,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(501), + [sym__empty_declaration] = STATE(511), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(501), + [aux_sym_translation_unit_repeat1] = STATE(511), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1219), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1231), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -12968,20 +13099,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [288] = { - [sym_preproc_include] = STATE(504), - [sym_preproc_def] = STATE(504), - [sym_preproc_function_def] = STATE(504), - [sym_preproc_call] = STATE(504), - [sym_preproc_if] = STATE(504), - [sym_preproc_ifdef] = STATE(504), - [sym_preproc_else] = STATE(503), - [sym_preproc_elif] = STATE(503), - [sym_function_definition] = STATE(504), - [sym_declaration] = STATE(504), - [sym_type_definition] = STATE(504), + [293] = { + [sym_preproc_include] = STATE(514), + [sym_preproc_def] = STATE(514), + [sym_preproc_function_def] = STATE(514), + [sym_preproc_call] = STATE(514), + [sym_preproc_if] = STATE(514), + [sym_preproc_ifdef] = STATE(514), + [sym_preproc_else] = STATE(513), + [sym_preproc_elif] = STATE(513), + [sym_function_definition] = STATE(514), + [sym_declaration] = STATE(514), + [sym_type_definition] = STATE(514), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(504), + [sym_linkage_specification] = STATE(514), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -12989,15 +13120,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(504), + [sym__empty_declaration] = STATE(514), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(504), + [aux_sym_translation_unit_repeat1] = STATE(514), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1221), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1233), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -13023,20 +13154,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [289] = { - [sym_preproc_include] = STATE(507), - [sym_preproc_def] = STATE(507), - [sym_preproc_function_def] = STATE(507), - [sym_preproc_call] = STATE(507), - [sym_preproc_if] = STATE(507), - [sym_preproc_ifdef] = STATE(507), - [sym_preproc_else] = STATE(506), - [sym_preproc_elif] = STATE(506), - [sym_function_definition] = STATE(507), - [sym_declaration] = STATE(507), - [sym_type_definition] = STATE(507), + [294] = { + [sym_preproc_include] = STATE(517), + [sym_preproc_def] = STATE(517), + [sym_preproc_function_def] = STATE(517), + [sym_preproc_call] = STATE(517), + [sym_preproc_if] = STATE(517), + [sym_preproc_ifdef] = STATE(517), + [sym_preproc_else] = STATE(516), + [sym_preproc_elif] = STATE(516), + [sym_function_definition] = STATE(517), + [sym_declaration] = STATE(517), + [sym_type_definition] = STATE(517), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(507), + [sym_linkage_specification] = STATE(517), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -13044,15 +13175,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(507), + [sym__empty_declaration] = STATE(517), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(507), + [aux_sym_translation_unit_repeat1] = STATE(517), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1223), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1235), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -13078,11 +13209,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [290] = { - [sym_preproc_arg] = ACTIONS(1225), + [295] = { + [sym_preproc_arg] = ACTIONS(1237), [sym_comment] = ACTIONS(47), }, - [291] = { + [296] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(157), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(157), [anon_sym_LPAREN] = ACTIONS(155), @@ -13139,8 +13270,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(157), [sym_comment] = ACTIONS(39), }, - [292] = { - [sym__type_declarator] = STATE(509), + [297] = { + [sym__type_declarator] = STATE(519), [sym_pointer_type_declarator] = STATE(83), [sym_function_type_declarator] = STATE(84), [sym_array_type_declarator] = STATE(85), @@ -13149,14 +13280,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(163), [sym_comment] = ACTIONS(39), }, - [293] = { + [298] = { [sym_type_qualifier] = STATE(87), - [sym__type_specifier] = STATE(510), - [sym_sized_type_specifier] = STATE(510), - [sym_enum_specifier] = STATE(510), - [sym_struct_specifier] = STATE(510), - [sym_union_specifier] = STATE(510), - [sym_macro_type_specifier] = STATE(510), + [sym__type_specifier] = STATE(520), + [sym_sized_type_specifier] = STATE(520), + [sym_enum_specifier] = STATE(520), + [sym_struct_specifier] = STATE(520), + [sym_union_specifier] = STATE(520), + [sym_macro_type_specifier] = STATE(520), [aux_sym_type_definition_repeat1] = STATE(87), [aux_sym_sized_type_specifier_repeat1] = STATE(31), [anon_sym_const] = ACTIONS(25), @@ -13166,18 +13297,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(57), [anon_sym_long] = ACTIONS(57), [anon_sym_short] = ACTIONS(57), - [sym_primitive_type] = ACTIONS(1227), + [sym_primitive_type] = ACTIONS(1239), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [294] = { - [sym_function_definition] = STATE(512), - [sym_declaration] = STATE(512), - [sym__declaration_specifiers] = STATE(513), - [sym_declaration_list] = STATE(512), + [299] = { + [sym_function_definition] = STATE(522), + [sym_declaration] = STATE(522), + [sym__declaration_specifiers] = STATE(523), + [sym_declaration_list] = STATE(522), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -13189,7 +13320,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1241), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -13208,7 +13339,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [295] = { + [300] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(227), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(227), [anon_sym_LPAREN] = ACTIONS(225), @@ -13265,36 +13396,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(227), [sym_comment] = ACTIONS(39), }, - [296] = { - [sym_compound_statement] = STATE(516), - [sym_parameter_list] = STATE(127), - [aux_sym_declaration_repeat1] = STATE(517), + [301] = { + [sym_compound_statement] = STATE(526), + [sym_parameter_list] = STATE(128), + [aux_sym_declaration_repeat1] = STATE(527), [anon_sym_LPAREN] = ACTIONS(231), [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1245), [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_EQ] = ACTIONS(241), [sym_comment] = ACTIONS(39), }, - [297] = { - [aux_sym_declaration_repeat1] = STATE(517), + [302] = { + [aux_sym_declaration_repeat1] = STATE(527), [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1243), [sym_comment] = ACTIONS(39), }, - [298] = { - [sym_preproc_include] = STATE(298), - [sym_preproc_def] = STATE(298), - [sym_preproc_function_def] = STATE(298), - [sym_preproc_call] = STATE(298), - [sym_preproc_if] = STATE(298), - [sym_preproc_ifdef] = STATE(298), - [sym_function_definition] = STATE(298), - [sym_declaration] = STATE(298), - [sym_type_definition] = STATE(298), - [sym__declaration_specifiers] = STATE(149), - [sym_linkage_specification] = STATE(298), + [303] = { + [sym_preproc_include] = STATE(303), + [sym_preproc_def] = STATE(303), + [sym_preproc_function_def] = STATE(303), + [sym_preproc_call] = STATE(303), + [sym_preproc_if] = STATE(303), + [sym_preproc_ifdef] = STATE(303), + [sym_function_definition] = STATE(303), + [sym_declaration] = STATE(303), + [sym_type_definition] = STATE(303), + [sym__declaration_specifiers] = STATE(150), + [sym_linkage_specification] = STATE(303), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -13302,20 +13433,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(298), + [sym__empty_declaration] = STATE(303), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(298), + [aux_sym_translation_unit_repeat1] = STATE(303), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1238), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(705), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1244), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1247), - [sym_preproc_directive] = ACTIONS(1250), - [anon_sym_typedef] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1247), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1250), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1253), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(709), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1256), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1259), + [sym_preproc_directive] = ACTIONS(1262), + [anon_sym_typedef] = ACTIONS(1265), + [anon_sym_extern] = ACTIONS(1268), [anon_sym_static] = ACTIONS(273), [anon_sym_auto] = ACTIONS(273), [anon_sym_register] = ACTIONS(273), @@ -13334,24 +13465,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(294), [sym_comment] = ACTIONS(39), }, - [299] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1259), + [304] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1271), [sym_comment] = ACTIONS(39), }, - [300] = { - [sym_preproc_include] = STATE(162), - [sym_preproc_def] = STATE(162), - [sym_preproc_function_def] = STATE(162), - [sym_preproc_call] = STATE(162), - [sym_preproc_if] = STATE(162), - [sym_preproc_ifdef] = STATE(162), - [sym_preproc_else] = STATE(518), - [sym_preproc_elif] = STATE(518), - [sym_function_definition] = STATE(162), - [sym_declaration] = STATE(162), - [sym_type_definition] = STATE(162), + [305] = { + [sym_preproc_include] = STATE(163), + [sym_preproc_def] = STATE(163), + [sym_preproc_function_def] = STATE(163), + [sym_preproc_call] = STATE(163), + [sym_preproc_if] = STATE(163), + [sym_preproc_ifdef] = STATE(163), + [sym_preproc_else] = STATE(528), + [sym_preproc_elif] = STATE(528), + [sym_function_definition] = STATE(163), + [sym_declaration] = STATE(163), + [sym_type_definition] = STATE(163), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(162), + [sym_linkage_specification] = STATE(163), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -13359,15 +13490,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(162), + [sym__empty_declaration] = STATE(163), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(162), + [aux_sym_translation_unit_repeat1] = STATE(163), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1261), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1273), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -13393,19 +13524,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [301] = { - [anon_sym_LF] = ACTIONS(1263), + [306] = { + [anon_sym_LF] = ACTIONS(1275), [sym_comment] = ACTIONS(47), }, - [302] = { - [sym_parameter_list] = STATE(173), + [307] = { + [sym_parameter_list] = STATE(175), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(410), [sym_comment] = ACTIONS(39), }, - [303] = { - [sym__type_declarator] = STATE(521), + [308] = { + [sym__type_declarator] = STATE(531), [sym_pointer_type_declarator] = STATE(83), [sym_function_type_declarator] = STATE(84), [sym_array_type_declarator] = STATE(85), @@ -13414,18 +13545,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(163), [sym_comment] = ACTIONS(39), }, - [304] = { - [sym_preproc_include] = STATE(523), - [sym_preproc_def] = STATE(523), - [sym_preproc_function_def] = STATE(523), - [sym_preproc_call] = STATE(523), - [sym_preproc_if] = STATE(523), - [sym_preproc_ifdef] = STATE(523), - [sym_function_definition] = STATE(523), - [sym_declaration] = STATE(523), - [sym_type_definition] = STATE(523), + [309] = { + [sym_preproc_include] = STATE(533), + [sym_preproc_def] = STATE(533), + [sym_preproc_function_def] = STATE(533), + [sym_preproc_call] = STATE(533), + [sym_preproc_if] = STATE(533), + [sym_preproc_ifdef] = STATE(533), + [sym_function_definition] = STATE(533), + [sym_declaration] = STATE(533), + [sym_type_definition] = STATE(533), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(523), + [sym_linkage_specification] = STATE(533), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -13433,9 +13564,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(523), + [sym__empty_declaration] = STATE(533), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(523), + [aux_sym_translation_unit_repeat1] = STATE(533), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -13446,7 +13577,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1279), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -13465,118 +13596,118 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [305] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(428), - [sym_preproc_directive] = ACTIONS(428), - [anon_sym_typedef] = ACTIONS(428), - [anon_sym_extern] = ACTIONS(428), - [anon_sym_static] = ACTIONS(428), - [anon_sym_auto] = ACTIONS(428), - [anon_sym_register] = ACTIONS(428), - [anon_sym_inline] = ACTIONS(428), - [anon_sym_const] = ACTIONS(428), - [anon_sym_restrict] = ACTIONS(428), - [anon_sym_volatile] = ACTIONS(428), - [anon_sym__Atomic] = ACTIONS(428), - [anon_sym_unsigned] = ACTIONS(428), - [anon_sym_long] = ACTIONS(428), - [anon_sym_short] = ACTIONS(428), - [sym_primitive_type] = ACTIONS(428), - [anon_sym_enum] = ACTIONS(428), - [anon_sym_struct] = ACTIONS(428), - [anon_sym_union] = ACTIONS(428), - [sym_identifier] = ACTIONS(428), + [310] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(430), + [sym_preproc_directive] = ACTIONS(430), + [anon_sym_typedef] = ACTIONS(430), + [anon_sym_extern] = ACTIONS(430), + [anon_sym_static] = ACTIONS(430), + [anon_sym_auto] = ACTIONS(430), + [anon_sym_register] = ACTIONS(430), + [anon_sym_inline] = ACTIONS(430), + [anon_sym_const] = ACTIONS(430), + [anon_sym_restrict] = ACTIONS(430), + [anon_sym_volatile] = ACTIONS(430), + [anon_sym__Atomic] = ACTIONS(430), + [anon_sym_unsigned] = ACTIONS(430), + [anon_sym_long] = ACTIONS(430), + [anon_sym_short] = ACTIONS(430), + [sym_primitive_type] = ACTIONS(430), + [anon_sym_enum] = ACTIONS(430), + [anon_sym_struct] = ACTIONS(430), + [anon_sym_union] = ACTIONS(430), + [sym_identifier] = ACTIONS(430), [sym_comment] = ACTIONS(39), }, - [306] = { - [sym__declarator] = STATE(159), - [sym_pointer_declarator] = STATE(159), - [sym_function_declarator] = STATE(159), - [sym_array_declarator] = STATE(159), - [sym_init_declarator] = STATE(160), + [311] = { + [sym__declarator] = STATE(160), + [sym_pointer_declarator] = STATE(160), + [sym_function_declarator] = STATE(160), + [sym_array_declarator] = STATE(160), + [sym_init_declarator] = STATE(161), [anon_sym_LPAREN] = ACTIONS(90), [anon_sym_STAR] = ACTIONS(94), [sym_identifier] = ACTIONS(380), [sym_comment] = ACTIONS(39), }, - [307] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(524), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(526), - [sym_preproc_directive] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_static] = ACTIONS(526), - [anon_sym_auto] = ACTIONS(526), - [anon_sym_register] = ACTIONS(526), - [anon_sym_inline] = ACTIONS(526), - [anon_sym_const] = ACTIONS(526), - [anon_sym_restrict] = ACTIONS(526), - [anon_sym_volatile] = ACTIONS(526), - [anon_sym__Atomic] = ACTIONS(526), - [anon_sym_unsigned] = ACTIONS(526), - [anon_sym_long] = ACTIONS(526), - [anon_sym_short] = ACTIONS(526), - [sym_primitive_type] = ACTIONS(526), - [anon_sym_enum] = ACTIONS(526), - [anon_sym_struct] = ACTIONS(526), - [anon_sym_union] = ACTIONS(526), - [anon_sym_if] = ACTIONS(526), - [anon_sym_else] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_case] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_while] = ACTIONS(526), - [anon_sym_do] = ACTIONS(526), - [anon_sym_for] = ACTIONS(526), - [anon_sym_return] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_DASH_DASH] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(524), - [anon_sym_sizeof] = ACTIONS(526), - [sym_number_literal] = ACTIONS(524), - [sym_char_literal] = ACTIONS(524), - [sym_string_literal] = ACTIONS(524), - [sym_true] = ACTIONS(526), - [sym_false] = ACTIONS(526), - [sym_null] = ACTIONS(526), - [sym_identifier] = ACTIONS(526), + [312] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(528), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(530), + [sym_preproc_directive] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_typedef] = ACTIONS(530), + [anon_sym_extern] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(528), + [anon_sym_static] = ACTIONS(530), + [anon_sym_auto] = ACTIONS(530), + [anon_sym_register] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(530), + [anon_sym_const] = ACTIONS(530), + [anon_sym_restrict] = ACTIONS(530), + [anon_sym_volatile] = ACTIONS(530), + [anon_sym__Atomic] = ACTIONS(530), + [anon_sym_unsigned] = ACTIONS(530), + [anon_sym_long] = ACTIONS(530), + [anon_sym_short] = ACTIONS(530), + [sym_primitive_type] = ACTIONS(530), + [anon_sym_enum] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(530), + [anon_sym_union] = ACTIONS(530), + [anon_sym_if] = ACTIONS(530), + [anon_sym_else] = ACTIONS(530), + [anon_sym_switch] = ACTIONS(530), + [anon_sym_case] = ACTIONS(530), + [anon_sym_default] = ACTIONS(530), + [anon_sym_while] = ACTIONS(530), + [anon_sym_do] = ACTIONS(530), + [anon_sym_for] = ACTIONS(530), + [anon_sym_return] = ACTIONS(530), + [anon_sym_break] = ACTIONS(530), + [anon_sym_continue] = ACTIONS(530), + [anon_sym_goto] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_TILDE] = ACTIONS(528), + [anon_sym_PLUS] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_DASH_DASH] = ACTIONS(528), + [anon_sym_PLUS_PLUS] = ACTIONS(528), + [anon_sym_sizeof] = ACTIONS(530), + [sym_number_literal] = ACTIONS(528), + [sym_char_literal] = ACTIONS(528), + [sym_string_literal] = ACTIONS(528), + [sym_true] = ACTIONS(530), + [sym_false] = ACTIONS(530), + [sym_null] = ACTIONS(530), + [sym_identifier] = ACTIONS(530), [sym_comment] = ACTIONS(39), }, - [308] = { - [sym_preproc_include] = STATE(525), - [sym_preproc_def] = STATE(525), - [sym_preproc_function_def] = STATE(525), - [sym_preproc_call] = STATE(525), - [sym_preproc_if_in_compound_statement] = STATE(243), - [sym_preproc_ifdef_in_compound_statement] = STATE(244), - [sym_declaration] = STATE(525), - [sym_type_definition] = STATE(525), - [sym__declaration_specifiers] = STATE(245), - [sym_compound_statement] = STATE(525), + [313] = { + [sym_preproc_include] = STATE(535), + [sym_preproc_def] = STATE(535), + [sym_preproc_function_def] = STATE(535), + [sym_preproc_call] = STATE(535), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(535), + [sym_type_definition] = STATE(535), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(535), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -13584,55 +13715,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(525), - [sym_expression_statement] = STATE(525), - [sym_if_statement] = STATE(525), - [sym_switch_statement] = STATE(525), - [sym_case_statement] = STATE(525), - [sym_while_statement] = STATE(525), - [sym_do_statement] = STATE(525), - [sym_for_statement] = STATE(525), - [sym_return_statement] = STATE(525), - [sym_break_statement] = STATE(525), - [sym_continue_statement] = STATE(525), - [sym_goto_statement] = STATE(525), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [sym__empty_declaration] = STATE(525), + [sym_labeled_statement] = STATE(535), + [sym_expression_statement] = STATE(535), + [sym_if_statement] = STATE(535), + [sym_switch_statement] = STATE(535), + [sym_case_statement] = STATE(535), + [sym_while_statement] = STATE(535), + [sym_do_statement] = STATE(535), + [sym_for_statement] = STATE(535), + [sym_return_statement] = STATE(535), + [sym_break_statement] = STATE(535), + [sym_continue_statement] = STATE(535), + [sym_goto_statement] = STATE(535), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym__empty_declaration] = STATE(535), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(525), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(535), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(530), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(532), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(534), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(538), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -13648,351 +13779,375 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), [sym_comment] = ACTIONS(39), }, - [309] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(618), - [sym_preproc_directive] = ACTIONS(618), - [anon_sym_typedef] = ACTIONS(618), - [anon_sym_extern] = ACTIONS(618), - [anon_sym_static] = ACTIONS(618), - [anon_sym_auto] = ACTIONS(618), - [anon_sym_register] = ACTIONS(618), - [anon_sym_inline] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_restrict] = ACTIONS(618), - [anon_sym_volatile] = ACTIONS(618), - [anon_sym__Atomic] = ACTIONS(618), - [anon_sym_unsigned] = ACTIONS(618), - [anon_sym_long] = ACTIONS(618), - [anon_sym_short] = ACTIONS(618), - [sym_primitive_type] = ACTIONS(618), - [anon_sym_enum] = ACTIONS(618), - [anon_sym_struct] = ACTIONS(618), - [anon_sym_union] = ACTIONS(618), - [sym_identifier] = ACTIONS(618), + [314] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(622), + [sym_preproc_directive] = ACTIONS(622), + [anon_sym_typedef] = ACTIONS(622), + [anon_sym_extern] = ACTIONS(622), + [anon_sym_static] = ACTIONS(622), + [anon_sym_auto] = ACTIONS(622), + [anon_sym_register] = ACTIONS(622), + [anon_sym_inline] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_restrict] = ACTIONS(622), + [anon_sym_volatile] = ACTIONS(622), + [anon_sym__Atomic] = ACTIONS(622), + [anon_sym_unsigned] = ACTIONS(622), + [anon_sym_long] = ACTIONS(622), + [anon_sym_short] = ACTIONS(622), + [sym_primitive_type] = ACTIONS(622), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_struct] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [sym_identifier] = ACTIONS(622), [sym_comment] = ACTIONS(39), }, - [310] = { - [aux_sym_declaration_repeat1] = STATE(267), + [315] = { + [aux_sym_declaration_repeat1] = STATE(272), [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1283), [sym_comment] = ACTIONS(39), }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(1273), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1275), - [sym_preproc_directive] = ACTIONS(1275), - [anon_sym_typedef] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_auto] = ACTIONS(1275), - [anon_sym_register] = ACTIONS(1275), - [anon_sym_inline] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_restrict] = ACTIONS(1275), - [anon_sym_volatile] = ACTIONS(1275), - [anon_sym__Atomic] = ACTIONS(1275), - [anon_sym_unsigned] = ACTIONS(1275), - [anon_sym_long] = ACTIONS(1275), - [anon_sym_short] = ACTIONS(1275), - [sym_primitive_type] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [sym_identifier] = ACTIONS(1275), + [316] = { + [ts_builtin_sym_end] = ACTIONS(1285), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1287), [sym_comment] = ACTIONS(39), }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(1277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1279), - [sym_preproc_directive] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_RBRACE] = ACTIONS(1277), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_auto] = ACTIONS(1279), - [anon_sym_register] = ACTIONS(1279), - [anon_sym_inline] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_restrict] = ACTIONS(1279), - [anon_sym_volatile] = ACTIONS(1279), - [anon_sym__Atomic] = ACTIONS(1279), - [anon_sym_unsigned] = ACTIONS(1279), - [anon_sym_long] = ACTIONS(1279), - [anon_sym_short] = ACTIONS(1279), - [sym_primitive_type] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [anon_sym_struct] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [sym_identifier] = ACTIONS(1279), + [317] = { + [ts_builtin_sym_end] = ACTIONS(1289), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(39), }, - [313] = { - [ts_builtin_sym_end] = ACTIONS(1281), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1283), - [sym_preproc_directive] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1283), - [anon_sym_RBRACE] = ACTIONS(1281), - [anon_sym_static] = ACTIONS(1283), - [anon_sym_auto] = ACTIONS(1283), - [anon_sym_register] = ACTIONS(1283), - [anon_sym_inline] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_restrict] = ACTIONS(1283), - [anon_sym_volatile] = ACTIONS(1283), - [anon_sym__Atomic] = ACTIONS(1283), - [anon_sym_unsigned] = ACTIONS(1283), - [anon_sym_long] = ACTIONS(1283), - [anon_sym_short] = ACTIONS(1283), - [sym_primitive_type] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [anon_sym_struct] = ACTIONS(1283), - [anon_sym_union] = ACTIONS(1283), - [sym_identifier] = ACTIONS(1283), + [318] = { + [ts_builtin_sym_end] = ACTIONS(1293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [sym_identifier] = ACTIONS(1295), [sym_comment] = ACTIONS(39), }, - [314] = { - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_RPAREN] = ACTIONS(1285), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1285), + [319] = { + [sym__type_declarator] = STATE(321), + [sym_pointer_type_declarator] = STATE(83), + [sym_function_type_declarator] = STATE(84), + [sym_array_type_declarator] = STATE(85), + [sym_type_qualifier] = STATE(214), + [aux_sym_type_definition_repeat1] = STATE(214), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(402), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(404), [sym_comment] = ACTIONS(39), }, - [315] = { - [anon_sym_LPAREN] = ACTIONS(1287), - [anon_sym_RPAREN] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_LBRACK] = ACTIONS(1287), + [320] = { + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1297), [sym_comment] = ACTIONS(39), }, - [316] = { - [sym__expression] = STATE(528), - [sym_conditional_expression] = STATE(528), - [sym_assignment_expression] = STATE(528), - [sym_pointer_expression] = STATE(528), - [sym_logical_expression] = STATE(528), - [sym_bitwise_expression] = STATE(528), - [sym_equality_expression] = STATE(528), - [sym_relational_expression] = STATE(528), - [sym_shift_expression] = STATE(528), - [sym_math_expression] = STATE(528), - [sym_cast_expression] = STATE(528), - [sym_sizeof_expression] = STATE(528), - [sym_subscript_expression] = STATE(528), - [sym_call_expression] = STATE(528), - [sym_field_expression] = STATE(528), - [sym_compound_literal_expression] = STATE(528), - [sym_parenthesized_expression] = STATE(528), - [sym_concatenated_string] = STATE(528), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1291), - [sym_char_literal] = ACTIONS(1291), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1293), - [sym_false] = ACTIONS(1293), - [sym_null] = ACTIONS(1293), - [sym_identifier] = ACTIONS(1293), + [321] = { + [sym_parameter_list] = STATE(175), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_RPAREN] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(410), [sym_comment] = ACTIONS(39), }, - [317] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1289), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [322] = { + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_RPAREN] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1301), [sym_comment] = ACTIONS(39), }, - [318] = { - [ts_builtin_sym_end] = ACTIONS(1295), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1295), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1297), - [sym_preproc_directive] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_RBRACE] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_sizeof] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1295), - [sym_char_literal] = ACTIONS(1295), - [sym_string_literal] = ACTIONS(1295), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_identifier] = ACTIONS(1297), + [323] = { + [sym__expression] = STATE(538), + [sym_conditional_expression] = STATE(538), + [sym_assignment_expression] = STATE(538), + [sym_pointer_expression] = STATE(538), + [sym_logical_expression] = STATE(538), + [sym_bitwise_expression] = STATE(538), + [sym_equality_expression] = STATE(538), + [sym_relational_expression] = STATE(538), + [sym_shift_expression] = STATE(538), + [sym_math_expression] = STATE(538), + [sym_cast_expression] = STATE(538), + [sym_sizeof_expression] = STATE(538), + [sym_subscript_expression] = STATE(538), + [sym_call_expression] = STATE(538), + [sym_field_expression] = STATE(538), + [sym_compound_literal_expression] = STATE(538), + [sym_parenthesized_expression] = STATE(538), + [sym_concatenated_string] = STATE(538), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_RBRACK] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1305), + [sym_char_literal] = ACTIONS(1305), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1307), + [sym_false] = ACTIONS(1307), + [sym_null] = ACTIONS(1307), + [sym_identifier] = ACTIONS(1307), [sym_comment] = ACTIONS(39), }, - [319] = { - [ts_builtin_sym_end] = ACTIONS(1299), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1301), - [sym_preproc_directive] = ACTIONS(1301), - [anon_sym_typedef] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_auto] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_inline] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_restrict] = ACTIONS(1301), - [anon_sym_volatile] = ACTIONS(1301), - [anon_sym__Atomic] = ACTIONS(1301), - [anon_sym_unsigned] = ACTIONS(1301), - [anon_sym_long] = ACTIONS(1301), - [anon_sym_short] = ACTIONS(1301), - [sym_primitive_type] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [sym_identifier] = ACTIONS(1301), + [324] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [320] = { - [sym_preproc_include] = STATE(320), - [sym_preproc_def] = STATE(320), - [sym_preproc_function_def] = STATE(320), - [sym_preproc_call] = STATE(320), - [sym_preproc_if] = STATE(320), - [sym_preproc_ifdef] = STATE(320), - [sym_function_definition] = STATE(320), - [sym_declaration] = STATE(320), - [sym_type_definition] = STATE(320), + [325] = { + [ts_builtin_sym_end] = ACTIONS(1309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1309), + [sym_char_literal] = ACTIONS(1309), + [sym_string_literal] = ACTIONS(1309), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [sym_null] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1311), + [sym_comment] = ACTIONS(39), + }, + [326] = { + [ts_builtin_sym_end] = ACTIONS(1313), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [sym_identifier] = ACTIONS(1315), + [sym_comment] = ACTIONS(39), + }, + [327] = { + [sym_preproc_include] = STATE(327), + [sym_preproc_def] = STATE(327), + [sym_preproc_function_def] = STATE(327), + [sym_preproc_call] = STATE(327), + [sym_preproc_if] = STATE(327), + [sym_preproc_ifdef] = STATE(327), + [sym_function_definition] = STATE(327), + [sym_declaration] = STATE(327), + [sym_type_definition] = STATE(327), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(320), + [sym_linkage_specification] = STATE(327), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -14000,9 +14155,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(320), + [sym__empty_declaration] = STATE(327), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(320), + [aux_sym_translation_unit_repeat1] = STATE(327), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(249), @@ -14032,13 +14187,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(294), [sym_comment] = ACTIONS(39), }, - [321] = { - [sym_storage_class_specifier] = STATE(321), - [sym_type_qualifier] = STATE(321), - [aux_sym__declaration_specifiers_repeat1] = STATE(321), - [anon_sym_LPAREN] = ACTIONS(624), + [328] = { + [sym_storage_class_specifier] = STATE(328), + [sym_type_qualifier] = STATE(328), + [aux_sym__declaration_specifiers_repeat1] = STATE(328), + [anon_sym_LPAREN] = ACTIONS(628), [anon_sym_extern] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(624), + [anon_sym_STAR] = ACTIONS(628), [anon_sym_static] = ACTIONS(297), [anon_sym_auto] = ACTIONS(297), [anon_sym_register] = ACTIONS(297), @@ -14050,13 +14205,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(303), [sym_comment] = ACTIONS(39), }, - [322] = { - [sym_storage_class_specifier] = STATE(321), - [sym_type_qualifier] = STATE(321), - [aux_sym__declaration_specifiers_repeat1] = STATE(321), - [anon_sym_LPAREN] = ACTIONS(626), + [329] = { + [sym_storage_class_specifier] = STATE(328), + [sym_type_qualifier] = STATE(328), + [aux_sym__declaration_specifiers_repeat1] = STATE(328), + [anon_sym_LPAREN] = ACTIONS(630), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(630), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -14065,41 +14220,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(628), + [sym_identifier] = ACTIONS(632), [sym_comment] = ACTIONS(39), }, - [323] = { + [330] = { [sym_type_qualifier] = STATE(115), [sym__type_specifier] = STATE(113), [sym_sized_type_specifier] = STATE(113), [sym_enum_specifier] = STATE(113), [sym_struct_specifier] = STATE(113), [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(529), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(539), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), [sym_macro_type_specifier] = STATE(113), [aux_sym_type_definition_repeat1] = STATE(115), [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -14111,378 +14266,378 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [324] = { - [sym__expression] = STATE(400), - [sym_conditional_expression] = STATE(400), - [sym_assignment_expression] = STATE(400), - [sym_pointer_expression] = STATE(400), - [sym_logical_expression] = STATE(400), - [sym_bitwise_expression] = STATE(400), - [sym_equality_expression] = STATE(400), - [sym_relational_expression] = STATE(400), - [sym_shift_expression] = STATE(400), - [sym_math_expression] = STATE(400), - [sym_cast_expression] = STATE(400), - [sym_sizeof_expression] = STATE(400), - [sym_subscript_expression] = STATE(400), - [sym_call_expression] = STATE(400), - [sym_field_expression] = STATE(400), - [sym_compound_literal_expression] = STATE(400), - [sym_parenthesized_expression] = STATE(400), - [sym_concatenated_string] = STATE(400), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(966), - [sym_char_literal] = ACTIONS(966), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), + [331] = { + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_concatenated_string] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(978), + [sym_char_literal] = ACTIONS(978), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), [sym_comment] = ACTIONS(39), }, - [325] = { - [sym__expression] = STATE(427), - [sym_conditional_expression] = STATE(427), - [sym_assignment_expression] = STATE(427), - [sym_pointer_expression] = STATE(427), - [sym_logical_expression] = STATE(427), - [sym_bitwise_expression] = STATE(427), - [sym_equality_expression] = STATE(427), - [sym_relational_expression] = STATE(427), - [sym_shift_expression] = STATE(427), - [sym_math_expression] = STATE(427), - [sym_cast_expression] = STATE(427), - [sym_sizeof_expression] = STATE(427), - [sym_subscript_expression] = STATE(427), - [sym_call_expression] = STATE(427), - [sym_field_expression] = STATE(427), - [sym_compound_literal_expression] = STATE(427), - [sym_parenthesized_expression] = STATE(427), - [sym_concatenated_string] = STATE(427), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(1026), - [sym_char_literal] = ACTIONS(1026), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), + [332] = { + [sym__expression] = STATE(437), + [sym_conditional_expression] = STATE(437), + [sym_assignment_expression] = STATE(437), + [sym_pointer_expression] = STATE(437), + [sym_logical_expression] = STATE(437), + [sym_bitwise_expression] = STATE(437), + [sym_equality_expression] = STATE(437), + [sym_relational_expression] = STATE(437), + [sym_shift_expression] = STATE(437), + [sym_math_expression] = STATE(437), + [sym_cast_expression] = STATE(437), + [sym_sizeof_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_call_expression] = STATE(437), + [sym_field_expression] = STATE(437), + [sym_compound_literal_expression] = STATE(437), + [sym_parenthesized_expression] = STATE(437), + [sym_concatenated_string] = STATE(437), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(1038), + [sym_char_literal] = ACTIONS(1038), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1040), [sym_comment] = ACTIONS(39), }, - [326] = { - [sym__expression] = STATE(428), - [sym_conditional_expression] = STATE(428), - [sym_assignment_expression] = STATE(428), - [sym_pointer_expression] = STATE(428), - [sym_logical_expression] = STATE(428), - [sym_bitwise_expression] = STATE(428), - [sym_equality_expression] = STATE(428), - [sym_relational_expression] = STATE(428), - [sym_shift_expression] = STATE(428), - [sym_math_expression] = STATE(428), - [sym_cast_expression] = STATE(428), - [sym_sizeof_expression] = STATE(428), - [sym_subscript_expression] = STATE(428), - [sym_call_expression] = STATE(428), - [sym_field_expression] = STATE(428), - [sym_compound_literal_expression] = STATE(428), - [sym_parenthesized_expression] = STATE(428), - [sym_concatenated_string] = STATE(428), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(1030), - [sym_char_literal] = ACTIONS(1030), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_identifier] = ACTIONS(1032), + [333] = { + [sym__expression] = STATE(438), + [sym_conditional_expression] = STATE(438), + [sym_assignment_expression] = STATE(438), + [sym_pointer_expression] = STATE(438), + [sym_logical_expression] = STATE(438), + [sym_bitwise_expression] = STATE(438), + [sym_equality_expression] = STATE(438), + [sym_relational_expression] = STATE(438), + [sym_shift_expression] = STATE(438), + [sym_math_expression] = STATE(438), + [sym_cast_expression] = STATE(438), + [sym_sizeof_expression] = STATE(438), + [sym_subscript_expression] = STATE(438), + [sym_call_expression] = STATE(438), + [sym_field_expression] = STATE(438), + [sym_compound_literal_expression] = STATE(438), + [sym_parenthesized_expression] = STATE(438), + [sym_concatenated_string] = STATE(438), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(1042), + [sym_char_literal] = ACTIONS(1042), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1044), [sym_comment] = ACTIONS(39), }, - [327] = { - [sym__expression] = STATE(429), - [sym_conditional_expression] = STATE(429), - [sym_assignment_expression] = STATE(429), - [sym_pointer_expression] = STATE(429), - [sym_logical_expression] = STATE(429), - [sym_bitwise_expression] = STATE(429), - [sym_equality_expression] = STATE(429), - [sym_relational_expression] = STATE(429), - [sym_shift_expression] = STATE(429), - [sym_math_expression] = STATE(429), - [sym_cast_expression] = STATE(429), - [sym_sizeof_expression] = STATE(429), - [sym_subscript_expression] = STATE(429), - [sym_call_expression] = STATE(429), - [sym_field_expression] = STATE(429), - [sym_compound_literal_expression] = STATE(429), - [sym_parenthesized_expression] = STATE(429), - [sym_concatenated_string] = STATE(429), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(1034), - [sym_char_literal] = ACTIONS(1034), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_identifier] = ACTIONS(1036), + [334] = { + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_concatenated_string] = STATE(439), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(1046), + [sym_char_literal] = ACTIONS(1046), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, - [328] = { - [sym__expression] = STATE(531), - [sym_conditional_expression] = STATE(531), - [sym_assignment_expression] = STATE(531), - [sym_pointer_expression] = STATE(531), - [sym_logical_expression] = STATE(531), - [sym_bitwise_expression] = STATE(531), - [sym_equality_expression] = STATE(531), - [sym_relational_expression] = STATE(531), - [sym_shift_expression] = STATE(531), - [sym_math_expression] = STATE(531), - [sym_cast_expression] = STATE(531), - [sym_sizeof_expression] = STATE(531), - [sym_subscript_expression] = STATE(531), - [sym_call_expression] = STATE(531), - [sym_field_expression] = STATE(531), - [sym_compound_literal_expression] = STATE(531), - [sym_parenthesized_expression] = STATE(531), - [sym_concatenated_string] = STATE(531), - [anon_sym_LPAREN] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(1305), - [sym_char_literal] = ACTIONS(1305), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(1307), - [sym_false] = ACTIONS(1307), - [sym_null] = ACTIONS(1307), - [sym_identifier] = ACTIONS(1307), + [335] = { + [sym__expression] = STATE(541), + [sym_conditional_expression] = STATE(541), + [sym_assignment_expression] = STATE(541), + [sym_pointer_expression] = STATE(541), + [sym_logical_expression] = STATE(541), + [sym_bitwise_expression] = STATE(541), + [sym_equality_expression] = STATE(541), + [sym_relational_expression] = STATE(541), + [sym_shift_expression] = STATE(541), + [sym_math_expression] = STATE(541), + [sym_cast_expression] = STATE(541), + [sym_sizeof_expression] = STATE(541), + [sym_subscript_expression] = STATE(541), + [sym_call_expression] = STATE(541), + [sym_field_expression] = STATE(541), + [sym_compound_literal_expression] = STATE(541), + [sym_parenthesized_expression] = STATE(541), + [sym_concatenated_string] = STATE(541), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(1319), + [sym_char_literal] = ACTIONS(1319), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(1321), + [sym_false] = ACTIONS(1321), + [sym_null] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1321), [sym_comment] = ACTIONS(39), }, - [329] = { - [aux_sym_concatenated_string_repeat1] = STATE(532), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_string_literal] = ACTIONS(1309), + [336] = { + [aux_sym_concatenated_string_repeat1] = STATE(542), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), + [sym_string_literal] = ACTIONS(1323), [sym_comment] = ACTIONS(39), }, - [330] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1315), - [anon_sym_QMARK] = ACTIONS(1317), - [anon_sym_STAR_EQ] = ACTIONS(1319), - [anon_sym_SLASH_EQ] = ACTIONS(1319), - [anon_sym_PERCENT_EQ] = ACTIONS(1319), - [anon_sym_PLUS_EQ] = ACTIONS(1319), - [anon_sym_DASH_EQ] = ACTIONS(1319), - [anon_sym_LT_LT_EQ] = ACTIONS(1319), - [anon_sym_GT_GT_EQ] = ACTIONS(1319), - [anon_sym_AMP_EQ] = ACTIONS(1319), - [anon_sym_CARET_EQ] = ACTIONS(1319), - [anon_sym_PIPE_EQ] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(1323), - [anon_sym_AMP_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [337] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [331] = { - [anon_sym_LPAREN] = ACTIONS(1341), - [anon_sym_COMMA] = ACTIONS(1341), - [anon_sym_RPAREN] = ACTIONS(1341), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_LBRACK] = ACTIONS(1341), - [anon_sym_RBRACK] = ACTIONS(1341), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_auto] = ACTIONS(1343), - [anon_sym_register] = ACTIONS(1343), - [anon_sym_inline] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_restrict] = ACTIONS(1343), - [anon_sym_volatile] = ACTIONS(1343), - [anon_sym__Atomic] = ACTIONS(1343), - [anon_sym_COLON] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_TILDE] = ACTIONS(1341), - [anon_sym_PLUS] = ACTIONS(1343), - [anon_sym_DASH] = ACTIONS(1343), - [anon_sym_DASH_DASH] = ACTIONS(1341), - [anon_sym_PLUS_PLUS] = ACTIONS(1341), - [anon_sym_sizeof] = ACTIONS(1343), - [sym_number_literal] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1341), - [sym_string_literal] = ACTIONS(1341), - [sym_true] = ACTIONS(1343), - [sym_false] = ACTIONS(1343), - [sym_null] = ACTIONS(1343), - [sym_identifier] = ACTIONS(1343), + [338] = { + [anon_sym_LPAREN] = ACTIONS(1355), + [anon_sym_COMMA] = ACTIONS(1355), + [anon_sym_RPAREN] = ACTIONS(1355), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_extern] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1355), + [anon_sym_RBRACK] = ACTIONS(1355), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_auto] = ACTIONS(1357), + [anon_sym_register] = ACTIONS(1357), + [anon_sym_inline] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_restrict] = ACTIONS(1357), + [anon_sym_volatile] = ACTIONS(1357), + [anon_sym__Atomic] = ACTIONS(1357), + [anon_sym_COLON] = ACTIONS(1355), + [anon_sym_AMP] = ACTIONS(1355), + [anon_sym_BANG] = ACTIONS(1355), + [anon_sym_TILDE] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_DASH_DASH] = ACTIONS(1355), + [anon_sym_PLUS_PLUS] = ACTIONS(1355), + [anon_sym_sizeof] = ACTIONS(1357), + [sym_number_literal] = ACTIONS(1355), + [sym_char_literal] = ACTIONS(1355), + [sym_string_literal] = ACTIONS(1355), + [sym_true] = ACTIONS(1357), + [sym_false] = ACTIONS(1357), + [sym_null] = ACTIONS(1357), + [sym_identifier] = ACTIONS(1357), [sym_comment] = ACTIONS(39), }, - [332] = { - [anon_sym_COMMA] = ACTIONS(1345), - [anon_sym_RBRACE] = ACTIONS(1345), + [339] = { + [anon_sym_COMMA] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1359), [sym_comment] = ACTIONS(39), }, - [333] = { - [sym_enumerator] = STATE(332), - [anon_sym_RBRACE] = ACTIONS(1347), + [340] = { + [sym_enumerator] = STATE(339), + [anon_sym_RBRACE] = ACTIONS(1361), [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(39), }, - [334] = { - [aux_sym_enumerator_list_repeat1] = STATE(334), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_RBRACE] = ACTIONS(1345), + [341] = { + [aux_sym_enumerator_list_repeat1] = STATE(341), + [anon_sym_COMMA] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1359), [sym_comment] = ACTIONS(39), }, - [335] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1352), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1354), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1354), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1354), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1354), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1352), - [anon_sym_auto] = ACTIONS(1352), - [anon_sym_register] = ACTIONS(1352), - [anon_sym_inline] = ACTIONS(1352), - [anon_sym_const] = ACTIONS(1352), - [anon_sym_restrict] = ACTIONS(1352), - [anon_sym_volatile] = ACTIONS(1352), - [anon_sym__Atomic] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = ACTIONS(1352), - [sym_primitive_type] = ACTIONS(1352), - [anon_sym_enum] = ACTIONS(1352), - [anon_sym_struct] = ACTIONS(1352), - [anon_sym_union] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1352), + [342] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1366), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1368), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1368), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1368), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1368), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1366), [sym_comment] = ACTIONS(39), }, - [336] = { + [343] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), [sym__declaration_specifiers] = STATE(106), @@ -14493,14 +14648,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(547), - [sym_field_declaration] = STATE(547), + [sym__field_declaration_list_item] = STATE(557), + [sym_field_declaration] = STATE(557), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(547), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(557), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1356), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1370), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(191), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(193), [anon_sym_extern] = ACTIONS(23), @@ -14522,23 +14677,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [337] = { - [sym_preproc_arg] = ACTIONS(1358), + [344] = { + [sym_preproc_arg] = ACTIONS(1372), [sym_comment] = ACTIONS(47), }, - [338] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1360), + [345] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1374), [sym_comment] = ACTIONS(39), }, - [339] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1362), + [346] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1376), [sym_comment] = ACTIONS(39), }, - [340] = { + [347] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), - [sym_preproc_else_in_field_declaration_list] = STATE(552), - [sym_preproc_elif_in_field_declaration_list] = STATE(553), + [sym_preproc_else_in_field_declaration_list] = STATE(562), + [sym_preproc_elif_in_field_declaration_list] = STATE(563), [sym__declaration_specifiers] = STATE(106), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), @@ -14547,18 +14702,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(554), - [sym_field_declaration] = STATE(554), + [sym__field_declaration_list_item] = STATE(564), + [sym_field_declaration] = STATE(564), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(554), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(564), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1364), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1378), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(191), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(797), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(801), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -14578,46 +14733,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [341] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1366), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1368), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1368), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1368), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1368), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1368), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [sym_identifier] = ACTIONS(1366), + [348] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_auto] = ACTIONS(1380), + [anon_sym_register] = ACTIONS(1380), + [anon_sym_inline] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_restrict] = ACTIONS(1380), + [anon_sym_volatile] = ACTIONS(1380), + [anon_sym__Atomic] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = ACTIONS(1380), + [sym_primitive_type] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1380), [sym_comment] = ACTIONS(39), }, - [342] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1370), + [349] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1384), [sym_comment] = ACTIONS(39), }, - [343] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1372), + [350] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1386), [sym_comment] = ACTIONS(39), }, - [344] = { + [351] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), - [sym_preproc_else_in_field_declaration_list] = STATE(558), - [sym_preproc_elif_in_field_declaration_list] = STATE(559), + [sym_preproc_else_in_field_declaration_list] = STATE(568), + [sym_preproc_elif_in_field_declaration_list] = STATE(569), [sym__declaration_specifiers] = STATE(106), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), @@ -14626,18 +14781,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(554), - [sym_field_declaration] = STATE(554), + [sym__field_declaration_list_item] = STATE(564), + [sym_field_declaration] = STATE(564), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(554), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(564), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1374), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1388), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(191), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(797), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(801), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -14657,46 +14812,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [345] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1376), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1378), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1378), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1378), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1378), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1376), - [anon_sym_auto] = ACTIONS(1376), - [anon_sym_register] = ACTIONS(1376), - [anon_sym_inline] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_restrict] = ACTIONS(1376), - [anon_sym_volatile] = ACTIONS(1376), - [anon_sym__Atomic] = ACTIONS(1376), - [anon_sym_unsigned] = ACTIONS(1376), - [anon_sym_long] = ACTIONS(1376), - [anon_sym_short] = ACTIONS(1376), - [sym_primitive_type] = ACTIONS(1376), - [anon_sym_enum] = ACTIONS(1376), - [anon_sym_struct] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1376), + [352] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1390), [sym_comment] = ACTIONS(39), }, - [346] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1380), + [353] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1394), [sym_comment] = ACTIONS(39), }, - [347] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1382), + [354] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1396), [sym_comment] = ACTIONS(39), }, - [348] = { + [355] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), - [sym_preproc_else_in_field_declaration_list] = STATE(563), - [sym_preproc_elif_in_field_declaration_list] = STATE(564), + [sym_preproc_else_in_field_declaration_list] = STATE(573), + [sym_preproc_elif_in_field_declaration_list] = STATE(574), [sym__declaration_specifiers] = STATE(106), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), @@ -14705,18 +14860,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(554), - [sym_field_declaration] = STATE(554), + [sym__field_declaration_list_item] = STATE(564), + [sym_field_declaration] = STATE(564), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(554), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(564), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1384), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1398), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(191), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(797), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(801), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -14736,65 +14891,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [349] = { - [sym__field_declarator] = STATE(351), - [sym_pointer_field_declarator] = STATE(193), - [sym_function_field_declarator] = STATE(194), - [sym_array_field_declarator] = STATE(195), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(803), - [sym_identifier] = ACTIONS(476), + [356] = { + [sym__field_declarator] = STATE(358), + [sym_pointer_field_declarator] = STATE(195), + [sym_function_field_declarator] = STATE(196), + [sym_array_field_declarator] = STATE(197), + [sym_type_qualifier] = STATE(575), + [aux_sym_type_definition_repeat1] = STATE(575), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(813), [sym_comment] = ACTIONS(39), }, - [350] = { - [sym_parameter_list] = STATE(364), + [357] = { + [sym_parameter_list] = STATE(372), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(835), + [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(841), [sym_comment] = ACTIONS(39), }, - [351] = { - [sym_parameter_list] = STATE(364), + [358] = { + [sym_parameter_list] = STATE(372), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_COMMA] = ACTIONS(1388), - [anon_sym_RPAREN] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(1402), [sym_comment] = ACTIONS(39), }, - [352] = { + [359] = { + [sym__field_declarator] = STATE(577), + [sym_pointer_field_declarator] = STATE(195), + [sym_function_field_declarator] = STATE(196), + [sym_array_field_declarator] = STATE(197), + [sym_type_qualifier] = STATE(214), + [aux_sym_type_definition_repeat1] = STATE(214), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(474), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(813), + [sym_comment] = ACTIONS(39), + }, + [360] = { [sym_type_qualifier] = STATE(115), [sym__type_specifier] = STATE(113), [sym_sized_type_specifier] = STATE(113), [sym_enum_specifier] = STATE(113), [sym_struct_specifier] = STATE(113), [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(566), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(578), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), [sym_macro_type_specifier] = STATE(113), [aux_sym_type_definition_repeat1] = STATE(115), [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -14806,367 +14983,367 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [353] = { - [sym__expression] = STATE(400), - [sym_conditional_expression] = STATE(400), - [sym_assignment_expression] = STATE(400), - [sym_pointer_expression] = STATE(400), - [sym_logical_expression] = STATE(400), - [sym_bitwise_expression] = STATE(400), - [sym_equality_expression] = STATE(400), - [sym_relational_expression] = STATE(400), - [sym_shift_expression] = STATE(400), - [sym_math_expression] = STATE(400), - [sym_cast_expression] = STATE(400), - [sym_sizeof_expression] = STATE(400), - [sym_subscript_expression] = STATE(400), - [sym_call_expression] = STATE(400), - [sym_field_expression] = STATE(400), - [sym_compound_literal_expression] = STATE(400), - [sym_parenthesized_expression] = STATE(400), - [sym_concatenated_string] = STATE(400), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(966), - [sym_char_literal] = ACTIONS(966), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), + [361] = { + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_concatenated_string] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(978), + [sym_char_literal] = ACTIONS(978), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), [sym_comment] = ACTIONS(39), }, - [354] = { - [sym__expression] = STATE(427), - [sym_conditional_expression] = STATE(427), - [sym_assignment_expression] = STATE(427), - [sym_pointer_expression] = STATE(427), - [sym_logical_expression] = STATE(427), - [sym_bitwise_expression] = STATE(427), - [sym_equality_expression] = STATE(427), - [sym_relational_expression] = STATE(427), - [sym_shift_expression] = STATE(427), - [sym_math_expression] = STATE(427), - [sym_cast_expression] = STATE(427), - [sym_sizeof_expression] = STATE(427), - [sym_subscript_expression] = STATE(427), - [sym_call_expression] = STATE(427), - [sym_field_expression] = STATE(427), - [sym_compound_literal_expression] = STATE(427), - [sym_parenthesized_expression] = STATE(427), - [sym_concatenated_string] = STATE(427), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(1026), - [sym_char_literal] = ACTIONS(1026), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), + [362] = { + [sym__expression] = STATE(437), + [sym_conditional_expression] = STATE(437), + [sym_assignment_expression] = STATE(437), + [sym_pointer_expression] = STATE(437), + [sym_logical_expression] = STATE(437), + [sym_bitwise_expression] = STATE(437), + [sym_equality_expression] = STATE(437), + [sym_relational_expression] = STATE(437), + [sym_shift_expression] = STATE(437), + [sym_math_expression] = STATE(437), + [sym_cast_expression] = STATE(437), + [sym_sizeof_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_call_expression] = STATE(437), + [sym_field_expression] = STATE(437), + [sym_compound_literal_expression] = STATE(437), + [sym_parenthesized_expression] = STATE(437), + [sym_concatenated_string] = STATE(437), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(1038), + [sym_char_literal] = ACTIONS(1038), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1040), [sym_comment] = ACTIONS(39), }, - [355] = { - [sym__expression] = STATE(428), - [sym_conditional_expression] = STATE(428), - [sym_assignment_expression] = STATE(428), - [sym_pointer_expression] = STATE(428), - [sym_logical_expression] = STATE(428), - [sym_bitwise_expression] = STATE(428), - [sym_equality_expression] = STATE(428), - [sym_relational_expression] = STATE(428), - [sym_shift_expression] = STATE(428), - [sym_math_expression] = STATE(428), - [sym_cast_expression] = STATE(428), - [sym_sizeof_expression] = STATE(428), - [sym_subscript_expression] = STATE(428), - [sym_call_expression] = STATE(428), - [sym_field_expression] = STATE(428), - [sym_compound_literal_expression] = STATE(428), - [sym_parenthesized_expression] = STATE(428), - [sym_concatenated_string] = STATE(428), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(1030), - [sym_char_literal] = ACTIONS(1030), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_identifier] = ACTIONS(1032), + [363] = { + [sym__expression] = STATE(438), + [sym_conditional_expression] = STATE(438), + [sym_assignment_expression] = STATE(438), + [sym_pointer_expression] = STATE(438), + [sym_logical_expression] = STATE(438), + [sym_bitwise_expression] = STATE(438), + [sym_equality_expression] = STATE(438), + [sym_relational_expression] = STATE(438), + [sym_shift_expression] = STATE(438), + [sym_math_expression] = STATE(438), + [sym_cast_expression] = STATE(438), + [sym_sizeof_expression] = STATE(438), + [sym_subscript_expression] = STATE(438), + [sym_call_expression] = STATE(438), + [sym_field_expression] = STATE(438), + [sym_compound_literal_expression] = STATE(438), + [sym_parenthesized_expression] = STATE(438), + [sym_concatenated_string] = STATE(438), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(1042), + [sym_char_literal] = ACTIONS(1042), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1044), [sym_comment] = ACTIONS(39), }, - [356] = { - [sym__expression] = STATE(429), - [sym_conditional_expression] = STATE(429), - [sym_assignment_expression] = STATE(429), - [sym_pointer_expression] = STATE(429), - [sym_logical_expression] = STATE(429), - [sym_bitwise_expression] = STATE(429), - [sym_equality_expression] = STATE(429), - [sym_relational_expression] = STATE(429), - [sym_shift_expression] = STATE(429), - [sym_math_expression] = STATE(429), - [sym_cast_expression] = STATE(429), - [sym_sizeof_expression] = STATE(429), - [sym_subscript_expression] = STATE(429), - [sym_call_expression] = STATE(429), - [sym_field_expression] = STATE(429), - [sym_compound_literal_expression] = STATE(429), - [sym_parenthesized_expression] = STATE(429), - [sym_concatenated_string] = STATE(429), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(1034), - [sym_char_literal] = ACTIONS(1034), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_identifier] = ACTIONS(1036), + [364] = { + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_concatenated_string] = STATE(439), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(1046), + [sym_char_literal] = ACTIONS(1046), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, - [357] = { - [sym__expression] = STATE(568), - [sym_conditional_expression] = STATE(568), - [sym_assignment_expression] = STATE(568), - [sym_pointer_expression] = STATE(568), - [sym_logical_expression] = STATE(568), - [sym_bitwise_expression] = STATE(568), - [sym_equality_expression] = STATE(568), - [sym_relational_expression] = STATE(568), - [sym_shift_expression] = STATE(568), - [sym_math_expression] = STATE(568), - [sym_cast_expression] = STATE(568), - [sym_sizeof_expression] = STATE(568), - [sym_subscript_expression] = STATE(568), - [sym_call_expression] = STATE(568), - [sym_field_expression] = STATE(568), - [sym_compound_literal_expression] = STATE(568), - [sym_parenthesized_expression] = STATE(568), - [sym_concatenated_string] = STATE(568), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(1392), - [sym_char_literal] = ACTIONS(1392), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [sym_null] = ACTIONS(1394), - [sym_identifier] = ACTIONS(1394), + [365] = { + [sym__expression] = STATE(580), + [sym_conditional_expression] = STATE(580), + [sym_assignment_expression] = STATE(580), + [sym_pointer_expression] = STATE(580), + [sym_logical_expression] = STATE(580), + [sym_bitwise_expression] = STATE(580), + [sym_equality_expression] = STATE(580), + [sym_relational_expression] = STATE(580), + [sym_shift_expression] = STATE(580), + [sym_math_expression] = STATE(580), + [sym_cast_expression] = STATE(580), + [sym_sizeof_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_call_expression] = STATE(580), + [sym_field_expression] = STATE(580), + [sym_compound_literal_expression] = STATE(580), + [sym_parenthesized_expression] = STATE(580), + [sym_concatenated_string] = STATE(580), + [anon_sym_LPAREN] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(1406), + [sym_char_literal] = ACTIONS(1406), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_null] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1408), [sym_comment] = ACTIONS(39), }, - [358] = { - [aux_sym_concatenated_string_repeat1] = STATE(569), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_string_literal] = ACTIONS(1396), + [366] = { + [aux_sym_concatenated_string_repeat1] = STATE(581), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), + [sym_string_literal] = ACTIONS(1410), [sym_comment] = ACTIONS(39), }, - [359] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [367] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [360] = { - [sym__field_declarator] = STATE(583), - [sym_pointer_field_declarator] = STATE(193), - [sym_function_field_declarator] = STATE(194), - [sym_array_field_declarator] = STATE(195), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_STAR] = ACTIONS(472), - [sym_identifier] = ACTIONS(476), + [368] = { + [sym__field_declarator] = STATE(595), + [sym_pointer_field_declarator] = STATE(195), + [sym_function_field_declarator] = STATE(196), + [sym_array_field_declarator] = STATE(197), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(474), + [sym_identifier] = ACTIONS(478), [sym_comment] = ACTIONS(39), }, - [361] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1430), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1430), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1430), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1430), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1428), + [369] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1442), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1444), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1442), [sym_comment] = ACTIONS(39), }, - [362] = { - [sym__declaration_specifiers] = STATE(585), - [sym_storage_class_specifier] = STATE(261), - [sym_type_qualifier] = STATE(261), - [sym__type_specifier] = STATE(259), - [sym_sized_type_specifier] = STATE(259), - [sym_enum_specifier] = STATE(259), - [sym_struct_specifier] = STATE(259), - [sym_union_specifier] = STATE(259), - [sym__expression] = STATE(586), - [sym_conditional_expression] = STATE(586), - [sym_assignment_expression] = STATE(586), - [sym_pointer_expression] = STATE(586), - [sym_logical_expression] = STATE(586), - [sym_bitwise_expression] = STATE(586), - [sym_equality_expression] = STATE(586), - [sym_relational_expression] = STATE(586), - [sym_shift_expression] = STATE(586), - [sym_math_expression] = STATE(586), - [sym_cast_expression] = STATE(586), - [sym_sizeof_expression] = STATE(586), - [sym_subscript_expression] = STATE(586), - [sym_call_expression] = STATE(586), - [sym_field_expression] = STATE(586), - [sym_compound_literal_expression] = STATE(586), - [sym_parenthesized_expression] = STATE(586), - [sym_concatenated_string] = STATE(586), - [sym_macro_type_specifier] = STATE(259), - [aux_sym__declaration_specifiers_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(262), - [anon_sym_LPAREN] = ACTIONS(582), + [370] = { + [sym__declaration_specifiers] = STATE(597), + [sym_storage_class_specifier] = STATE(266), + [sym_type_qualifier] = STATE(266), + [sym__type_specifier] = STATE(264), + [sym_sized_type_specifier] = STATE(264), + [sym_enum_specifier] = STATE(264), + [sym_struct_specifier] = STATE(264), + [sym_union_specifier] = STATE(264), + [sym__expression] = STATE(598), + [sym_conditional_expression] = STATE(598), + [sym_assignment_expression] = STATE(598), + [sym_pointer_expression] = STATE(598), + [sym_logical_expression] = STATE(598), + [sym_bitwise_expression] = STATE(598), + [sym_equality_expression] = STATE(598), + [sym_relational_expression] = STATE(598), + [sym_shift_expression] = STATE(598), + [sym_math_expression] = STATE(598), + [sym_cast_expression] = STATE(598), + [sym_sizeof_expression] = STATE(598), + [sym_subscript_expression] = STATE(598), + [sym_call_expression] = STATE(598), + [sym_field_expression] = STATE(598), + [sym_compound_literal_expression] = STATE(598), + [sym_parenthesized_expression] = STATE(598), + [sym_concatenated_string] = STATE(598), + [sym_macro_type_specifier] = STATE(264), + [aux_sym__declaration_specifiers_repeat1] = STATE(266), + [aux_sym_sized_type_specifier_repeat1] = STATE(267), + [anon_sym_LPAREN] = ACTIONS(586), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_RBRACK] = ACTIONS(1446), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -15175,92 +15352,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(588), - [anon_sym_long] = ACTIONS(588), - [anon_sym_short] = ACTIONS(588), - [sym_primitive_type] = ACTIONS(590), + [anon_sym_unsigned] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [sym_primitive_type] = ACTIONS(594), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1434), - [sym_char_literal] = ACTIONS(1434), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [sym_null] = ACTIONS(1436), - [sym_identifier] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1448), + [sym_char_literal] = ACTIONS(1448), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [sym_null] = ACTIONS(1450), + [sym_identifier] = ACTIONS(612), [sym_comment] = ACTIONS(39), }, - [363] = { - [sym__expression] = STATE(587), - [sym_conditional_expression] = STATE(587), - [sym_assignment_expression] = STATE(587), - [sym_pointer_expression] = STATE(587), - [sym_logical_expression] = STATE(587), - [sym_bitwise_expression] = STATE(587), - [sym_equality_expression] = STATE(587), - [sym_relational_expression] = STATE(587), - [sym_shift_expression] = STATE(587), - [sym_math_expression] = STATE(587), - [sym_cast_expression] = STATE(587), - [sym_sizeof_expression] = STATE(587), - [sym_subscript_expression] = STATE(587), - [sym_call_expression] = STATE(587), - [sym_field_expression] = STATE(587), - [sym_compound_literal_expression] = STATE(587), - [sym_parenthesized_expression] = STATE(587), - [sym_concatenated_string] = STATE(587), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(1438), - [sym_char_literal] = ACTIONS(1438), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [sym_null] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1440), + [371] = { + [sym__expression] = STATE(599), + [sym_conditional_expression] = STATE(599), + [sym_assignment_expression] = STATE(599), + [sym_pointer_expression] = STATE(599), + [sym_logical_expression] = STATE(599), + [sym_bitwise_expression] = STATE(599), + [sym_equality_expression] = STATE(599), + [sym_relational_expression] = STATE(599), + [sym_shift_expression] = STATE(599), + [sym_math_expression] = STATE(599), + [sym_cast_expression] = STATE(599), + [sym_sizeof_expression] = STATE(599), + [sym_subscript_expression] = STATE(599), + [sym_call_expression] = STATE(599), + [sym_field_expression] = STATE(599), + [sym_compound_literal_expression] = STATE(599), + [sym_parenthesized_expression] = STATE(599), + [sym_concatenated_string] = STATE(599), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [sym_null] = ACTIONS(1454), + [sym_identifier] = ACTIONS(1454), [sym_comment] = ACTIONS(39), }, - [364] = { - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(1442), - [anon_sym_RPAREN] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_COLON] = ACTIONS(1442), + [372] = { + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_COLON] = ACTIONS(1456), [sym_comment] = ACTIONS(39), }, - [365] = { - [aux_sym_field_declaration_repeat1] = STATE(589), - [anon_sym_COMMA] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_COLON] = ACTIONS(1444), + [373] = { + [aux_sym_field_declaration_repeat1] = STATE(601), + [anon_sym_COMMA] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_COLON] = ACTIONS(1458), [sym_comment] = ACTIONS(39), }, - [366] = { - [sym_storage_class_specifier] = STATE(366), - [sym_type_qualifier] = STATE(366), - [aux_sym__declaration_specifiers_repeat1] = STATE(366), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_SEMI] = ACTIONS(624), + [374] = { + [sym_storage_class_specifier] = STATE(374), + [sym_type_qualifier] = STATE(374), + [aux_sym__declaration_specifiers_repeat1] = STATE(374), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_SEMI] = ACTIONS(628), [anon_sym_extern] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(624), + [anon_sym_STAR] = ACTIONS(628), [anon_sym_static] = ACTIONS(297), [anon_sym_auto] = ACTIONS(297), [anon_sym_register] = ACTIONS(297), @@ -15269,18 +15446,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(300), [anon_sym_volatile] = ACTIONS(300), [anon_sym__Atomic] = ACTIONS(300), - [anon_sym_COLON] = ACTIONS(624), + [anon_sym_COLON] = ACTIONS(628), [sym_identifier] = ACTIONS(303), [sym_comment] = ACTIONS(39), }, - [367] = { - [sym_storage_class_specifier] = STATE(366), - [sym_type_qualifier] = STATE(366), - [aux_sym__declaration_specifiers_repeat1] = STATE(366), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(626), + [375] = { + [sym_storage_class_specifier] = STATE(374), + [sym_type_qualifier] = STATE(374), + [aux_sym__declaration_specifiers_repeat1] = STATE(374), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_SEMI] = ACTIONS(630), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(630), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -15289,146 +15466,164 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_COLON] = ACTIONS(626), - [sym_identifier] = ACTIONS(628), + [anon_sym_COLON] = ACTIONS(630), + [sym_identifier] = ACTIONS(632), [sym_comment] = ACTIONS(39), }, - [368] = { - [sym_parameter_list] = STATE(374), + [376] = { + [sym_parameter_list] = STATE(383), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(905), [sym_comment] = ACTIONS(39), }, - [369] = { - [sym_parameter_list] = STATE(374), + [377] = { + [sym_parameter_list] = STATE(383), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(905), [sym_comment] = ACTIONS(39), }, - [370] = { - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), + [378] = { + [sym__abstract_declarator] = STATE(603), + [sym_abstract_pointer_declarator] = STATE(603), + [sym_abstract_function_declarator] = STATE(603), + [sym_abstract_array_declarator] = STATE(603), + [sym_type_qualifier] = STATE(604), + [sym_parameter_list] = STATE(207), + [aux_sym_type_definition_repeat1] = STATE(604), + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(498), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_const] = ACTIONS(895), + [anon_sym_restrict] = ACTIONS(895), + [anon_sym_volatile] = ACTIONS(895), + [anon_sym__Atomic] = ACTIONS(895), [sym_comment] = ACTIONS(39), }, - [371] = { - [sym__expression] = STATE(592), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(592), - [sym_logical_expression] = STATE(592), - [sym_bitwise_expression] = STATE(592), - [sym_equality_expression] = STATE(592), - [sym_relational_expression] = STATE(592), - [sym_shift_expression] = STATE(592), - [sym_math_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(592), - [sym_call_expression] = STATE(592), - [sym_field_expression] = STATE(592), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(592), - [sym_concatenated_string] = STATE(592), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_null] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1456), + [379] = { + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), [sym_comment] = ACTIONS(39), }, - [372] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1452), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [380] = { + [sym__expression] = STATE(606), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(606), + [sym_logical_expression] = STATE(606), + [sym_bitwise_expression] = STATE(606), + [sym_equality_expression] = STATE(606), + [sym_relational_expression] = STATE(606), + [sym_shift_expression] = STATE(606), + [sym_math_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym_call_expression] = STATE(606), + [sym_field_expression] = STATE(606), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(606), + [sym_concatenated_string] = STATE(606), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_RBRACK] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_null] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1470), [sym_comment] = ACTIONS(39), }, - [373] = { - [sym__declaration_specifiers] = STATE(593), - [sym_storage_class_specifier] = STATE(261), - [sym_type_qualifier] = STATE(261), - [sym__type_specifier] = STATE(259), - [sym_sized_type_specifier] = STATE(259), - [sym_enum_specifier] = STATE(259), - [sym_struct_specifier] = STATE(259), - [sym_union_specifier] = STATE(259), - [sym__expression] = STATE(592), - [sym_conditional_expression] = STATE(592), - [sym_assignment_expression] = STATE(592), - [sym_pointer_expression] = STATE(592), - [sym_logical_expression] = STATE(592), - [sym_bitwise_expression] = STATE(592), - [sym_equality_expression] = STATE(592), - [sym_relational_expression] = STATE(592), - [sym_shift_expression] = STATE(592), - [sym_math_expression] = STATE(592), - [sym_cast_expression] = STATE(592), - [sym_sizeof_expression] = STATE(592), - [sym_subscript_expression] = STATE(592), - [sym_call_expression] = STATE(592), - [sym_field_expression] = STATE(592), - [sym_compound_literal_expression] = STATE(592), - [sym_parenthesized_expression] = STATE(592), - [sym_concatenated_string] = STATE(592), - [sym_macro_type_specifier] = STATE(259), - [aux_sym__declaration_specifiers_repeat1] = STATE(261), - [aux_sym_sized_type_specifier_repeat1] = STATE(262), - [anon_sym_LPAREN] = ACTIONS(582), + [381] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [382] = { + [sym__declaration_specifiers] = STATE(607), + [sym_storage_class_specifier] = STATE(266), + [sym_type_qualifier] = STATE(266), + [sym__type_specifier] = STATE(264), + [sym_sized_type_specifier] = STATE(264), + [sym_enum_specifier] = STATE(264), + [sym_struct_specifier] = STATE(264), + [sym_union_specifier] = STATE(264), + [sym__expression] = STATE(606), + [sym_conditional_expression] = STATE(606), + [sym_assignment_expression] = STATE(606), + [sym_pointer_expression] = STATE(606), + [sym_logical_expression] = STATE(606), + [sym_bitwise_expression] = STATE(606), + [sym_equality_expression] = STATE(606), + [sym_relational_expression] = STATE(606), + [sym_shift_expression] = STATE(606), + [sym_math_expression] = STATE(606), + [sym_cast_expression] = STATE(606), + [sym_sizeof_expression] = STATE(606), + [sym_subscript_expression] = STATE(606), + [sym_call_expression] = STATE(606), + [sym_field_expression] = STATE(606), + [sym_compound_literal_expression] = STATE(606), + [sym_parenthesized_expression] = STATE(606), + [sym_concatenated_string] = STATE(606), + [sym_macro_type_specifier] = STATE(264), + [aux_sym__declaration_specifiers_repeat1] = STATE(266), + [aux_sym_sized_type_specifier_repeat1] = STATE(267), + [anon_sym_LPAREN] = ACTIONS(586), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_RBRACK] = ACTIONS(1466), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -15437,58 +15632,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(588), - [anon_sym_long] = ACTIONS(588), - [anon_sym_short] = ACTIONS(588), - [sym_primitive_type] = ACTIONS(590), + [anon_sym_unsigned] = ACTIONS(592), + [anon_sym_long] = ACTIONS(592), + [anon_sym_short] = ACTIONS(592), + [sym_primitive_type] = ACTIONS(594), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [sym_null] = ACTIONS(1456), - [sym_identifier] = ACTIONS(608), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [sym_null] = ACTIONS(1470), + [sym_identifier] = ACTIONS(612), [sym_comment] = ACTIONS(39), }, - [374] = { - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_COMMA] = ACTIONS(1458), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), + [383] = { + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), [sym_comment] = ACTIONS(39), }, - [375] = { - [sym_parameter_list] = STATE(374), + [384] = { + [sym_parameter_list] = STATE(383), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(905), [sym_comment] = ACTIONS(39), }, - [376] = { - [sym__declaration_specifiers] = STATE(212), - [sym_storage_class_specifier] = STATE(214), - [sym_type_qualifier] = STATE(214), - [sym__type_specifier] = STATE(213), - [sym_sized_type_specifier] = STATE(213), - [sym_enum_specifier] = STATE(213), - [sym_struct_specifier] = STATE(213), - [sym_union_specifier] = STATE(213), - [sym_parameter_declaration] = STATE(594), - [sym_macro_type_specifier] = STATE(213), - [aux_sym__declaration_specifiers_repeat1] = STATE(214), - [aux_sym_sized_type_specifier_repeat1] = STATE(215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1462), + [385] = { + [sym__declaration_specifiers] = STATE(217), + [sym_storage_class_specifier] = STATE(219), + [sym_type_qualifier] = STATE(219), + [sym__type_specifier] = STATE(218), + [sym_sized_type_specifier] = STATE(218), + [sym_enum_specifier] = STATE(218), + [sym_struct_specifier] = STATE(218), + [sym_union_specifier] = STATE(218), + [sym_parameter_declaration] = STATE(608), + [sym_macro_type_specifier] = STATE(218), + [aux_sym__declaration_specifiers_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1476), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -15498,61 +15693,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(516), - [anon_sym_long] = ACTIONS(516), - [anon_sym_short] = ACTIONS(516), - [sym_primitive_type] = ACTIONS(518), + [anon_sym_unsigned] = ACTIONS(520), + [anon_sym_long] = ACTIONS(520), + [anon_sym_short] = ACTIONS(520), + [sym_primitive_type] = ACTIONS(522), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [377] = { - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_COMMA] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1464), - [anon_sym_COLON] = ACTIONS(1464), + [386] = { + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_COLON] = ACTIONS(1478), [sym_comment] = ACTIONS(39), }, - [378] = { - [aux_sym_parameter_list_repeat1] = STATE(596), - [anon_sym_COMMA] = ACTIONS(910), - [anon_sym_RPAREN] = ACTIONS(1466), + [387] = { + [aux_sym_parameter_list_repeat1] = STATE(610), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(1480), [sym_comment] = ACTIONS(39), }, - [379] = { - [sym__declaration_specifiers] = STATE(212), + [388] = { + [sym__declaration_specifiers] = STATE(217), [sym__declarator] = STATE(118), - [sym__abstract_declarator] = STATE(368), + [sym__abstract_declarator] = STATE(376), [sym_pointer_declarator] = STATE(118), - [sym_abstract_pointer_declarator] = STATE(368), + [sym_abstract_pointer_declarator] = STATE(376), [sym_function_declarator] = STATE(118), - [sym_abstract_function_declarator] = STATE(368), + [sym_abstract_function_declarator] = STATE(376), [sym_array_declarator] = STATE(118), - [sym_abstract_array_declarator] = STATE(368), - [sym_storage_class_specifier] = STATE(214), - [sym_type_qualifier] = STATE(214), - [sym__type_specifier] = STATE(213), - [sym_sized_type_specifier] = STATE(213), - [sym_enum_specifier] = STATE(213), - [sym_struct_specifier] = STATE(213), - [sym_union_specifier] = STATE(213), - [sym_parameter_list] = STATE(205), - [sym_parameter_declaration] = STATE(210), - [sym_macro_type_specifier] = STATE(213), - [aux_sym__declaration_specifiers_repeat1] = STATE(214), - [aux_sym_sized_type_specifier_repeat1] = STATE(215), - [anon_sym_LPAREN] = ACTIONS(916), - [anon_sym_DOT_DOT_DOT] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(514), + [sym_abstract_array_declarator] = STATE(376), + [sym_storage_class_specifier] = STATE(219), + [sym_type_qualifier] = STATE(219), + [sym__type_specifier] = STATE(218), + [sym_sized_type_specifier] = STATE(218), + [sym_enum_specifier] = STATE(218), + [sym_struct_specifier] = STATE(218), + [sym_union_specifier] = STATE(218), + [sym_parameter_list] = STATE(207), + [sym_parameter_declaration] = STATE(215), + [sym_macro_type_specifier] = STATE(218), + [aux_sym__declaration_specifiers_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(220), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(518), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(500), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -15561,54 +15756,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(516), - [anon_sym_long] = ACTIONS(516), - [anon_sym_short] = ACTIONS(516), - [sym_primitive_type] = ACTIONS(518), + [anon_sym_unsigned] = ACTIONS(520), + [anon_sym_long] = ACTIONS(520), + [anon_sym_short] = ACTIONS(520), + [sym_primitive_type] = ACTIONS(522), [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [sym_identifier] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1484), [sym_comment] = ACTIONS(39), }, - [380] = { + [389] = { [sym__declarator] = STATE(119), - [sym__abstract_declarator] = STATE(369), + [sym__abstract_declarator] = STATE(377), [sym_pointer_declarator] = STATE(119), - [sym_abstract_pointer_declarator] = STATE(369), + [sym_abstract_pointer_declarator] = STATE(377), [sym_function_declarator] = STATE(119), - [sym_abstract_function_declarator] = STATE(369), + [sym_abstract_function_declarator] = STATE(377), [sym_array_declarator] = STATE(119), - [sym_abstract_array_declarator] = STATE(369), - [sym_parameter_list] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(916), - [anon_sym_COMMA] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(920), - [anon_sym_LBRACK] = ACTIONS(498), + [sym_abstract_array_declarator] = STATE(377), + [sym_type_qualifier] = STATE(613), + [sym_parameter_list] = STATE(207), + [aux_sym_type_definition_repeat1] = STATE(613), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), [sym_identifier] = ACTIONS(229), [sym_comment] = ACTIONS(39), }, - [381] = { - [sym_parameter_list] = STATE(127), + [390] = { + [sym_parameter_list] = STATE(128), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), [anon_sym_LBRACK] = ACTIONS(239), [sym_comment] = ACTIONS(39), }, - [382] = { - [sym_parameter_list] = STATE(374), + [391] = { + [sym_parameter_list] = STATE(383), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(905), [sym_comment] = ACTIONS(39), }, - [383] = { - [sym_storage_class_specifier] = STATE(599), - [sym_type_qualifier] = STATE(599), - [aux_sym__declaration_specifiers_repeat1] = STATE(599), + [392] = { + [sym_storage_class_specifier] = STATE(614), + [sym_type_qualifier] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(614), [anon_sym_LPAREN] = ACTIONS(243), [anon_sym_COMMA] = ACTIONS(243), [anon_sym_RPAREN] = ACTIONS(243), @@ -15626,10 +15827,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, - [384] = { - [sym_storage_class_specifier] = STATE(600), - [sym_type_qualifier] = STATE(600), - [aux_sym__declaration_specifiers_repeat1] = STATE(600), + [393] = { + [sym_storage_class_specifier] = STATE(615), + [sym_type_qualifier] = STATE(615), + [aux_sym__declaration_specifiers_repeat1] = STATE(615), [anon_sym_LPAREN] = ACTIONS(243), [anon_sym_COMMA] = ACTIONS(243), [anon_sym_RPAREN] = ACTIONS(243), @@ -15647,8 +15848,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, - [385] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(385), + [394] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(394), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_COMMA] = ACTIONS(313), [anon_sym_RPAREN] = ACTIONS(313), @@ -15663,45 +15864,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(315), [anon_sym_volatile] = ACTIONS(315), [anon_sym__Atomic] = ACTIONS(315), - [anon_sym_unsigned] = ACTIONS(1474), - [anon_sym_long] = ACTIONS(1474), - [anon_sym_short] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1488), + [anon_sym_long] = ACTIONS(1488), + [anon_sym_short] = ACTIONS(1488), [sym_primitive_type] = ACTIONS(315), [sym_identifier] = ACTIONS(315), [sym_comment] = ACTIONS(39), }, - [386] = { + [395] = { + [sym__declarator] = STATE(213), + [sym_pointer_declarator] = STATE(213), + [sym_function_declarator] = STATE(213), + [sym_array_declarator] = STATE(213), + [sym_type_qualifier] = STATE(214), + [aux_sym_type_definition_repeat1] = STATE(214), + [anon_sym_LPAREN] = ACTIONS(90), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(514), + [sym_comment] = ACTIONS(39), + }, + [396] = { [sym_type_qualifier] = STATE(115), [sym__type_specifier] = STATE(113), [sym_sized_type_specifier] = STATE(113), [sym_enum_specifier] = STATE(113), [sym_struct_specifier] = STATE(113), [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(601), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(616), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), [sym_macro_type_specifier] = STATE(113), [aux_sym_type_definition_repeat1] = STATE(115), [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -15713,360 +15930,360 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [387] = { - [sym__expression] = STATE(400), - [sym_conditional_expression] = STATE(400), - [sym_assignment_expression] = STATE(400), - [sym_pointer_expression] = STATE(400), - [sym_logical_expression] = STATE(400), - [sym_bitwise_expression] = STATE(400), - [sym_equality_expression] = STATE(400), - [sym_relational_expression] = STATE(400), - [sym_shift_expression] = STATE(400), - [sym_math_expression] = STATE(400), - [sym_cast_expression] = STATE(400), - [sym_sizeof_expression] = STATE(400), - [sym_subscript_expression] = STATE(400), - [sym_call_expression] = STATE(400), - [sym_field_expression] = STATE(400), - [sym_compound_literal_expression] = STATE(400), - [sym_parenthesized_expression] = STATE(400), - [sym_concatenated_string] = STATE(400), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(966), - [sym_char_literal] = ACTIONS(966), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), + [397] = { + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_concatenated_string] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(978), + [sym_char_literal] = ACTIONS(978), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), [sym_comment] = ACTIONS(39), }, - [388] = { - [sym__expression] = STATE(427), - [sym_conditional_expression] = STATE(427), - [sym_assignment_expression] = STATE(427), - [sym_pointer_expression] = STATE(427), - [sym_logical_expression] = STATE(427), - [sym_bitwise_expression] = STATE(427), - [sym_equality_expression] = STATE(427), - [sym_relational_expression] = STATE(427), - [sym_shift_expression] = STATE(427), - [sym_math_expression] = STATE(427), - [sym_cast_expression] = STATE(427), - [sym_sizeof_expression] = STATE(427), - [sym_subscript_expression] = STATE(427), - [sym_call_expression] = STATE(427), - [sym_field_expression] = STATE(427), - [sym_compound_literal_expression] = STATE(427), - [sym_parenthesized_expression] = STATE(427), - [sym_concatenated_string] = STATE(427), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(1026), - [sym_char_literal] = ACTIONS(1026), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), + [398] = { + [sym__expression] = STATE(437), + [sym_conditional_expression] = STATE(437), + [sym_assignment_expression] = STATE(437), + [sym_pointer_expression] = STATE(437), + [sym_logical_expression] = STATE(437), + [sym_bitwise_expression] = STATE(437), + [sym_equality_expression] = STATE(437), + [sym_relational_expression] = STATE(437), + [sym_shift_expression] = STATE(437), + [sym_math_expression] = STATE(437), + [sym_cast_expression] = STATE(437), + [sym_sizeof_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_call_expression] = STATE(437), + [sym_field_expression] = STATE(437), + [sym_compound_literal_expression] = STATE(437), + [sym_parenthesized_expression] = STATE(437), + [sym_concatenated_string] = STATE(437), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(1038), + [sym_char_literal] = ACTIONS(1038), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1040), [sym_comment] = ACTIONS(39), }, - [389] = { - [sym__expression] = STATE(428), - [sym_conditional_expression] = STATE(428), - [sym_assignment_expression] = STATE(428), - [sym_pointer_expression] = STATE(428), - [sym_logical_expression] = STATE(428), - [sym_bitwise_expression] = STATE(428), - [sym_equality_expression] = STATE(428), - [sym_relational_expression] = STATE(428), - [sym_shift_expression] = STATE(428), - [sym_math_expression] = STATE(428), - [sym_cast_expression] = STATE(428), - [sym_sizeof_expression] = STATE(428), - [sym_subscript_expression] = STATE(428), - [sym_call_expression] = STATE(428), - [sym_field_expression] = STATE(428), - [sym_compound_literal_expression] = STATE(428), - [sym_parenthesized_expression] = STATE(428), - [sym_concatenated_string] = STATE(428), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(1030), - [sym_char_literal] = ACTIONS(1030), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_identifier] = ACTIONS(1032), + [399] = { + [sym__expression] = STATE(438), + [sym_conditional_expression] = STATE(438), + [sym_assignment_expression] = STATE(438), + [sym_pointer_expression] = STATE(438), + [sym_logical_expression] = STATE(438), + [sym_bitwise_expression] = STATE(438), + [sym_equality_expression] = STATE(438), + [sym_relational_expression] = STATE(438), + [sym_shift_expression] = STATE(438), + [sym_math_expression] = STATE(438), + [sym_cast_expression] = STATE(438), + [sym_sizeof_expression] = STATE(438), + [sym_subscript_expression] = STATE(438), + [sym_call_expression] = STATE(438), + [sym_field_expression] = STATE(438), + [sym_compound_literal_expression] = STATE(438), + [sym_parenthesized_expression] = STATE(438), + [sym_concatenated_string] = STATE(438), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(1042), + [sym_char_literal] = ACTIONS(1042), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1044), [sym_comment] = ACTIONS(39), }, - [390] = { - [sym__expression] = STATE(429), - [sym_conditional_expression] = STATE(429), - [sym_assignment_expression] = STATE(429), - [sym_pointer_expression] = STATE(429), - [sym_logical_expression] = STATE(429), - [sym_bitwise_expression] = STATE(429), - [sym_equality_expression] = STATE(429), - [sym_relational_expression] = STATE(429), - [sym_shift_expression] = STATE(429), - [sym_math_expression] = STATE(429), - [sym_cast_expression] = STATE(429), - [sym_sizeof_expression] = STATE(429), - [sym_subscript_expression] = STATE(429), - [sym_call_expression] = STATE(429), - [sym_field_expression] = STATE(429), - [sym_compound_literal_expression] = STATE(429), - [sym_parenthesized_expression] = STATE(429), - [sym_concatenated_string] = STATE(429), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(1034), - [sym_char_literal] = ACTIONS(1034), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_identifier] = ACTIONS(1036), + [400] = { + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_concatenated_string] = STATE(439), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(1046), + [sym_char_literal] = ACTIONS(1046), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, - [391] = { - [sym__expression] = STATE(603), - [sym_conditional_expression] = STATE(603), - [sym_assignment_expression] = STATE(603), - [sym_pointer_expression] = STATE(603), - [sym_logical_expression] = STATE(603), - [sym_bitwise_expression] = STATE(603), - [sym_equality_expression] = STATE(603), - [sym_relational_expression] = STATE(603), - [sym_shift_expression] = STATE(603), - [sym_math_expression] = STATE(603), - [sym_cast_expression] = STATE(603), - [sym_sizeof_expression] = STATE(603), - [sym_subscript_expression] = STATE(603), - [sym_call_expression] = STATE(603), - [sym_field_expression] = STATE(603), - [sym_compound_literal_expression] = STATE(603), - [sym_parenthesized_expression] = STATE(603), - [sym_concatenated_string] = STATE(603), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(1479), - [sym_char_literal] = ACTIONS(1479), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(1481), - [sym_false] = ACTIONS(1481), - [sym_null] = ACTIONS(1481), - [sym_identifier] = ACTIONS(1481), + [401] = { + [sym__expression] = STATE(618), + [sym_conditional_expression] = STATE(618), + [sym_assignment_expression] = STATE(618), + [sym_pointer_expression] = STATE(618), + [sym_logical_expression] = STATE(618), + [sym_bitwise_expression] = STATE(618), + [sym_equality_expression] = STATE(618), + [sym_relational_expression] = STATE(618), + [sym_shift_expression] = STATE(618), + [sym_math_expression] = STATE(618), + [sym_cast_expression] = STATE(618), + [sym_sizeof_expression] = STATE(618), + [sym_subscript_expression] = STATE(618), + [sym_call_expression] = STATE(618), + [sym_field_expression] = STATE(618), + [sym_compound_literal_expression] = STATE(618), + [sym_parenthesized_expression] = STATE(618), + [sym_concatenated_string] = STATE(618), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(1493), + [sym_char_literal] = ACTIONS(1493), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(1495), + [sym_false] = ACTIONS(1495), + [sym_null] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1495), [sym_comment] = ACTIONS(39), }, - [392] = { - [aux_sym_concatenated_string_repeat1] = STATE(604), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_string_literal] = ACTIONS(1483), + [402] = { + [aux_sym_concatenated_string_repeat1] = STATE(619), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), + [sym_string_literal] = ACTIONS(1497), [sym_comment] = ACTIONS(39), }, - [393] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [403] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, - [394] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_RPAREN] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [404] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [395] = { - [anon_sym_RPAREN] = ACTIONS(1487), + [405] = { + [anon_sym_RPAREN] = ACTIONS(1501), [sym_comment] = ACTIONS(39), }, - [396] = { - [anon_sym_RPAREN] = ACTIONS(1517), + [406] = { + [anon_sym_RPAREN] = ACTIONS(1531), [sym_comment] = ACTIONS(39), }, - [397] = { - [sym_preproc_include] = STATE(646), - [sym_preproc_def] = STATE(646), - [sym_preproc_function_def] = STATE(646), - [sym_preproc_call] = STATE(646), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(641), - [sym_preproc_elif_in_compound_statement] = STATE(642), - [sym_declaration] = STATE(646), - [sym_type_definition] = STATE(646), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(646), + [407] = { + [sym_preproc_include] = STATE(661), + [sym_preproc_def] = STATE(661), + [sym_preproc_function_def] = STATE(661), + [sym_preproc_call] = STATE(661), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(656), + [sym_preproc_elif_in_compound_statement] = STATE(657), + [sym_declaration] = STATE(661), + [sym_type_definition] = STATE(661), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(661), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -16074,57 +16291,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(646), - [sym_expression_statement] = STATE(646), - [sym_if_statement] = STATE(646), - [sym_switch_statement] = STATE(646), - [sym_case_statement] = STATE(646), - [sym_while_statement] = STATE(646), - [sym_do_statement] = STATE(646), - [sym_for_statement] = STATE(646), - [sym_return_statement] = STATE(646), - [sym_break_statement] = STATE(646), - [sym_continue_statement] = STATE(646), - [sym_goto_statement] = STATE(646), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(646), + [sym_labeled_statement] = STATE(661), + [sym_expression_statement] = STATE(661), + [sym_if_statement] = STATE(661), + [sym_switch_statement] = STATE(661), + [sym_case_statement] = STATE(661), + [sym_while_statement] = STATE(661), + [sym_do_statement] = STATE(661), + [sym_for_statement] = STATE(661), + [sym_return_statement] = STATE(661), + [sym_break_statement] = STATE(661), + [sym_continue_statement] = STATE(661), + [sym_goto_statement] = STATE(661), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(661), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(646), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(661), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1521), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1535), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16140,47 +16357,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [398] = { - [sym_preproc_include] = STATE(650), - [sym_preproc_def] = STATE(650), - [sym_preproc_function_def] = STATE(650), - [sym_preproc_call] = STATE(650), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(648), - [sym_preproc_elif_in_compound_statement] = STATE(649), - [sym_declaration] = STATE(650), - [sym_type_definition] = STATE(650), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(650), + [408] = { + [sym_preproc_include] = STATE(665), + [sym_preproc_def] = STATE(665), + [sym_preproc_function_def] = STATE(665), + [sym_preproc_call] = STATE(665), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(663), + [sym_preproc_elif_in_compound_statement] = STATE(664), + [sym_declaration] = STATE(665), + [sym_type_definition] = STATE(665), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(665), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -16188,57 +16405,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(650), - [sym_expression_statement] = STATE(650), - [sym_if_statement] = STATE(650), - [sym_switch_statement] = STATE(650), - [sym_case_statement] = STATE(650), - [sym_while_statement] = STATE(650), - [sym_do_statement] = STATE(650), - [sym_for_statement] = STATE(650), - [sym_return_statement] = STATE(650), - [sym_break_statement] = STATE(650), - [sym_continue_statement] = STATE(650), - [sym_goto_statement] = STATE(650), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(650), + [sym_labeled_statement] = STATE(665), + [sym_expression_statement] = STATE(665), + [sym_if_statement] = STATE(665), + [sym_switch_statement] = STATE(665), + [sym_case_statement] = STATE(665), + [sym_while_statement] = STATE(665), + [sym_do_statement] = STATE(665), + [sym_for_statement] = STATE(665), + [sym_return_statement] = STATE(665), + [sym_break_statement] = STATE(665), + [sym_continue_statement] = STATE(665), + [sym_goto_statement] = STATE(665), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(665), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(650), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(665), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1561), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1575), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16254,47 +16471,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [399] = { - [sym_preproc_include] = STATE(654), - [sym_preproc_def] = STATE(654), - [sym_preproc_function_def] = STATE(654), - [sym_preproc_call] = STATE(654), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(652), - [sym_preproc_elif_in_compound_statement] = STATE(653), - [sym_declaration] = STATE(654), - [sym_type_definition] = STATE(654), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(654), + [409] = { + [sym_preproc_include] = STATE(669), + [sym_preproc_def] = STATE(669), + [sym_preproc_function_def] = STATE(669), + [sym_preproc_call] = STATE(669), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(667), + [sym_preproc_elif_in_compound_statement] = STATE(668), + [sym_declaration] = STATE(669), + [sym_type_definition] = STATE(669), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(669), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -16302,57 +16519,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(654), - [sym_expression_statement] = STATE(654), - [sym_if_statement] = STATE(654), - [sym_switch_statement] = STATE(654), - [sym_case_statement] = STATE(654), - [sym_while_statement] = STATE(654), - [sym_do_statement] = STATE(654), - [sym_for_statement] = STATE(654), - [sym_return_statement] = STATE(654), - [sym_break_statement] = STATE(654), - [sym_continue_statement] = STATE(654), - [sym_goto_statement] = STATE(654), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(654), + [sym_labeled_statement] = STATE(669), + [sym_expression_statement] = STATE(669), + [sym_if_statement] = STATE(669), + [sym_switch_statement] = STATE(669), + [sym_case_statement] = STATE(669), + [sym_while_statement] = STATE(669), + [sym_do_statement] = STATE(669), + [sym_for_statement] = STATE(669), + [sym_return_statement] = STATE(669), + [sym_break_statement] = STATE(669), + [sym_continue_statement] = STATE(669), + [sym_goto_statement] = STATE(669), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(669), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(654), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(669), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1563), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1577), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16368,188 +16585,188 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [400] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1565), - [anon_sym_EQ] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1565), - [anon_sym_QMARK] = ACTIONS(1565), - [anon_sym_STAR_EQ] = ACTIONS(1565), - [anon_sym_SLASH_EQ] = ACTIONS(1565), - [anon_sym_PERCENT_EQ] = ACTIONS(1565), - [anon_sym_PLUS_EQ] = ACTIONS(1565), - [anon_sym_DASH_EQ] = ACTIONS(1565), - [anon_sym_LT_LT_EQ] = ACTIONS(1565), - [anon_sym_GT_GT_EQ] = ACTIONS(1565), - [anon_sym_AMP_EQ] = ACTIONS(1565), - [anon_sym_CARET_EQ] = ACTIONS(1565), - [anon_sym_PIPE_EQ] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_PIPE_PIPE] = ACTIONS(1565), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1567), - [anon_sym_EQ_EQ] = ACTIONS(1565), - [anon_sym_BANG_EQ] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_LT_EQ] = ACTIONS(1565), - [anon_sym_GT_EQ] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_SLASH] = ACTIONS(1567), - [anon_sym_PERCENT] = ACTIONS(1567), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [401] = { - [sym__expression] = STATE(662), - [sym_conditional_expression] = STATE(662), - [sym_assignment_expression] = STATE(662), - [sym_pointer_expression] = STATE(662), - [sym_logical_expression] = STATE(662), - [sym_bitwise_expression] = STATE(662), - [sym_equality_expression] = STATE(662), - [sym_relational_expression] = STATE(662), - [sym_shift_expression] = STATE(662), - [sym_math_expression] = STATE(662), - [sym_cast_expression] = STATE(662), - [sym_sizeof_expression] = STATE(662), - [sym_subscript_expression] = STATE(662), - [sym_call_expression] = STATE(662), - [sym_field_expression] = STATE(662), - [sym_compound_literal_expression] = STATE(662), - [sym_parenthesized_expression] = STATE(662), - [sym_concatenated_string] = STATE(662), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), + [410] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(1579), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_STAR] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1579), + [anon_sym_EQ] = ACTIONS(1581), + [anon_sym_COLON] = ACTIONS(1579), + [anon_sym_QMARK] = ACTIONS(1579), + [anon_sym_STAR_EQ] = ACTIONS(1579), + [anon_sym_SLASH_EQ] = ACTIONS(1579), + [anon_sym_PERCENT_EQ] = ACTIONS(1579), + [anon_sym_PLUS_EQ] = ACTIONS(1579), + [anon_sym_DASH_EQ] = ACTIONS(1579), + [anon_sym_LT_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_GT_EQ] = ACTIONS(1579), + [anon_sym_AMP_EQ] = ACTIONS(1579), + [anon_sym_CARET_EQ] = ACTIONS(1579), + [anon_sym_PIPE_EQ] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_PIPE_PIPE] = ACTIONS(1579), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_CARET] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1581), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_SLASH] = ACTIONS(1581), + [anon_sym_PERCENT] = ACTIONS(1581), [anon_sym_DASH_DASH] = ACTIONS(1579), [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1583), - [sym_char_literal] = ACTIONS(1583), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [sym_null] = ACTIONS(1587), - [sym_identifier] = ACTIONS(1587), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [402] = { - [sym__expression] = STATE(663), - [sym_conditional_expression] = STATE(663), - [sym_assignment_expression] = STATE(663), - [sym_pointer_expression] = STATE(663), - [sym_logical_expression] = STATE(663), - [sym_bitwise_expression] = STATE(663), - [sym_equality_expression] = STATE(663), - [sym_relational_expression] = STATE(663), - [sym_shift_expression] = STATE(663), - [sym_math_expression] = STATE(663), - [sym_cast_expression] = STATE(663), - [sym_sizeof_expression] = STATE(663), - [sym_subscript_expression] = STATE(663), - [sym_call_expression] = STATE(663), - [sym_field_expression] = STATE(663), - [sym_compound_literal_expression] = STATE(663), - [sym_parenthesized_expression] = STATE(663), - [sym_concatenated_string] = STATE(663), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1589), - [sym_char_literal] = ACTIONS(1589), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(1591), - [sym_false] = ACTIONS(1591), - [sym_null] = ACTIONS(1591), - [sym_identifier] = ACTIONS(1591), + [411] = { + [sym__expression] = STATE(677), + [sym_conditional_expression] = STATE(677), + [sym_assignment_expression] = STATE(677), + [sym_pointer_expression] = STATE(677), + [sym_logical_expression] = STATE(677), + [sym_bitwise_expression] = STATE(677), + [sym_equality_expression] = STATE(677), + [sym_relational_expression] = STATE(677), + [sym_shift_expression] = STATE(677), + [sym_math_expression] = STATE(677), + [sym_cast_expression] = STATE(677), + [sym_sizeof_expression] = STATE(677), + [sym_subscript_expression] = STATE(677), + [sym_call_expression] = STATE(677), + [sym_field_expression] = STATE(677), + [sym_compound_literal_expression] = STATE(677), + [sym_parenthesized_expression] = STATE(677), + [sym_concatenated_string] = STATE(677), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(1597), + [sym_char_literal] = ACTIONS(1597), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(1601), + [sym_false] = ACTIONS(1601), + [sym_null] = ACTIONS(1601), + [sym_identifier] = ACTIONS(1601), [sym_comment] = ACTIONS(39), }, - [403] = { + [412] = { + [sym__expression] = STATE(678), + [sym_conditional_expression] = STATE(678), + [sym_assignment_expression] = STATE(678), + [sym_pointer_expression] = STATE(678), + [sym_logical_expression] = STATE(678), + [sym_bitwise_expression] = STATE(678), + [sym_equality_expression] = STATE(678), + [sym_relational_expression] = STATE(678), + [sym_shift_expression] = STATE(678), + [sym_math_expression] = STATE(678), + [sym_cast_expression] = STATE(678), + [sym_sizeof_expression] = STATE(678), + [sym_subscript_expression] = STATE(678), + [sym_call_expression] = STATE(678), + [sym_field_expression] = STATE(678), + [sym_compound_literal_expression] = STATE(678), + [sym_parenthesized_expression] = STATE(678), + [sym_concatenated_string] = STATE(678), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(1603), + [sym_char_literal] = ACTIONS(1603), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(1605), + [sym_false] = ACTIONS(1605), + [sym_null] = ACTIONS(1605), + [sym_identifier] = ACTIONS(1605), + [sym_comment] = ACTIONS(39), + }, + [413] = { [sym_type_qualifier] = STATE(115), [sym__type_specifier] = STATE(113), [sym_sized_type_specifier] = STATE(113), [sym_enum_specifier] = STATE(113), [sym_struct_specifier] = STATE(113), [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(664), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(679), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), [sym_macro_type_specifier] = STATE(113), [aux_sym_type_definition_repeat1] = STATE(115), [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -16561,301 +16778,301 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [404] = { - [sym__expression] = STATE(400), - [sym_conditional_expression] = STATE(400), - [sym_assignment_expression] = STATE(400), - [sym_pointer_expression] = STATE(400), - [sym_logical_expression] = STATE(400), - [sym_bitwise_expression] = STATE(400), - [sym_equality_expression] = STATE(400), - [sym_relational_expression] = STATE(400), - [sym_shift_expression] = STATE(400), - [sym_math_expression] = STATE(400), - [sym_cast_expression] = STATE(400), - [sym_sizeof_expression] = STATE(400), - [sym_subscript_expression] = STATE(400), - [sym_call_expression] = STATE(400), - [sym_field_expression] = STATE(400), - [sym_compound_literal_expression] = STATE(400), - [sym_parenthesized_expression] = STATE(400), - [sym_concatenated_string] = STATE(400), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(966), - [sym_char_literal] = ACTIONS(966), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), + [414] = { + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_concatenated_string] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(978), + [sym_char_literal] = ACTIONS(978), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), [sym_comment] = ACTIONS(39), }, - [405] = { - [sym__expression] = STATE(427), - [sym_conditional_expression] = STATE(427), - [sym_assignment_expression] = STATE(427), - [sym_pointer_expression] = STATE(427), - [sym_logical_expression] = STATE(427), - [sym_bitwise_expression] = STATE(427), - [sym_equality_expression] = STATE(427), - [sym_relational_expression] = STATE(427), - [sym_shift_expression] = STATE(427), - [sym_math_expression] = STATE(427), - [sym_cast_expression] = STATE(427), - [sym_sizeof_expression] = STATE(427), - [sym_subscript_expression] = STATE(427), - [sym_call_expression] = STATE(427), - [sym_field_expression] = STATE(427), - [sym_compound_literal_expression] = STATE(427), - [sym_parenthesized_expression] = STATE(427), - [sym_concatenated_string] = STATE(427), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1026), - [sym_char_literal] = ACTIONS(1026), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), + [415] = { + [sym__expression] = STATE(437), + [sym_conditional_expression] = STATE(437), + [sym_assignment_expression] = STATE(437), + [sym_pointer_expression] = STATE(437), + [sym_logical_expression] = STATE(437), + [sym_bitwise_expression] = STATE(437), + [sym_equality_expression] = STATE(437), + [sym_relational_expression] = STATE(437), + [sym_shift_expression] = STATE(437), + [sym_math_expression] = STATE(437), + [sym_cast_expression] = STATE(437), + [sym_sizeof_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_call_expression] = STATE(437), + [sym_field_expression] = STATE(437), + [sym_compound_literal_expression] = STATE(437), + [sym_parenthesized_expression] = STATE(437), + [sym_concatenated_string] = STATE(437), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1038), + [sym_char_literal] = ACTIONS(1038), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1040), [sym_comment] = ACTIONS(39), }, - [406] = { - [sym__expression] = STATE(428), - [sym_conditional_expression] = STATE(428), - [sym_assignment_expression] = STATE(428), - [sym_pointer_expression] = STATE(428), - [sym_logical_expression] = STATE(428), - [sym_bitwise_expression] = STATE(428), - [sym_equality_expression] = STATE(428), - [sym_relational_expression] = STATE(428), - [sym_shift_expression] = STATE(428), - [sym_math_expression] = STATE(428), - [sym_cast_expression] = STATE(428), - [sym_sizeof_expression] = STATE(428), - [sym_subscript_expression] = STATE(428), - [sym_call_expression] = STATE(428), - [sym_field_expression] = STATE(428), - [sym_compound_literal_expression] = STATE(428), - [sym_parenthesized_expression] = STATE(428), - [sym_concatenated_string] = STATE(428), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1030), - [sym_char_literal] = ACTIONS(1030), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_identifier] = ACTIONS(1032), + [416] = { + [sym__expression] = STATE(438), + [sym_conditional_expression] = STATE(438), + [sym_assignment_expression] = STATE(438), + [sym_pointer_expression] = STATE(438), + [sym_logical_expression] = STATE(438), + [sym_bitwise_expression] = STATE(438), + [sym_equality_expression] = STATE(438), + [sym_relational_expression] = STATE(438), + [sym_shift_expression] = STATE(438), + [sym_math_expression] = STATE(438), + [sym_cast_expression] = STATE(438), + [sym_sizeof_expression] = STATE(438), + [sym_subscript_expression] = STATE(438), + [sym_call_expression] = STATE(438), + [sym_field_expression] = STATE(438), + [sym_compound_literal_expression] = STATE(438), + [sym_parenthesized_expression] = STATE(438), + [sym_concatenated_string] = STATE(438), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1042), + [sym_char_literal] = ACTIONS(1042), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1044), [sym_comment] = ACTIONS(39), }, - [407] = { - [sym__expression] = STATE(429), - [sym_conditional_expression] = STATE(429), - [sym_assignment_expression] = STATE(429), - [sym_pointer_expression] = STATE(429), - [sym_logical_expression] = STATE(429), - [sym_bitwise_expression] = STATE(429), - [sym_equality_expression] = STATE(429), - [sym_relational_expression] = STATE(429), - [sym_shift_expression] = STATE(429), - [sym_math_expression] = STATE(429), - [sym_cast_expression] = STATE(429), - [sym_sizeof_expression] = STATE(429), - [sym_subscript_expression] = STATE(429), - [sym_call_expression] = STATE(429), - [sym_field_expression] = STATE(429), - [sym_compound_literal_expression] = STATE(429), - [sym_parenthesized_expression] = STATE(429), - [sym_concatenated_string] = STATE(429), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1034), - [sym_char_literal] = ACTIONS(1034), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_identifier] = ACTIONS(1036), + [417] = { + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_concatenated_string] = STATE(439), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1046), + [sym_char_literal] = ACTIONS(1046), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, - [408] = { - [sym__expression] = STATE(666), - [sym_conditional_expression] = STATE(666), - [sym_assignment_expression] = STATE(666), - [sym_pointer_expression] = STATE(666), - [sym_logical_expression] = STATE(666), - [sym_bitwise_expression] = STATE(666), - [sym_equality_expression] = STATE(666), - [sym_relational_expression] = STATE(666), - [sym_shift_expression] = STATE(666), - [sym_math_expression] = STATE(666), - [sym_cast_expression] = STATE(666), - [sym_sizeof_expression] = STATE(666), - [sym_subscript_expression] = STATE(666), - [sym_call_expression] = STATE(666), - [sym_field_expression] = STATE(666), - [sym_compound_literal_expression] = STATE(666), - [sym_parenthesized_expression] = STATE(666), - [sym_concatenated_string] = STATE(666), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1595), - [sym_char_literal] = ACTIONS(1595), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_identifier] = ACTIONS(1597), + [418] = { + [sym__expression] = STATE(681), + [sym_conditional_expression] = STATE(681), + [sym_assignment_expression] = STATE(681), + [sym_pointer_expression] = STATE(681), + [sym_logical_expression] = STATE(681), + [sym_bitwise_expression] = STATE(681), + [sym_equality_expression] = STATE(681), + [sym_relational_expression] = STATE(681), + [sym_shift_expression] = STATE(681), + [sym_math_expression] = STATE(681), + [sym_cast_expression] = STATE(681), + [sym_sizeof_expression] = STATE(681), + [sym_subscript_expression] = STATE(681), + [sym_call_expression] = STATE(681), + [sym_field_expression] = STATE(681), + [sym_compound_literal_expression] = STATE(681), + [sym_parenthesized_expression] = STATE(681), + [sym_concatenated_string] = STATE(681), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1609), + [sym_char_literal] = ACTIONS(1609), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(1611), + [sym_false] = ACTIONS(1611), + [sym_null] = ACTIONS(1611), + [sym_identifier] = ACTIONS(1611), [sym_comment] = ACTIONS(39), }, - [409] = { - [aux_sym_concatenated_string_repeat1] = STATE(667), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1044), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_string_literal] = ACTIONS(1599), + [419] = { + [aux_sym_concatenated_string_repeat1] = STATE(682), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_COLON] = ACTIONS(1056), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), + [sym_string_literal] = ACTIONS(1613), [sym_comment] = ACTIONS(39), }, - [410] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(1605), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [420] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(1619), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [411] = { - [sym_declaration] = STATE(682), - [sym_type_definition] = STATE(682), - [sym__declaration_specifiers] = STATE(683), - [sym_compound_statement] = STATE(682), + [421] = { + [sym_declaration] = STATE(697), + [sym_type_definition] = STATE(697), + [sym__declaration_specifiers] = STATE(698), + [sym_compound_statement] = STATE(697), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -16863,46 +17080,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(682), - [sym_expression_statement] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_switch_statement] = STATE(682), - [sym_case_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_do_statement] = STATE(682), - [sym_for_statement] = STATE(682), - [sym_return_statement] = STATE(682), - [sym_break_statement] = STATE(682), - [sym_continue_statement] = STATE(682), - [sym_goto_statement] = STATE(682), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), + [sym_labeled_statement] = STATE(697), + [sym_expression_statement] = STATE(697), + [sym_if_statement] = STATE(697), + [sym_switch_statement] = STATE(697), + [sym_case_statement] = STATE(697), + [sym_while_statement] = STATE(697), + [sym_do_statement] = STATE(697), + [sym_for_statement] = STATE(697), + [sym_return_statement] = STATE(697), + [sym_break_statement] = STATE(697), + [sym_continue_statement] = STATE(697), + [sym_goto_statement] = STATE(697), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -16918,179 +17135,179 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1645), [sym_comment] = ACTIONS(39), }, - [412] = { - [sym__expression] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(684), - [sym_logical_expression] = STATE(684), - [sym_bitwise_expression] = STATE(684), - [sym_equality_expression] = STATE(684), - [sym_relational_expression] = STATE(684), - [sym_shift_expression] = STATE(684), - [sym_math_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_subscript_expression] = STATE(684), - [sym_call_expression] = STATE(684), - [sym_field_expression] = STATE(684), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(684), - [sym_concatenated_string] = STATE(684), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1633), - [sym_char_literal] = ACTIONS(1633), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(1635), - [sym_false] = ACTIONS(1635), - [sym_null] = ACTIONS(1635), - [sym_identifier] = ACTIONS(1635), + [422] = { + [sym__expression] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(699), + [sym_logical_expression] = STATE(699), + [sym_bitwise_expression] = STATE(699), + [sym_equality_expression] = STATE(699), + [sym_relational_expression] = STATE(699), + [sym_shift_expression] = STATE(699), + [sym_math_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_subscript_expression] = STATE(699), + [sym_call_expression] = STATE(699), + [sym_field_expression] = STATE(699), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(699), + [sym_concatenated_string] = STATE(699), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(1647), + [sym_char_literal] = ACTIONS(1647), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(1649), + [sym_false] = ACTIONS(1649), + [sym_null] = ACTIONS(1649), + [sym_identifier] = ACTIONS(1649), [sym_comment] = ACTIONS(39), }, - [413] = { - [anon_sym_LPAREN] = ACTIONS(1637), + [423] = { + [anon_sym_LPAREN] = ACTIONS(1651), [sym_comment] = ACTIONS(39), }, - [414] = { - [anon_sym_LPAREN] = ACTIONS(1639), + [424] = { + [anon_sym_LPAREN] = ACTIONS(1653), [sym_comment] = ACTIONS(39), }, - [415] = { - [sym__expression] = STATE(687), - [sym_conditional_expression] = STATE(687), - [sym_assignment_expression] = STATE(687), - [sym_pointer_expression] = STATE(687), - [sym_logical_expression] = STATE(687), - [sym_bitwise_expression] = STATE(687), - [sym_equality_expression] = STATE(687), - [sym_relational_expression] = STATE(687), - [sym_shift_expression] = STATE(687), - [sym_math_expression] = STATE(687), - [sym_cast_expression] = STATE(687), - [sym_sizeof_expression] = STATE(687), - [sym_subscript_expression] = STATE(687), - [sym_call_expression] = STATE(687), - [sym_field_expression] = STATE(687), - [sym_compound_literal_expression] = STATE(687), - [sym_parenthesized_expression] = STATE(687), - [sym_concatenated_string] = STATE(687), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1641), - [sym_char_literal] = ACTIONS(1641), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(1643), - [sym_false] = ACTIONS(1643), - [sym_null] = ACTIONS(1643), - [sym_identifier] = ACTIONS(1643), + [425] = { + [sym__expression] = STATE(702), + [sym_conditional_expression] = STATE(702), + [sym_assignment_expression] = STATE(702), + [sym_pointer_expression] = STATE(702), + [sym_logical_expression] = STATE(702), + [sym_bitwise_expression] = STATE(702), + [sym_equality_expression] = STATE(702), + [sym_relational_expression] = STATE(702), + [sym_shift_expression] = STATE(702), + [sym_math_expression] = STATE(702), + [sym_cast_expression] = STATE(702), + [sym_sizeof_expression] = STATE(702), + [sym_subscript_expression] = STATE(702), + [sym_call_expression] = STATE(702), + [sym_field_expression] = STATE(702), + [sym_compound_literal_expression] = STATE(702), + [sym_parenthesized_expression] = STATE(702), + [sym_concatenated_string] = STATE(702), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1655), + [sym_char_literal] = ACTIONS(1655), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(1657), + [sym_false] = ACTIONS(1657), + [sym_null] = ACTIONS(1657), + [sym_identifier] = ACTIONS(1657), [sym_comment] = ACTIONS(39), }, - [416] = { - [anon_sym_COLON] = ACTIONS(1645), + [426] = { + [anon_sym_COLON] = ACTIONS(1659), [sym_comment] = ACTIONS(39), }, - [417] = { - [anon_sym_LPAREN] = ACTIONS(1647), + [427] = { + [anon_sym_LPAREN] = ACTIONS(1661), [sym_comment] = ACTIONS(39), }, - [418] = { - [anon_sym_LPAREN] = ACTIONS(1649), + [428] = { + [anon_sym_LPAREN] = ACTIONS(1663), [sym_comment] = ACTIONS(39), }, - [419] = { - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [429] = { + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_COLON] = ACTIONS(1665), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, - [420] = { - [anon_sym_while] = ACTIONS(1653), + [430] = { + [anon_sym_while] = ACTIONS(1667), [sym_comment] = ACTIONS(39), }, - [421] = { - [sym_declaration] = STATE(693), - [sym__declaration_specifiers] = STATE(683), + [431] = { + [sym_declaration] = STATE(708), + [sym__declaration_specifiers] = STATE(698), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -17098,31 +17315,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym__expression] = STATE(695), - [sym_conditional_expression] = STATE(695), - [sym_assignment_expression] = STATE(695), - [sym_pointer_expression] = STATE(695), - [sym_logical_expression] = STATE(695), - [sym_bitwise_expression] = STATE(695), - [sym_equality_expression] = STATE(695), - [sym_relational_expression] = STATE(695), - [sym_shift_expression] = STATE(695), - [sym_math_expression] = STATE(695), - [sym_cast_expression] = STATE(695), - [sym_sizeof_expression] = STATE(695), - [sym_subscript_expression] = STATE(695), - [sym_call_expression] = STATE(695), - [sym_field_expression] = STATE(695), - [sym_compound_literal_expression] = STATE(695), - [sym_parenthesized_expression] = STATE(695), - [sym_concatenated_string] = STATE(695), + [sym__expression] = STATE(710), + [sym_conditional_expression] = STATE(710), + [sym_assignment_expression] = STATE(710), + [sym_pointer_expression] = STATE(710), + [sym_logical_expression] = STATE(710), + [sym_bitwise_expression] = STATE(710), + [sym_equality_expression] = STATE(710), + [sym_relational_expression] = STATE(710), + [sym_shift_expression] = STATE(710), + [sym_math_expression] = STATE(710), + [sym_cast_expression] = STATE(710), + [sym_sizeof_expression] = STATE(710), + [sym_subscript_expression] = STATE(710), + [sym_call_expression] = STATE(710), + [sym_field_expression] = STATE(710), + [sym_compound_literal_expression] = STATE(710), + [sym_parenthesized_expression] = STATE(710), + [sym_concatenated_string] = STATE(710), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(1669), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -17138,412 +17355,412 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(1657), - [sym_char_literal] = ACTIONS(1657), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(1659), - [sym_false] = ACTIONS(1659), - [sym_null] = ACTIONS(1659), - [sym_identifier] = ACTIONS(1661), - [sym_comment] = ACTIONS(39), - }, - [422] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1665), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1663), - [sym_preproc_directive] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_typedef] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_static] = ACTIONS(1663), - [anon_sym_auto] = ACTIONS(1663), - [anon_sym_register] = ACTIONS(1663), - [anon_sym_inline] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_restrict] = ACTIONS(1663), - [anon_sym_volatile] = ACTIONS(1663), - [anon_sym__Atomic] = ACTIONS(1663), - [anon_sym_unsigned] = ACTIONS(1663), - [anon_sym_long] = ACTIONS(1663), - [anon_sym_short] = ACTIONS(1663), - [sym_primitive_type] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1663), - [anon_sym_switch] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_goto] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1665), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1665), - [anon_sym_PLUS_PLUS] = ACTIONS(1665), - [anon_sym_sizeof] = ACTIONS(1663), - [sym_number_literal] = ACTIONS(1665), - [sym_char_literal] = ACTIONS(1665), - [sym_string_literal] = ACTIONS(1665), - [sym_true] = ACTIONS(1663), - [sym_false] = ACTIONS(1663), - [sym_null] = ACTIONS(1663), - [sym_identifier] = ACTIONS(1663), - [sym_comment] = ACTIONS(39), - }, - [423] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [424] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1671), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1669), - [sym_preproc_directive] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_typedef] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_RBRACE] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_auto] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_inline] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_restrict] = ACTIONS(1669), - [anon_sym_volatile] = ACTIONS(1669), - [anon_sym__Atomic] = ACTIONS(1669), - [anon_sym_unsigned] = ACTIONS(1669), - [anon_sym_long] = ACTIONS(1669), - [anon_sym_short] = ACTIONS(1669), - [sym_primitive_type] = ACTIONS(1669), - [anon_sym_enum] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_union] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_switch] = ACTIONS(1669), - [anon_sym_case] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_goto] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), [sym_number_literal] = ACTIONS(1671), [sym_char_literal] = ACTIONS(1671), - [sym_string_literal] = ACTIONS(1671), - [sym_true] = ACTIONS(1669), - [sym_false] = ACTIONS(1669), - [sym_null] = ACTIONS(1669), - [sym_identifier] = ACTIONS(1669), - [sym_comment] = ACTIONS(39), - }, - [425] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1675), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1673), - [sym_preproc_directive] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_typedef] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_auto] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_inline] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_restrict] = ACTIONS(1673), - [anon_sym_volatile] = ACTIONS(1673), - [anon_sym__Atomic] = ACTIONS(1673), - [anon_sym_unsigned] = ACTIONS(1673), - [anon_sym_long] = ACTIONS(1673), - [anon_sym_short] = ACTIONS(1673), - [sym_primitive_type] = ACTIONS(1673), - [anon_sym_enum] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_switch] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_goto] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_sizeof] = ACTIONS(1673), - [sym_number_literal] = ACTIONS(1675), - [sym_char_literal] = ACTIONS(1675), - [sym_string_literal] = ACTIONS(1675), + [sym_string_literal] = ACTIONS(831), [sym_true] = ACTIONS(1673), [sym_false] = ACTIONS(1673), [sym_null] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1673), + [sym_identifier] = ACTIONS(1675), [sym_comment] = ACTIONS(39), }, - [426] = { - [anon_sym_SEMI] = ACTIONS(1677), - [sym_comment] = ACTIONS(39), - }, - [427] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1679), - [anon_sym_RPAREN] = ACTIONS(1679), + [432] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1679), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1677), + [sym_preproc_directive] = ACTIONS(1677), [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_typedef] = ACTIONS(1677), + [anon_sym_extern] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1679), [anon_sym_RBRACE] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1681), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1679), - [anon_sym_EQ] = ACTIONS(1681), - [anon_sym_COLON] = ACTIONS(1679), - [anon_sym_QMARK] = ACTIONS(1679), - [anon_sym_STAR_EQ] = ACTIONS(1679), - [anon_sym_SLASH_EQ] = ACTIONS(1679), - [anon_sym_PERCENT_EQ] = ACTIONS(1679), - [anon_sym_PLUS_EQ] = ACTIONS(1679), - [anon_sym_DASH_EQ] = ACTIONS(1679), - [anon_sym_LT_LT_EQ] = ACTIONS(1679), - [anon_sym_GT_GT_EQ] = ACTIONS(1679), - [anon_sym_AMP_EQ] = ACTIONS(1679), - [anon_sym_CARET_EQ] = ACTIONS(1679), - [anon_sym_PIPE_EQ] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_PIPE_PIPE] = ACTIONS(1679), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_PIPE] = ACTIONS(1681), - [anon_sym_CARET] = ACTIONS(1681), - [anon_sym_EQ_EQ] = ACTIONS(1679), - [anon_sym_BANG_EQ] = ACTIONS(1679), - [anon_sym_LT] = ACTIONS(1681), - [anon_sym_GT] = ACTIONS(1681), - [anon_sym_LT_EQ] = ACTIONS(1679), - [anon_sym_GT_EQ] = ACTIONS(1679), - [anon_sym_LT_LT] = ACTIONS(1681), - [anon_sym_GT_GT] = ACTIONS(1681), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_SLASH] = ACTIONS(1681), - [anon_sym_PERCENT] = ACTIONS(1681), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_static] = ACTIONS(1677), + [anon_sym_auto] = ACTIONS(1677), + [anon_sym_register] = ACTIONS(1677), + [anon_sym_inline] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_restrict] = ACTIONS(1677), + [anon_sym_volatile] = ACTIONS(1677), + [anon_sym__Atomic] = ACTIONS(1677), + [anon_sym_unsigned] = ACTIONS(1677), + [anon_sym_long] = ACTIONS(1677), + [anon_sym_short] = ACTIONS(1677), + [sym_primitive_type] = ACTIONS(1677), + [anon_sym_enum] = ACTIONS(1677), + [anon_sym_struct] = ACTIONS(1677), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_else] = ACTIONS(1677), + [anon_sym_switch] = ACTIONS(1677), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_do] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_goto] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), [anon_sym_DASH_DASH] = ACTIONS(1679), [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_sizeof] = ACTIONS(1677), + [sym_number_literal] = ACTIONS(1679), + [sym_char_literal] = ACTIONS(1679), + [sym_string_literal] = ACTIONS(1679), + [sym_true] = ACTIONS(1677), + [sym_false] = ACTIONS(1677), + [sym_null] = ACTIONS(1677), + [sym_identifier] = ACTIONS(1677), [sym_comment] = ACTIONS(39), }, - [428] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1683), - [anon_sym_RPAREN] = ACTIONS(1683), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_RBRACE] = ACTIONS(1683), + [433] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1681), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [434] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1685), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1683), + [sym_preproc_directive] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_typedef] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1683), - [anon_sym_EQ] = ACTIONS(1685), - [anon_sym_COLON] = ACTIONS(1683), - [anon_sym_QMARK] = ACTIONS(1683), - [anon_sym_STAR_EQ] = ACTIONS(1683), - [anon_sym_SLASH_EQ] = ACTIONS(1683), - [anon_sym_PERCENT_EQ] = ACTIONS(1683), - [anon_sym_PLUS_EQ] = ACTIONS(1683), - [anon_sym_DASH_EQ] = ACTIONS(1683), - [anon_sym_LT_LT_EQ] = ACTIONS(1683), - [anon_sym_GT_GT_EQ] = ACTIONS(1683), - [anon_sym_AMP_EQ] = ACTIONS(1683), - [anon_sym_CARET_EQ] = ACTIONS(1683), - [anon_sym_PIPE_EQ] = ACTIONS(1683), + [anon_sym_static] = ACTIONS(1683), + [anon_sym_auto] = ACTIONS(1683), + [anon_sym_register] = ACTIONS(1683), + [anon_sym_inline] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_restrict] = ACTIONS(1683), + [anon_sym_volatile] = ACTIONS(1683), + [anon_sym__Atomic] = ACTIONS(1683), + [anon_sym_unsigned] = ACTIONS(1683), + [anon_sym_long] = ACTIONS(1683), + [anon_sym_short] = ACTIONS(1683), + [sym_primitive_type] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1683), + [anon_sym_struct] = ACTIONS(1683), + [anon_sym_union] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_else] = ACTIONS(1683), + [anon_sym_switch] = ACTIONS(1683), + [anon_sym_case] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_goto] = ACTIONS(1683), [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_PIPE_PIPE] = ACTIONS(1683), - [anon_sym_AMP_AMP] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1685), - [anon_sym_CARET] = ACTIONS(1685), - [anon_sym_EQ_EQ] = ACTIONS(1683), - [anon_sym_BANG_EQ] = ACTIONS(1683), - [anon_sym_LT] = ACTIONS(1685), - [anon_sym_GT] = ACTIONS(1685), - [anon_sym_LT_EQ] = ACTIONS(1683), - [anon_sym_GT_EQ] = ACTIONS(1683), - [anon_sym_LT_LT] = ACTIONS(1685), - [anon_sym_GT_GT] = ACTIONS(1685), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_SLASH] = ACTIONS(1685), - [anon_sym_PERCENT] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_sizeof] = ACTIONS(1683), + [sym_number_literal] = ACTIONS(1685), + [sym_char_literal] = ACTIONS(1685), + [sym_string_literal] = ACTIONS(1685), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_identifier] = ACTIONS(1683), [sym_comment] = ACTIONS(39), }, - [429] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), + [435] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1689), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1687), + [sym_preproc_directive] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_typedef] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_RBRACE] = ACTIONS(1689), [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1687), - [anon_sym_EQ] = ACTIONS(1689), - [anon_sym_COLON] = ACTIONS(1687), - [anon_sym_QMARK] = ACTIONS(1687), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), + [anon_sym_static] = ACTIONS(1687), + [anon_sym_auto] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_inline] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_restrict] = ACTIONS(1687), + [anon_sym_volatile] = ACTIONS(1687), + [anon_sym__Atomic] = ACTIONS(1687), + [anon_sym_unsigned] = ACTIONS(1687), + [anon_sym_long] = ACTIONS(1687), + [anon_sym_short] = ACTIONS(1687), + [sym_primitive_type] = ACTIONS(1687), + [anon_sym_enum] = ACTIONS(1687), + [anon_sym_struct] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_switch] = ACTIONS(1687), + [anon_sym_case] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_goto] = ACTIONS(1687), [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1687), - [anon_sym_AMP_AMP] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_EQ_EQ] = ACTIONS(1687), - [anon_sym_BANG_EQ] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_GT] = ACTIONS(1689), - [anon_sym_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_EQ] = ACTIONS(1687), - [anon_sym_LT_LT] = ACTIONS(1689), - [anon_sym_GT_GT] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1689), - [anon_sym_PERCENT] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_sizeof] = ACTIONS(1687), + [sym_number_literal] = ACTIONS(1689), + [sym_char_literal] = ACTIONS(1689), + [sym_string_literal] = ACTIONS(1689), + [sym_true] = ACTIONS(1687), + [sym_false] = ACTIONS(1687), + [sym_null] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1687), [sym_comment] = ACTIONS(39), }, - [430] = { + [436] = { + [anon_sym_SEMI] = ACTIONS(1691), + [sym_comment] = ACTIONS(39), + }, + [437] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1693), + [anon_sym_EQ] = ACTIONS(1695), + [anon_sym_COLON] = ACTIONS(1693), + [anon_sym_QMARK] = ACTIONS(1693), + [anon_sym_STAR_EQ] = ACTIONS(1693), + [anon_sym_SLASH_EQ] = ACTIONS(1693), + [anon_sym_PERCENT_EQ] = ACTIONS(1693), + [anon_sym_PLUS_EQ] = ACTIONS(1693), + [anon_sym_DASH_EQ] = ACTIONS(1693), + [anon_sym_LT_LT_EQ] = ACTIONS(1693), + [anon_sym_GT_GT_EQ] = ACTIONS(1693), + [anon_sym_AMP_EQ] = ACTIONS(1693), + [anon_sym_CARET_EQ] = ACTIONS(1693), + [anon_sym_PIPE_EQ] = ACTIONS(1693), + [anon_sym_AMP] = ACTIONS(1695), + [anon_sym_PIPE_PIPE] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1693), + [anon_sym_PIPE] = ACTIONS(1695), + [anon_sym_CARET] = ACTIONS(1695), + [anon_sym_EQ_EQ] = ACTIONS(1693), + [anon_sym_BANG_EQ] = ACTIONS(1693), + [anon_sym_LT] = ACTIONS(1695), + [anon_sym_GT] = ACTIONS(1695), + [anon_sym_LT_EQ] = ACTIONS(1693), + [anon_sym_GT_EQ] = ACTIONS(1693), + [anon_sym_LT_LT] = ACTIONS(1695), + [anon_sym_GT_GT] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_SLASH] = ACTIONS(1695), + [anon_sym_PERCENT] = ACTIONS(1695), + [anon_sym_DASH_DASH] = ACTIONS(1693), + [anon_sym_PLUS_PLUS] = ACTIONS(1693), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [438] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1697), + [anon_sym_RPAREN] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1697), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1697), + [anon_sym_EQ] = ACTIONS(1699), + [anon_sym_COLON] = ACTIONS(1697), + [anon_sym_QMARK] = ACTIONS(1697), + [anon_sym_STAR_EQ] = ACTIONS(1697), + [anon_sym_SLASH_EQ] = ACTIONS(1697), + [anon_sym_PERCENT_EQ] = ACTIONS(1697), + [anon_sym_PLUS_EQ] = ACTIONS(1697), + [anon_sym_DASH_EQ] = ACTIONS(1697), + [anon_sym_LT_LT_EQ] = ACTIONS(1697), + [anon_sym_GT_GT_EQ] = ACTIONS(1697), + [anon_sym_AMP_EQ] = ACTIONS(1697), + [anon_sym_CARET_EQ] = ACTIONS(1697), + [anon_sym_PIPE_EQ] = ACTIONS(1697), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_PIPE_PIPE] = ACTIONS(1697), + [anon_sym_AMP_AMP] = ACTIONS(1697), + [anon_sym_PIPE] = ACTIONS(1699), + [anon_sym_CARET] = ACTIONS(1699), + [anon_sym_EQ_EQ] = ACTIONS(1697), + [anon_sym_BANG_EQ] = ACTIONS(1697), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1697), + [anon_sym_GT_EQ] = ACTIONS(1697), + [anon_sym_LT_LT] = ACTIONS(1699), + [anon_sym_GT_GT] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [anon_sym_SLASH] = ACTIONS(1699), + [anon_sym_PERCENT] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1697), + [anon_sym_PLUS_PLUS] = ACTIONS(1697), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [439] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1701), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1701), + [anon_sym_EQ] = ACTIONS(1703), + [anon_sym_COLON] = ACTIONS(1701), + [anon_sym_QMARK] = ACTIONS(1701), + [anon_sym_STAR_EQ] = ACTIONS(1701), + [anon_sym_SLASH_EQ] = ACTIONS(1701), + [anon_sym_PERCENT_EQ] = ACTIONS(1701), + [anon_sym_PLUS_EQ] = ACTIONS(1701), + [anon_sym_DASH_EQ] = ACTIONS(1701), + [anon_sym_LT_LT_EQ] = ACTIONS(1701), + [anon_sym_GT_GT_EQ] = ACTIONS(1701), + [anon_sym_AMP_EQ] = ACTIONS(1701), + [anon_sym_CARET_EQ] = ACTIONS(1701), + [anon_sym_PIPE_EQ] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_PIPE_PIPE] = ACTIONS(1701), + [anon_sym_AMP_AMP] = ACTIONS(1701), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_CARET] = ACTIONS(1703), + [anon_sym_EQ_EQ] = ACTIONS(1701), + [anon_sym_BANG_EQ] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_GT] = ACTIONS(1703), + [anon_sym_LT_EQ] = ACTIONS(1701), + [anon_sym_GT_EQ] = ACTIONS(1701), + [anon_sym_LT_LT] = ACTIONS(1703), + [anon_sym_GT_GT] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1703), + [anon_sym_PERCENT] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [440] = { [sym_type_qualifier] = STATE(115), [sym__type_specifier] = STATE(113), [sym_sized_type_specifier] = STATE(113), [sym_enum_specifier] = STATE(113), [sym_struct_specifier] = STATE(113), [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(698), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(713), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), [sym_macro_type_specifier] = STATE(113), [aux_sym_type_definition_repeat1] = STATE(115), [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -17555,176 +17772,176 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [431] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1691), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1693), - [anon_sym_QMARK] = ACTIONS(1691), - [anon_sym_STAR_EQ] = ACTIONS(1691), - [anon_sym_SLASH_EQ] = ACTIONS(1691), - [anon_sym_PERCENT_EQ] = ACTIONS(1691), - [anon_sym_PLUS_EQ] = ACTIONS(1691), - [anon_sym_DASH_EQ] = ACTIONS(1691), - [anon_sym_LT_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_GT_EQ] = ACTIONS(1691), - [anon_sym_AMP_EQ] = ACTIONS(1691), - [anon_sym_CARET_EQ] = ACTIONS(1691), - [anon_sym_PIPE_EQ] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1693), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(1693), - [anon_sym_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_EQ] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [441] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1707), + [anon_sym_QMARK] = ACTIONS(1705), + [anon_sym_STAR_EQ] = ACTIONS(1705), + [anon_sym_SLASH_EQ] = ACTIONS(1705), + [anon_sym_PERCENT_EQ] = ACTIONS(1705), + [anon_sym_PLUS_EQ] = ACTIONS(1705), + [anon_sym_DASH_EQ] = ACTIONS(1705), + [anon_sym_LT_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_GT_EQ] = ACTIONS(1705), + [anon_sym_AMP_EQ] = ACTIONS(1705), + [anon_sym_CARET_EQ] = ACTIONS(1705), + [anon_sym_PIPE_EQ] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_EQ_EQ] = ACTIONS(1705), + [anon_sym_BANG_EQ] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_EQ] = ACTIONS(1705), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [432] = { - [aux_sym_concatenated_string_repeat1] = STATE(699), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_COMMA] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_EQ] = ACTIONS(1697), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_STAR_EQ] = ACTIONS(1695), - [anon_sym_SLASH_EQ] = ACTIONS(1695), - [anon_sym_PERCENT_EQ] = ACTIONS(1695), - [anon_sym_PLUS_EQ] = ACTIONS(1695), - [anon_sym_DASH_EQ] = ACTIONS(1695), - [anon_sym_LT_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_GT_EQ] = ACTIONS(1695), - [anon_sym_AMP_EQ] = ACTIONS(1695), - [anon_sym_CARET_EQ] = ACTIONS(1695), - [anon_sym_PIPE_EQ] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_PIPE_PIPE] = ACTIONS(1695), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_GT] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1697), - [anon_sym_PERCENT] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_DOT] = ACTIONS(1695), - [anon_sym_DASH_GT] = ACTIONS(1695), - [sym_string_literal] = ACTIONS(1699), + [442] = { + [aux_sym_concatenated_string_repeat1] = STATE(714), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1711), + [anon_sym_QMARK] = ACTIONS(1709), + [anon_sym_STAR_EQ] = ACTIONS(1709), + [anon_sym_SLASH_EQ] = ACTIONS(1709), + [anon_sym_PERCENT_EQ] = ACTIONS(1709), + [anon_sym_PLUS_EQ] = ACTIONS(1709), + [anon_sym_DASH_EQ] = ACTIONS(1709), + [anon_sym_LT_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_GT_EQ] = ACTIONS(1709), + [anon_sym_AMP_EQ] = ACTIONS(1709), + [anon_sym_CARET_EQ] = ACTIONS(1709), + [anon_sym_PIPE_EQ] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PIPE_PIPE] = ACTIONS(1709), + [anon_sym_AMP_AMP] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1709), + [anon_sym_LT_LT] = ACTIONS(1711), + [anon_sym_GT_GT] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_PERCENT] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_DASH_GT] = ACTIONS(1709), + [sym_string_literal] = ACTIONS(1713), [sym_comment] = ACTIONS(39), }, - [433] = { - [sym_compound_statement] = STATE(701), - [sym_labeled_statement] = STATE(701), - [sym_expression_statement] = STATE(701), - [sym_if_statement] = STATE(701), - [sym_switch_statement] = STATE(701), - [sym_case_statement] = STATE(701), - [sym_while_statement] = STATE(701), - [sym_do_statement] = STATE(701), - [sym_for_statement] = STATE(701), - [sym_return_statement] = STATE(701), - [sym_break_statement] = STATE(701), - [sym_continue_statement] = STATE(701), - [sym_goto_statement] = STATE(701), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [443] = { + [sym_compound_statement] = STATE(716), + [sym_labeled_statement] = STATE(716), + [sym_expression_statement] = STATE(716), + [sym_if_statement] = STATE(716), + [sym_switch_statement] = STATE(716), + [sym_case_statement] = STATE(716), + [sym_while_statement] = STATE(716), + [sym_do_statement] = STATE(716), + [sym_for_statement] = STATE(716), + [sym_return_statement] = STATE(716), + [sym_break_statement] = STATE(716), + [sym_continue_statement] = STATE(716), + [sym_goto_statement] = STATE(716), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1715), [sym_comment] = ACTIONS(39), }, - [434] = { - [sym_parameter_list] = STATE(127), - [aux_sym_declaration_repeat1] = STATE(128), + [444] = { + [sym_parameter_list] = STATE(128), + [aux_sym_declaration_repeat1] = STATE(129), [anon_sym_LPAREN] = ACTIONS(231), [anon_sym_COMMA] = ACTIONS(233), [anon_sym_SEMI] = ACTIONS(235), @@ -17732,599 +17949,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(241), [sym_comment] = ACTIONS(39), }, - [435] = { - [sym__expression] = STATE(703), - [sym_conditional_expression] = STATE(703), - [sym_assignment_expression] = STATE(703), - [sym_pointer_expression] = STATE(703), - [sym_logical_expression] = STATE(703), - [sym_bitwise_expression] = STATE(703), - [sym_equality_expression] = STATE(703), - [sym_relational_expression] = STATE(703), - [sym_shift_expression] = STATE(703), - [sym_math_expression] = STATE(703), - [sym_cast_expression] = STATE(703), - [sym_sizeof_expression] = STATE(703), - [sym_subscript_expression] = STATE(703), - [sym_call_expression] = STATE(703), - [sym_field_expression] = STATE(703), - [sym_compound_literal_expression] = STATE(703), - [sym_parenthesized_expression] = STATE(703), - [sym_concatenated_string] = STATE(703), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(1705), - [sym_char_literal] = ACTIONS(1705), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1707), - [sym_comment] = ACTIONS(39), - }, - [436] = { - [sym__expression] = STATE(704), - [sym_comma_expression] = STATE(705), - [sym_conditional_expression] = STATE(704), - [sym_assignment_expression] = STATE(704), - [sym_pointer_expression] = STATE(704), - [sym_logical_expression] = STATE(704), - [sym_bitwise_expression] = STATE(704), - [sym_equality_expression] = STATE(704), - [sym_relational_expression] = STATE(704), - [sym_shift_expression] = STATE(704), - [sym_math_expression] = STATE(704), - [sym_cast_expression] = STATE(704), - [sym_sizeof_expression] = STATE(704), - [sym_subscript_expression] = STATE(704), - [sym_call_expression] = STATE(704), - [sym_field_expression] = STATE(704), - [sym_compound_literal_expression] = STATE(704), - [sym_parenthesized_expression] = STATE(704), - [sym_concatenated_string] = STATE(704), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1709), - [sym_char_literal] = ACTIONS(1709), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1711), - [sym_false] = ACTIONS(1711), - [sym_null] = ACTIONS(1711), - [sym_identifier] = ACTIONS(1711), - [sym_comment] = ACTIONS(39), - }, - [437] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1715), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1713), - [sym_preproc_directive] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_typedef] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_auto] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1713), - [anon_sym_inline] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_restrict] = ACTIONS(1713), - [anon_sym_volatile] = ACTIONS(1713), - [anon_sym__Atomic] = ACTIONS(1713), - [anon_sym_unsigned] = ACTIONS(1713), - [anon_sym_long] = ACTIONS(1713), - [anon_sym_short] = ACTIONS(1713), - [sym_primitive_type] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_switch] = ACTIONS(1713), - [anon_sym_case] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_goto] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1713), - [sym_number_literal] = ACTIONS(1715), - [sym_char_literal] = ACTIONS(1715), - [sym_string_literal] = ACTIONS(1715), - [sym_true] = ACTIONS(1713), - [sym_false] = ACTIONS(1713), - [sym_null] = ACTIONS(1713), - [sym_identifier] = ACTIONS(1713), - [sym_comment] = ACTIONS(39), - }, - [438] = { - [sym__expression] = STATE(706), - [sym_conditional_expression] = STATE(706), - [sym_assignment_expression] = STATE(706), - [sym_pointer_expression] = STATE(706), - [sym_logical_expression] = STATE(706), - [sym_bitwise_expression] = STATE(706), - [sym_equality_expression] = STATE(706), - [sym_relational_expression] = STATE(706), - [sym_shift_expression] = STATE(706), - [sym_math_expression] = STATE(706), - [sym_cast_expression] = STATE(706), - [sym_sizeof_expression] = STATE(706), - [sym_subscript_expression] = STATE(706), - [sym_call_expression] = STATE(706), - [sym_field_expression] = STATE(706), - [sym_compound_literal_expression] = STATE(706), - [sym_parenthesized_expression] = STATE(706), - [sym_concatenated_string] = STATE(706), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1717), - [sym_char_literal] = ACTIONS(1717), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1719), - [sym_comment] = ACTIONS(39), - }, - [439] = { - [sym__expression] = STATE(707), - [sym_conditional_expression] = STATE(707), - [sym_assignment_expression] = STATE(707), - [sym_pointer_expression] = STATE(707), - [sym_logical_expression] = STATE(707), - [sym_bitwise_expression] = STATE(707), - [sym_equality_expression] = STATE(707), - [sym_relational_expression] = STATE(707), - [sym_shift_expression] = STATE(707), - [sym_math_expression] = STATE(707), - [sym_cast_expression] = STATE(707), - [sym_sizeof_expression] = STATE(707), - [sym_subscript_expression] = STATE(707), - [sym_call_expression] = STATE(707), - [sym_field_expression] = STATE(707), - [sym_compound_literal_expression] = STATE(707), - [sym_parenthesized_expression] = STATE(707), - [sym_concatenated_string] = STATE(707), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1721), - [sym_char_literal] = ACTIONS(1721), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1723), - [sym_false] = ACTIONS(1723), - [sym_null] = ACTIONS(1723), - [sym_identifier] = ACTIONS(1723), - [sym_comment] = ACTIONS(39), - }, - [440] = { - [sym__expression] = STATE(708), - [sym_conditional_expression] = STATE(708), - [sym_assignment_expression] = STATE(708), - [sym_pointer_expression] = STATE(708), - [sym_logical_expression] = STATE(708), - [sym_bitwise_expression] = STATE(708), - [sym_equality_expression] = STATE(708), - [sym_relational_expression] = STATE(708), - [sym_shift_expression] = STATE(708), - [sym_math_expression] = STATE(708), - [sym_cast_expression] = STATE(708), - [sym_sizeof_expression] = STATE(708), - [sym_subscript_expression] = STATE(708), - [sym_call_expression] = STATE(708), - [sym_field_expression] = STATE(708), - [sym_compound_literal_expression] = STATE(708), - [sym_parenthesized_expression] = STATE(708), - [sym_concatenated_string] = STATE(708), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1725), - [sym_char_literal] = ACTIONS(1725), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1727), - [sym_false] = ACTIONS(1727), - [sym_null] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1727), - [sym_comment] = ACTIONS(39), - }, - [441] = { - [sym__expression] = STATE(709), - [sym_conditional_expression] = STATE(709), - [sym_assignment_expression] = STATE(709), - [sym_pointer_expression] = STATE(709), - [sym_logical_expression] = STATE(709), - [sym_bitwise_expression] = STATE(709), - [sym_equality_expression] = STATE(709), - [sym_relational_expression] = STATE(709), - [sym_shift_expression] = STATE(709), - [sym_math_expression] = STATE(709), - [sym_cast_expression] = STATE(709), - [sym_sizeof_expression] = STATE(709), - [sym_subscript_expression] = STATE(709), - [sym_call_expression] = STATE(709), - [sym_field_expression] = STATE(709), - [sym_compound_literal_expression] = STATE(709), - [sym_parenthesized_expression] = STATE(709), - [sym_concatenated_string] = STATE(709), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1729), - [sym_char_literal] = ACTIONS(1729), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(1731), - [sym_false] = ACTIONS(1731), - [sym_null] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1731), - [sym_comment] = ACTIONS(39), - }, - [442] = { - [sym__expression] = STATE(710), - [sym_conditional_expression] = STATE(710), - [sym_assignment_expression] = STATE(710), - [sym_pointer_expression] = STATE(710), - [sym_logical_expression] = STATE(710), - [sym_bitwise_expression] = STATE(710), - [sym_equality_expression] = STATE(710), - [sym_relational_expression] = STATE(710), - [sym_shift_expression] = STATE(710), - [sym_math_expression] = STATE(710), - [sym_cast_expression] = STATE(710), - [sym_sizeof_expression] = STATE(710), - [sym_subscript_expression] = STATE(710), - [sym_call_expression] = STATE(710), - [sym_field_expression] = STATE(710), - [sym_compound_literal_expression] = STATE(710), - [sym_parenthesized_expression] = STATE(710), - [sym_concatenated_string] = STATE(710), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1733), - [sym_char_literal] = ACTIONS(1733), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_null] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1735), - [sym_comment] = ACTIONS(39), - }, - [443] = { - [sym__expression] = STATE(711), - [sym_conditional_expression] = STATE(711), - [sym_assignment_expression] = STATE(711), - [sym_pointer_expression] = STATE(711), - [sym_logical_expression] = STATE(711), - [sym_bitwise_expression] = STATE(711), - [sym_equality_expression] = STATE(711), - [sym_relational_expression] = STATE(711), - [sym_shift_expression] = STATE(711), - [sym_math_expression] = STATE(711), - [sym_cast_expression] = STATE(711), - [sym_sizeof_expression] = STATE(711), - [sym_subscript_expression] = STATE(711), - [sym_call_expression] = STATE(711), - [sym_field_expression] = STATE(711), - [sym_compound_literal_expression] = STATE(711), - [sym_parenthesized_expression] = STATE(711), - [sym_concatenated_string] = STATE(711), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1737), - [sym_char_literal] = ACTIONS(1737), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1739), - [sym_comment] = ACTIONS(39), - }, - [444] = { - [sym__expression] = STATE(712), - [sym_conditional_expression] = STATE(712), - [sym_assignment_expression] = STATE(712), - [sym_pointer_expression] = STATE(712), - [sym_logical_expression] = STATE(712), - [sym_bitwise_expression] = STATE(712), - [sym_equality_expression] = STATE(712), - [sym_relational_expression] = STATE(712), - [sym_shift_expression] = STATE(712), - [sym_math_expression] = STATE(712), - [sym_cast_expression] = STATE(712), - [sym_sizeof_expression] = STATE(712), - [sym_subscript_expression] = STATE(712), - [sym_call_expression] = STATE(712), - [sym_field_expression] = STATE(712), - [sym_compound_literal_expression] = STATE(712), - [sym_parenthesized_expression] = STATE(712), - [sym_concatenated_string] = STATE(712), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1741), - [sym_char_literal] = ACTIONS(1741), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1743), - [sym_false] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1743), - [sym_comment] = ACTIONS(39), - }, [445] = { - [sym__expression] = STATE(713), - [sym_conditional_expression] = STATE(713), - [sym_assignment_expression] = STATE(713), - [sym_pointer_expression] = STATE(713), - [sym_logical_expression] = STATE(713), - [sym_bitwise_expression] = STATE(713), - [sym_equality_expression] = STATE(713), - [sym_relational_expression] = STATE(713), - [sym_shift_expression] = STATE(713), - [sym_math_expression] = STATE(713), - [sym_cast_expression] = STATE(713), - [sym_sizeof_expression] = STATE(713), - [sym_subscript_expression] = STATE(713), - [sym_call_expression] = STATE(713), - [sym_field_expression] = STATE(713), - [sym_compound_literal_expression] = STATE(713), - [sym_parenthesized_expression] = STATE(713), - [sym_concatenated_string] = STATE(713), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1745), - [sym_char_literal] = ACTIONS(1745), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1747), - [sym_false] = ACTIONS(1747), - [sym_null] = ACTIONS(1747), - [sym_identifier] = ACTIONS(1747), - [sym_comment] = ACTIONS(39), - }, - [446] = { - [sym__expression] = STATE(714), - [sym_conditional_expression] = STATE(714), - [sym_assignment_expression] = STATE(714), - [sym_pointer_expression] = STATE(714), - [sym_logical_expression] = STATE(714), - [sym_bitwise_expression] = STATE(714), - [sym_equality_expression] = STATE(714), - [sym_relational_expression] = STATE(714), - [sym_shift_expression] = STATE(714), - [sym_math_expression] = STATE(714), - [sym_cast_expression] = STATE(714), - [sym_sizeof_expression] = STATE(714), - [sym_subscript_expression] = STATE(714), - [sym_call_expression] = STATE(714), - [sym_field_expression] = STATE(714), - [sym_compound_literal_expression] = STATE(714), - [sym_parenthesized_expression] = STATE(714), - [sym_concatenated_string] = STATE(714), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1749), - [sym_char_literal] = ACTIONS(1749), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1751), - [sym_false] = ACTIONS(1751), - [sym_null] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1751), - [sym_comment] = ACTIONS(39), - }, - [447] = { - [sym__expression] = STATE(715), - [sym_conditional_expression] = STATE(715), - [sym_assignment_expression] = STATE(715), - [sym_pointer_expression] = STATE(715), - [sym_logical_expression] = STATE(715), - [sym_bitwise_expression] = STATE(715), - [sym_equality_expression] = STATE(715), - [sym_relational_expression] = STATE(715), - [sym_shift_expression] = STATE(715), - [sym_math_expression] = STATE(715), - [sym_cast_expression] = STATE(715), - [sym_sizeof_expression] = STATE(715), - [sym_subscript_expression] = STATE(715), - [sym_call_expression] = STATE(715), - [sym_field_expression] = STATE(715), - [sym_compound_literal_expression] = STATE(715), - [sym_parenthesized_expression] = STATE(715), - [sym_concatenated_string] = STATE(715), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1753), - [sym_char_literal] = ACTIONS(1753), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [sym_null] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1755), - [sym_comment] = ACTIONS(39), - }, - [448] = { - [sym__expression] = STATE(716), - [sym_conditional_expression] = STATE(716), - [sym_assignment_expression] = STATE(716), - [sym_pointer_expression] = STATE(716), - [sym_logical_expression] = STATE(716), - [sym_bitwise_expression] = STATE(716), - [sym_equality_expression] = STATE(716), - [sym_relational_expression] = STATE(716), - [sym_shift_expression] = STATE(716), - [sym_math_expression] = STATE(716), - [sym_cast_expression] = STATE(716), - [sym_sizeof_expression] = STATE(716), - [sym_subscript_expression] = STATE(716), - [sym_call_expression] = STATE(716), - [sym_field_expression] = STATE(716), - [sym_compound_literal_expression] = STATE(716), - [sym_parenthesized_expression] = STATE(716), - [sym_concatenated_string] = STATE(716), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1757), - [sym_char_literal] = ACTIONS(1757), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_null] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1759), - [sym_comment] = ACTIONS(39), - }, - [449] = { - [sym__expression] = STATE(717), - [sym_conditional_expression] = STATE(717), - [sym_assignment_expression] = STATE(717), - [sym_pointer_expression] = STATE(717), - [sym_logical_expression] = STATE(717), - [sym_bitwise_expression] = STATE(717), - [sym_equality_expression] = STATE(717), - [sym_relational_expression] = STATE(717), - [sym_shift_expression] = STATE(717), - [sym_math_expression] = STATE(717), - [sym_cast_expression] = STATE(717), - [sym_sizeof_expression] = STATE(717), - [sym_subscript_expression] = STATE(717), - [sym_call_expression] = STATE(717), - [sym_field_expression] = STATE(717), - [sym_compound_literal_expression] = STATE(717), - [sym_parenthesized_expression] = STATE(717), - [sym_concatenated_string] = STATE(717), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1761), - [sym_char_literal] = ACTIONS(1761), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1763), - [sym_false] = ACTIONS(1763), - [sym_null] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1763), - [sym_comment] = ACTIONS(39), - }, - [450] = { [sym__expression] = STATE(718), [sym_conditional_expression] = STATE(718), [sym_assignment_expression] = STATE(718), @@ -18343,558 +17968,276 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(718), [sym_parenthesized_expression] = STATE(718), [sym_concatenated_string] = STATE(718), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1765), - [sym_char_literal] = ACTIONS(1765), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1767), - [sym_false] = ACTIONS(1767), - [sym_null] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(1719), + [sym_char_literal] = ACTIONS(1719), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(1721), + [sym_false] = ACTIONS(1721), + [sym_null] = ACTIONS(1721), + [sym_identifier] = ACTIONS(1721), [sym_comment] = ACTIONS(39), }, - [451] = { - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_COMMA] = ACTIONS(1687), - [anon_sym_RPAREN] = ACTIONS(1687), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_RBRACE] = ACTIONS(1687), - [anon_sym_STAR] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_RBRACK] = ACTIONS(1687), - [anon_sym_EQ] = ACTIONS(1689), - [anon_sym_COLON] = ACTIONS(1687), - [anon_sym_QMARK] = ACTIONS(1687), - [anon_sym_STAR_EQ] = ACTIONS(1687), - [anon_sym_SLASH_EQ] = ACTIONS(1687), - [anon_sym_PERCENT_EQ] = ACTIONS(1687), - [anon_sym_PLUS_EQ] = ACTIONS(1687), - [anon_sym_DASH_EQ] = ACTIONS(1687), - [anon_sym_LT_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_GT_EQ] = ACTIONS(1687), - [anon_sym_AMP_EQ] = ACTIONS(1687), - [anon_sym_CARET_EQ] = ACTIONS(1687), - [anon_sym_PIPE_EQ] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE_PIPE] = ACTIONS(1687), - [anon_sym_AMP_AMP] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_CARET] = ACTIONS(1689), - [anon_sym_EQ_EQ] = ACTIONS(1687), - [anon_sym_BANG_EQ] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_GT] = ACTIONS(1689), - [anon_sym_LT_EQ] = ACTIONS(1687), - [anon_sym_GT_EQ] = ACTIONS(1687), - [anon_sym_LT_LT] = ACTIONS(1689), - [anon_sym_GT_GT] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1689), - [anon_sym_PERCENT] = ACTIONS(1689), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DOT] = ACTIONS(1687), - [anon_sym_DASH_GT] = ACTIONS(1687), + [446] = { + [sym__expression] = STATE(719), + [sym_comma_expression] = STATE(720), + [sym_conditional_expression] = STATE(719), + [sym_assignment_expression] = STATE(719), + [sym_pointer_expression] = STATE(719), + [sym_logical_expression] = STATE(719), + [sym_bitwise_expression] = STATE(719), + [sym_equality_expression] = STATE(719), + [sym_relational_expression] = STATE(719), + [sym_shift_expression] = STATE(719), + [sym_math_expression] = STATE(719), + [sym_cast_expression] = STATE(719), + [sym_sizeof_expression] = STATE(719), + [sym_subscript_expression] = STATE(719), + [sym_call_expression] = STATE(719), + [sym_field_expression] = STATE(719), + [sym_compound_literal_expression] = STATE(719), + [sym_parenthesized_expression] = STATE(719), + [sym_concatenated_string] = STATE(719), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1723), + [sym_char_literal] = ACTIONS(1723), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1725), + [sym_false] = ACTIONS(1725), + [sym_null] = ACTIONS(1725), + [sym_identifier] = ACTIONS(1725), [sym_comment] = ACTIONS(39), }, - [452] = { - [sym_identifier] = ACTIONS(1769), + [447] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1729), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1727), + [sym_preproc_directive] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_typedef] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_static] = ACTIONS(1727), + [anon_sym_auto] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_inline] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [anon_sym_restrict] = ACTIONS(1727), + [anon_sym_volatile] = ACTIONS(1727), + [anon_sym__Atomic] = ACTIONS(1727), + [anon_sym_unsigned] = ACTIONS(1727), + [anon_sym_long] = ACTIONS(1727), + [anon_sym_short] = ACTIONS(1727), + [sym_primitive_type] = ACTIONS(1727), + [anon_sym_enum] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1727), + [anon_sym_union] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_switch] = ACTIONS(1727), + [anon_sym_case] = ACTIONS(1727), + [anon_sym_default] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_goto] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1729), + [anon_sym_TILDE] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_sizeof] = ACTIONS(1727), + [sym_number_literal] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1729), + [sym_string_literal] = ACTIONS(1729), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1727), [sym_comment] = ACTIONS(39), }, - [453] = { - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_COMMA] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1773), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_RBRACK] = ACTIONS(1771), - [anon_sym_EQ] = ACTIONS(1773), - [anon_sym_COLON] = ACTIONS(1771), - [anon_sym_QMARK] = ACTIONS(1771), - [anon_sym_STAR_EQ] = ACTIONS(1771), - [anon_sym_SLASH_EQ] = ACTIONS(1771), - [anon_sym_PERCENT_EQ] = ACTIONS(1771), - [anon_sym_PLUS_EQ] = ACTIONS(1771), - [anon_sym_DASH_EQ] = ACTIONS(1771), - [anon_sym_LT_LT_EQ] = ACTIONS(1771), - [anon_sym_GT_GT_EQ] = ACTIONS(1771), - [anon_sym_AMP_EQ] = ACTIONS(1771), - [anon_sym_CARET_EQ] = ACTIONS(1771), - [anon_sym_PIPE_EQ] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_PIPE_PIPE] = ACTIONS(1771), - [anon_sym_AMP_AMP] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_EQ_EQ] = ACTIONS(1771), - [anon_sym_BANG_EQ] = ACTIONS(1771), - [anon_sym_LT] = ACTIONS(1773), - [anon_sym_GT] = ACTIONS(1773), - [anon_sym_LT_EQ] = ACTIONS(1771), - [anon_sym_GT_EQ] = ACTIONS(1771), - [anon_sym_LT_LT] = ACTIONS(1773), - [anon_sym_GT_GT] = ACTIONS(1773), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_SLASH] = ACTIONS(1773), - [anon_sym_PERCENT] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(1771), - [anon_sym_DOT] = ACTIONS(1771), - [anon_sym_DASH_GT] = ACTIONS(1771), + [448] = { + [sym__expression] = STATE(721), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(721), + [sym_logical_expression] = STATE(721), + [sym_bitwise_expression] = STATE(721), + [sym_equality_expression] = STATE(721), + [sym_relational_expression] = STATE(721), + [sym_shift_expression] = STATE(721), + [sym_math_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(721), + [sym_call_expression] = STATE(721), + [sym_field_expression] = STATE(721), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(721), + [sym_concatenated_string] = STATE(721), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1731), + [sym_char_literal] = ACTIONS(1731), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_null] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1733), [sym_comment] = ACTIONS(39), }, - [454] = { - [ts_builtin_sym_end] = ACTIONS(1775), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1775), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1777), - [sym_preproc_directive] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_typedef] = ACTIONS(1777), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_static] = ACTIONS(1777), - [anon_sym_auto] = ACTIONS(1777), - [anon_sym_register] = ACTIONS(1777), - [anon_sym_inline] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [anon_sym_restrict] = ACTIONS(1777), - [anon_sym_volatile] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1777), - [anon_sym_unsigned] = ACTIONS(1777), - [anon_sym_long] = ACTIONS(1777), - [anon_sym_short] = ACTIONS(1777), - [sym_primitive_type] = ACTIONS(1777), - [anon_sym_enum] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1777), - [anon_sym_case] = ACTIONS(1777), - [anon_sym_default] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_do] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_goto] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_BANG] = ACTIONS(1775), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_PLUS] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_sizeof] = ACTIONS(1777), - [sym_number_literal] = ACTIONS(1775), - [sym_char_literal] = ACTIONS(1775), - [sym_string_literal] = ACTIONS(1775), - [sym_true] = ACTIONS(1777), - [sym_false] = ACTIONS(1777), - [sym_null] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1777), + [449] = { + [sym__expression] = STATE(722), + [sym_conditional_expression] = STATE(722), + [sym_assignment_expression] = STATE(722), + [sym_pointer_expression] = STATE(722), + [sym_logical_expression] = STATE(722), + [sym_bitwise_expression] = STATE(722), + [sym_equality_expression] = STATE(722), + [sym_relational_expression] = STATE(722), + [sym_shift_expression] = STATE(722), + [sym_math_expression] = STATE(722), + [sym_cast_expression] = STATE(722), + [sym_sizeof_expression] = STATE(722), + [sym_subscript_expression] = STATE(722), + [sym_call_expression] = STATE(722), + [sym_field_expression] = STATE(722), + [sym_compound_literal_expression] = STATE(722), + [sym_parenthesized_expression] = STATE(722), + [sym_concatenated_string] = STATE(722), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1735), + [sym_char_literal] = ACTIONS(1735), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1737), + [sym_false] = ACTIONS(1737), + [sym_null] = ACTIONS(1737), + [sym_identifier] = ACTIONS(1737), [sym_comment] = ACTIONS(39), }, - [455] = { - [sym_preproc_include] = STATE(455), - [sym_preproc_def] = STATE(455), - [sym_preproc_function_def] = STATE(455), - [sym_preproc_call] = STATE(455), - [sym_preproc_if_in_compound_statement] = STATE(243), - [sym_preproc_ifdef_in_compound_statement] = STATE(244), - [sym_declaration] = STATE(455), - [sym_type_definition] = STATE(455), - [sym__declaration_specifiers] = STATE(245), - [sym_compound_statement] = STATE(455), - [sym_storage_class_specifier] = STATE(20), - [sym_type_qualifier] = STATE(20), - [sym__type_specifier] = STATE(18), - [sym_sized_type_specifier] = STATE(18), - [sym_enum_specifier] = STATE(18), - [sym_struct_specifier] = STATE(18), - [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(455), - [sym_expression_statement] = STATE(455), - [sym_if_statement] = STATE(455), - [sym_switch_statement] = STATE(455), - [sym_case_statement] = STATE(455), - [sym_while_statement] = STATE(455), - [sym_do_statement] = STATE(455), - [sym_for_statement] = STATE(455), - [sym_return_statement] = STATE(455), - [sym_break_statement] = STATE(455), - [sym_continue_statement] = STATE(455), - [sym_goto_statement] = STATE(455), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [sym__empty_declaration] = STATE(455), - [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(455), - [aux_sym__declaration_specifiers_repeat1] = STATE(20), - [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1779), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1785), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1794), - [sym_preproc_directive] = ACTIONS(1797), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1812), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_restrict] = ACTIONS(1817), - [anon_sym_volatile] = ACTIONS(1817), - [anon_sym__Atomic] = ACTIONS(1817), - [anon_sym_unsigned] = ACTIONS(1820), - [anon_sym_long] = ACTIONS(1820), - [anon_sym_short] = ACTIONS(1820), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1829), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_switch] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1850), - [anon_sym_for] = ACTIONS(1853), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1862), - [anon_sym_goto] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), - [anon_sym_sizeof] = ACTIONS(1880), - [sym_number_literal] = ACTIONS(1883), - [sym_char_literal] = ACTIONS(1883), - [sym_string_literal] = ACTIONS(1886), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_null] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1892), - [sym_comment] = ACTIONS(39), - }, - [456] = { - [anon_sym_RPAREN] = ACTIONS(1895), - [sym_comment] = ACTIONS(39), - }, - [457] = { - [sym_type_qualifier] = STATE(115), - [sym__type_specifier] = STATE(113), - [sym_sized_type_specifier] = STATE(113), - [sym_enum_specifier] = STATE(113), - [sym_struct_specifier] = STATE(113), - [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(721), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), - [sym_macro_type_specifier] = STATE(113), - [aux_sym_type_definition_repeat1] = STATE(115), - [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(217), - [anon_sym_long] = ACTIONS(217), - [anon_sym_short] = ACTIONS(217), - [sym_primitive_type] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), - [sym_comment] = ACTIONS(39), - }, - [458] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1691), - [anon_sym_EQ] = ACTIONS(1693), - [anon_sym_QMARK] = ACTIONS(1691), - [anon_sym_STAR_EQ] = ACTIONS(1691), - [anon_sym_SLASH_EQ] = ACTIONS(1691), - [anon_sym_PERCENT_EQ] = ACTIONS(1691), - [anon_sym_PLUS_EQ] = ACTIONS(1691), - [anon_sym_DASH_EQ] = ACTIONS(1691), - [anon_sym_LT_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_GT_EQ] = ACTIONS(1691), - [anon_sym_AMP_EQ] = ACTIONS(1691), - [anon_sym_CARET_EQ] = ACTIONS(1691), - [anon_sym_PIPE_EQ] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1693), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(1693), - [anon_sym_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_EQ] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [459] = { - [aux_sym_concatenated_string_repeat1] = STATE(722), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_RBRACK] = ACTIONS(1695), - [anon_sym_EQ] = ACTIONS(1697), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_STAR_EQ] = ACTIONS(1695), - [anon_sym_SLASH_EQ] = ACTIONS(1695), - [anon_sym_PERCENT_EQ] = ACTIONS(1695), - [anon_sym_PLUS_EQ] = ACTIONS(1695), - [anon_sym_DASH_EQ] = ACTIONS(1695), - [anon_sym_LT_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_GT_EQ] = ACTIONS(1695), - [anon_sym_AMP_EQ] = ACTIONS(1695), - [anon_sym_CARET_EQ] = ACTIONS(1695), - [anon_sym_PIPE_EQ] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_PIPE_PIPE] = ACTIONS(1695), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_GT] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1697), - [anon_sym_PERCENT] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_DOT] = ACTIONS(1695), - [anon_sym_DASH_GT] = ACTIONS(1695), - [sym_string_literal] = ACTIONS(1897), - [sym_comment] = ACTIONS(39), - }, - [460] = { - [anon_sym_LPAREN] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1899), - [anon_sym_EQ] = ACTIONS(1899), - [sym_comment] = ACTIONS(39), - }, - [461] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [462] = { - [sym_storage_class_specifier] = STATE(724), - [sym_type_qualifier] = STATE(724), - [aux_sym__declaration_specifiers_repeat1] = STATE(724), - [anon_sym_LPAREN] = ACTIONS(243), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_RBRACK] = ACTIONS(243), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(243), - [anon_sym_TILDE] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(245), - [anon_sym_DASH] = ACTIONS(245), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_sizeof] = ACTIONS(245), - [sym_number_literal] = ACTIONS(243), - [sym_char_literal] = ACTIONS(243), - [sym_string_literal] = ACTIONS(243), - [sym_true] = ACTIONS(245), - [sym_false] = ACTIONS(245), - [sym_null] = ACTIONS(245), - [sym_identifier] = ACTIONS(245), + [450] = { + [sym__expression] = STATE(723), + [sym_conditional_expression] = STATE(723), + [sym_assignment_expression] = STATE(723), + [sym_pointer_expression] = STATE(723), + [sym_logical_expression] = STATE(723), + [sym_bitwise_expression] = STATE(723), + [sym_equality_expression] = STATE(723), + [sym_relational_expression] = STATE(723), + [sym_shift_expression] = STATE(723), + [sym_math_expression] = STATE(723), + [sym_cast_expression] = STATE(723), + [sym_sizeof_expression] = STATE(723), + [sym_subscript_expression] = STATE(723), + [sym_call_expression] = STATE(723), + [sym_field_expression] = STATE(723), + [sym_compound_literal_expression] = STATE(723), + [sym_parenthesized_expression] = STATE(723), + [sym_concatenated_string] = STATE(723), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1739), + [sym_char_literal] = ACTIONS(1739), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1741), + [sym_false] = ACTIONS(1741), + [sym_null] = ACTIONS(1741), + [sym_identifier] = ACTIONS(1741), [sym_comment] = ACTIONS(39), }, - [463] = { - [sym__expression] = STATE(706), - [sym_conditional_expression] = STATE(706), - [sym_assignment_expression] = STATE(706), - [sym_pointer_expression] = STATE(706), - [sym_logical_expression] = STATE(706), - [sym_bitwise_expression] = STATE(706), - [sym_equality_expression] = STATE(706), - [sym_relational_expression] = STATE(706), - [sym_shift_expression] = STATE(706), - [sym_math_expression] = STATE(706), - [sym_cast_expression] = STATE(706), - [sym_sizeof_expression] = STATE(706), - [sym_subscript_expression] = STATE(706), - [sym_call_expression] = STATE(706), - [sym_field_expression] = STATE(706), - [sym_compound_literal_expression] = STATE(706), - [sym_parenthesized_expression] = STATE(706), - [sym_concatenated_string] = STATE(706), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1717), - [sym_char_literal] = ACTIONS(1717), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1719), + [451] = { + [sym__expression] = STATE(724), + [sym_conditional_expression] = STATE(724), + [sym_assignment_expression] = STATE(724), + [sym_pointer_expression] = STATE(724), + [sym_logical_expression] = STATE(724), + [sym_bitwise_expression] = STATE(724), + [sym_equality_expression] = STATE(724), + [sym_relational_expression] = STATE(724), + [sym_shift_expression] = STATE(724), + [sym_math_expression] = STATE(724), + [sym_cast_expression] = STATE(724), + [sym_sizeof_expression] = STATE(724), + [sym_subscript_expression] = STATE(724), + [sym_call_expression] = STATE(724), + [sym_field_expression] = STATE(724), + [sym_compound_literal_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1743), + [sym_char_literal] = ACTIONS(1743), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(1745), + [sym_false] = ACTIONS(1745), + [sym_null] = ACTIONS(1745), + [sym_identifier] = ACTIONS(1745), [sym_comment] = ACTIONS(39), }, - [464] = { + [452] = { [sym__expression] = STATE(725), [sym_conditional_expression] = STATE(725), [sym_assignment_expression] = STATE(725), @@ -18913,26 +18256,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(725), [sym_parenthesized_expression] = STATE(725), [sym_concatenated_string] = STATE(725), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1903), - [sym_char_literal] = ACTIONS(1903), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1905), - [sym_false] = ACTIONS(1905), - [sym_null] = ACTIONS(1905), - [sym_identifier] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1747), + [sym_char_literal] = ACTIONS(1747), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1749), + [sym_false] = ACTIONS(1749), + [sym_null] = ACTIONS(1749), + [sym_identifier] = ACTIONS(1749), [sym_comment] = ACTIONS(39), }, - [465] = { + [453] = { [sym__expression] = STATE(726), [sym_conditional_expression] = STATE(726), [sym_assignment_expression] = STATE(726), @@ -18951,26 +18294,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(726), [sym_parenthesized_expression] = STATE(726), [sym_concatenated_string] = STATE(726), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1907), - [sym_char_literal] = ACTIONS(1907), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(1909), - [sym_false] = ACTIONS(1909), - [sym_null] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1751), + [sym_char_literal] = ACTIONS(1751), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1753), + [sym_false] = ACTIONS(1753), + [sym_null] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1753), [sym_comment] = ACTIONS(39), }, - [466] = { + [454] = { [sym__expression] = STATE(727), [sym_conditional_expression] = STATE(727), [sym_assignment_expression] = STATE(727), @@ -18989,26 +18332,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(727), [sym_parenthesized_expression] = STATE(727), [sym_concatenated_string] = STATE(727), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1911), - [sym_char_literal] = ACTIONS(1911), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1913), - [sym_false] = ACTIONS(1913), - [sym_null] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1755), + [sym_char_literal] = ACTIONS(1755), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1757), + [sym_false] = ACTIONS(1757), + [sym_null] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1757), [sym_comment] = ACTIONS(39), }, - [467] = { + [455] = { [sym__expression] = STATE(728), [sym_conditional_expression] = STATE(728), [sym_assignment_expression] = STATE(728), @@ -19027,26 +18370,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(728), [sym_parenthesized_expression] = STATE(728), [sym_concatenated_string] = STATE(728), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1915), - [sym_char_literal] = ACTIONS(1915), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [sym_null] = ACTIONS(1917), - [sym_identifier] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1759), + [sym_char_literal] = ACTIONS(1759), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1761), + [sym_false] = ACTIONS(1761), + [sym_null] = ACTIONS(1761), + [sym_identifier] = ACTIONS(1761), [sym_comment] = ACTIONS(39), }, - [468] = { + [456] = { [sym__expression] = STATE(729), [sym_conditional_expression] = STATE(729), [sym_assignment_expression] = STATE(729), @@ -19065,26 +18408,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(729), [sym_parenthesized_expression] = STATE(729), [sym_concatenated_string] = STATE(729), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1919), - [sym_char_literal] = ACTIONS(1919), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1921), - [sym_false] = ACTIONS(1921), - [sym_null] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1763), + [sym_char_literal] = ACTIONS(1763), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_identifier] = ACTIONS(1765), [sym_comment] = ACTIONS(39), }, - [469] = { + [457] = { [sym__expression] = STATE(730), [sym_conditional_expression] = STATE(730), [sym_assignment_expression] = STATE(730), @@ -19103,26 +18446,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(730), [sym_parenthesized_expression] = STATE(730), [sym_concatenated_string] = STATE(730), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1923), - [sym_char_literal] = ACTIONS(1923), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1925), - [sym_false] = ACTIONS(1925), - [sym_null] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1767), + [sym_char_literal] = ACTIONS(1767), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1769), + [sym_false] = ACTIONS(1769), + [sym_null] = ACTIONS(1769), + [sym_identifier] = ACTIONS(1769), [sym_comment] = ACTIONS(39), }, - [470] = { + [458] = { [sym__expression] = STATE(731), [sym_conditional_expression] = STATE(731), [sym_assignment_expression] = STATE(731), @@ -19141,26 +18484,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(731), [sym_parenthesized_expression] = STATE(731), [sym_concatenated_string] = STATE(731), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1927), - [sym_char_literal] = ACTIONS(1927), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1929), - [sym_false] = ACTIONS(1929), - [sym_null] = ACTIONS(1929), - [sym_identifier] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1771), + [sym_char_literal] = ACTIONS(1771), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1773), + [sym_false] = ACTIONS(1773), + [sym_null] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1773), [sym_comment] = ACTIONS(39), }, - [471] = { + [459] = { [sym__expression] = STATE(732), [sym_conditional_expression] = STATE(732), [sym_assignment_expression] = STATE(732), @@ -19179,26 +18522,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(732), [sym_parenthesized_expression] = STATE(732), [sym_concatenated_string] = STATE(732), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1931), - [sym_char_literal] = ACTIONS(1931), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1933), - [sym_false] = ACTIONS(1933), - [sym_null] = ACTIONS(1933), - [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1775), + [sym_char_literal] = ACTIONS(1775), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1777), + [sym_false] = ACTIONS(1777), + [sym_null] = ACTIONS(1777), + [sym_identifier] = ACTIONS(1777), [sym_comment] = ACTIONS(39), }, - [472] = { + [460] = { [sym__expression] = STATE(733), [sym_conditional_expression] = STATE(733), [sym_assignment_expression] = STATE(733), @@ -19217,105 +18560,979 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(733), [sym_parenthesized_expression] = STATE(733), [sym_concatenated_string] = STATE(733), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1935), - [sym_char_literal] = ACTIONS(1935), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1937), - [sym_false] = ACTIONS(1937), - [sym_null] = ACTIONS(1937), - [sym_identifier] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1779), + [sym_char_literal] = ACTIONS(1779), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1781), + [sym_false] = ACTIONS(1781), + [sym_null] = ACTIONS(1781), + [sym_identifier] = ACTIONS(1781), + [sym_comment] = ACTIONS(39), + }, + [461] = { + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1701), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_RBRACK] = ACTIONS(1701), + [anon_sym_EQ] = ACTIONS(1703), + [anon_sym_COLON] = ACTIONS(1701), + [anon_sym_QMARK] = ACTIONS(1701), + [anon_sym_STAR_EQ] = ACTIONS(1701), + [anon_sym_SLASH_EQ] = ACTIONS(1701), + [anon_sym_PERCENT_EQ] = ACTIONS(1701), + [anon_sym_PLUS_EQ] = ACTIONS(1701), + [anon_sym_DASH_EQ] = ACTIONS(1701), + [anon_sym_LT_LT_EQ] = ACTIONS(1701), + [anon_sym_GT_GT_EQ] = ACTIONS(1701), + [anon_sym_AMP_EQ] = ACTIONS(1701), + [anon_sym_CARET_EQ] = ACTIONS(1701), + [anon_sym_PIPE_EQ] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_PIPE_PIPE] = ACTIONS(1701), + [anon_sym_AMP_AMP] = ACTIONS(1701), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_CARET] = ACTIONS(1703), + [anon_sym_EQ_EQ] = ACTIONS(1701), + [anon_sym_BANG_EQ] = ACTIONS(1701), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_GT] = ACTIONS(1703), + [anon_sym_LT_EQ] = ACTIONS(1701), + [anon_sym_GT_EQ] = ACTIONS(1701), + [anon_sym_LT_LT] = ACTIONS(1703), + [anon_sym_GT_GT] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1703), + [anon_sym_PERCENT] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1701), + [anon_sym_DASH_GT] = ACTIONS(1701), + [sym_comment] = ACTIONS(39), + }, + [462] = { + [sym_identifier] = ACTIONS(1783), + [sym_comment] = ACTIONS(39), + }, + [463] = { + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_RBRACK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_COLON] = ACTIONS(1785), + [anon_sym_QMARK] = ACTIONS(1785), + [anon_sym_STAR_EQ] = ACTIONS(1785), + [anon_sym_SLASH_EQ] = ACTIONS(1785), + [anon_sym_PERCENT_EQ] = ACTIONS(1785), + [anon_sym_PLUS_EQ] = ACTIONS(1785), + [anon_sym_DASH_EQ] = ACTIONS(1785), + [anon_sym_LT_LT_EQ] = ACTIONS(1785), + [anon_sym_GT_GT_EQ] = ACTIONS(1785), + [anon_sym_AMP_EQ] = ACTIONS(1785), + [anon_sym_CARET_EQ] = ACTIONS(1785), + [anon_sym_PIPE_EQ] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1787), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_LT_LT] = ACTIONS(1787), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PERCENT] = ACTIONS(1787), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DOT] = ACTIONS(1785), + [anon_sym_DASH_GT] = ACTIONS(1785), + [sym_comment] = ACTIONS(39), + }, + [464] = { + [ts_builtin_sym_end] = ACTIONS(1789), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1791), + [sym_preproc_directive] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_typedef] = ACTIONS(1791), + [anon_sym_extern] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_auto] = ACTIONS(1791), + [anon_sym_register] = ACTIONS(1791), + [anon_sym_inline] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_restrict] = ACTIONS(1791), + [anon_sym_volatile] = ACTIONS(1791), + [anon_sym__Atomic] = ACTIONS(1791), + [anon_sym_unsigned] = ACTIONS(1791), + [anon_sym_long] = ACTIONS(1791), + [anon_sym_short] = ACTIONS(1791), + [sym_primitive_type] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_sizeof] = ACTIONS(1791), + [sym_number_literal] = ACTIONS(1789), + [sym_char_literal] = ACTIONS(1789), + [sym_string_literal] = ACTIONS(1789), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1791), + [sym_comment] = ACTIONS(39), + }, + [465] = { + [sym_preproc_include] = STATE(465), + [sym_preproc_def] = STATE(465), + [sym_preproc_function_def] = STATE(465), + [sym_preproc_call] = STATE(465), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(465), + [sym_type_definition] = STATE(465), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(465), + [sym_storage_class_specifier] = STATE(20), + [sym_type_qualifier] = STATE(20), + [sym__type_specifier] = STATE(18), + [sym_sized_type_specifier] = STATE(18), + [sym_enum_specifier] = STATE(18), + [sym_struct_specifier] = STATE(18), + [sym_union_specifier] = STATE(18), + [sym_labeled_statement] = STATE(465), + [sym_expression_statement] = STATE(465), + [sym_if_statement] = STATE(465), + [sym_switch_statement] = STATE(465), + [sym_case_statement] = STATE(465), + [sym_while_statement] = STATE(465), + [sym_do_statement] = STATE(465), + [sym_for_statement] = STATE(465), + [sym_return_statement] = STATE(465), + [sym_break_statement] = STATE(465), + [sym_continue_statement] = STATE(465), + [sym_goto_statement] = STATE(465), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym__empty_declaration] = STATE(465), + [sym_macro_type_specifier] = STATE(18), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(465), + [aux_sym__declaration_specifiers_repeat1] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(21), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1793), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1802), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1805), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1808), + [sym_preproc_directive] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_typedef] = ACTIONS(1817), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_static] = ACTIONS(1820), + [anon_sym_auto] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_inline] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_restrict] = ACTIONS(1831), + [anon_sym_volatile] = ACTIONS(1831), + [anon_sym__Atomic] = ACTIONS(1831), + [anon_sym_unsigned] = ACTIONS(1834), + [anon_sym_long] = ACTIONS(1834), + [anon_sym_short] = ACTIONS(1834), + [sym_primitive_type] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_switch] = ACTIONS(1852), + [anon_sym_case] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1861), + [anon_sym_do] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1873), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_sizeof] = ACTIONS(1894), + [sym_number_literal] = ACTIONS(1897), + [sym_char_literal] = ACTIONS(1897), + [sym_string_literal] = ACTIONS(1900), + [sym_true] = ACTIONS(1903), + [sym_false] = ACTIONS(1903), + [sym_null] = ACTIONS(1903), + [sym_identifier] = ACTIONS(1906), + [sym_comment] = ACTIONS(39), + }, + [466] = { + [anon_sym_RPAREN] = ACTIONS(1909), + [sym_comment] = ACTIONS(39), + }, + [467] = { + [sym_type_qualifier] = STATE(115), + [sym__type_specifier] = STATE(113), + [sym_sized_type_specifier] = STATE(113), + [sym_enum_specifier] = STATE(113), + [sym_struct_specifier] = STATE(113), + [sym_union_specifier] = STATE(113), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(736), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), + [sym_macro_type_specifier] = STATE(113), + [aux_sym_type_definition_repeat1] = STATE(115), + [aux_sym_sized_type_specifier_repeat1] = STATE(116), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(217), + [anon_sym_long] = ACTIONS(217), + [anon_sym_short] = ACTIONS(217), + [sym_primitive_type] = ACTIONS(219), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), + [sym_comment] = ACTIONS(39), + }, + [468] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1705), + [anon_sym_EQ] = ACTIONS(1707), + [anon_sym_QMARK] = ACTIONS(1705), + [anon_sym_STAR_EQ] = ACTIONS(1705), + [anon_sym_SLASH_EQ] = ACTIONS(1705), + [anon_sym_PERCENT_EQ] = ACTIONS(1705), + [anon_sym_PLUS_EQ] = ACTIONS(1705), + [anon_sym_DASH_EQ] = ACTIONS(1705), + [anon_sym_LT_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_GT_EQ] = ACTIONS(1705), + [anon_sym_AMP_EQ] = ACTIONS(1705), + [anon_sym_CARET_EQ] = ACTIONS(1705), + [anon_sym_PIPE_EQ] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_EQ_EQ] = ACTIONS(1705), + [anon_sym_BANG_EQ] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_EQ] = ACTIONS(1705), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [469] = { + [aux_sym_concatenated_string_repeat1] = STATE(737), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_RBRACK] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1711), + [anon_sym_QMARK] = ACTIONS(1709), + [anon_sym_STAR_EQ] = ACTIONS(1709), + [anon_sym_SLASH_EQ] = ACTIONS(1709), + [anon_sym_PERCENT_EQ] = ACTIONS(1709), + [anon_sym_PLUS_EQ] = ACTIONS(1709), + [anon_sym_DASH_EQ] = ACTIONS(1709), + [anon_sym_LT_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_GT_EQ] = ACTIONS(1709), + [anon_sym_AMP_EQ] = ACTIONS(1709), + [anon_sym_CARET_EQ] = ACTIONS(1709), + [anon_sym_PIPE_EQ] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PIPE_PIPE] = ACTIONS(1709), + [anon_sym_AMP_AMP] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1709), + [anon_sym_LT_LT] = ACTIONS(1711), + [anon_sym_GT_GT] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_PERCENT] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_DASH_GT] = ACTIONS(1709), + [sym_string_literal] = ACTIONS(1911), + [sym_comment] = ACTIONS(39), + }, + [470] = { + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_EQ] = ACTIONS(1913), + [sym_comment] = ACTIONS(39), + }, + [471] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [472] = { + [sym_storage_class_specifier] = STATE(739), + [sym_type_qualifier] = STATE(739), + [aux_sym__declaration_specifiers_repeat1] = STATE(739), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(243), + [anon_sym_RBRACK] = ACTIONS(243), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_BANG] = ACTIONS(243), + [anon_sym_TILDE] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_DASH_DASH] = ACTIONS(243), + [anon_sym_PLUS_PLUS] = ACTIONS(243), + [anon_sym_sizeof] = ACTIONS(245), + [sym_number_literal] = ACTIONS(243), + [sym_char_literal] = ACTIONS(243), + [sym_string_literal] = ACTIONS(243), + [sym_true] = ACTIONS(245), + [sym_false] = ACTIONS(245), + [sym_null] = ACTIONS(245), + [sym_identifier] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, [473] = { - [sym__expression] = STATE(734), - [sym_conditional_expression] = STATE(734), - [sym_assignment_expression] = STATE(734), - [sym_pointer_expression] = STATE(734), - [sym_logical_expression] = STATE(734), - [sym_bitwise_expression] = STATE(734), - [sym_equality_expression] = STATE(734), - [sym_relational_expression] = STATE(734), - [sym_shift_expression] = STATE(734), - [sym_math_expression] = STATE(734), - [sym_cast_expression] = STATE(734), - [sym_sizeof_expression] = STATE(734), - [sym_subscript_expression] = STATE(734), - [sym_call_expression] = STATE(734), - [sym_field_expression] = STATE(734), - [sym_compound_literal_expression] = STATE(734), - [sym_parenthesized_expression] = STATE(734), - [sym_concatenated_string] = STATE(734), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1939), - [sym_char_literal] = ACTIONS(1939), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1941), - [sym_false] = ACTIONS(1941), - [sym_null] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1941), + [sym__expression] = STATE(721), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(721), + [sym_logical_expression] = STATE(721), + [sym_bitwise_expression] = STATE(721), + [sym_equality_expression] = STATE(721), + [sym_relational_expression] = STATE(721), + [sym_shift_expression] = STATE(721), + [sym_math_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(721), + [sym_call_expression] = STATE(721), + [sym_field_expression] = STATE(721), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(721), + [sym_concatenated_string] = STATE(721), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1731), + [sym_char_literal] = ACTIONS(1731), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_null] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1733), [sym_comment] = ACTIONS(39), }, [474] = { - [sym__expression] = STATE(735), - [sym_conditional_expression] = STATE(735), - [sym_assignment_expression] = STATE(735), - [sym_pointer_expression] = STATE(735), - [sym_logical_expression] = STATE(735), - [sym_bitwise_expression] = STATE(735), - [sym_equality_expression] = STATE(735), - [sym_relational_expression] = STATE(735), - [sym_shift_expression] = STATE(735), - [sym_math_expression] = STATE(735), - [sym_cast_expression] = STATE(735), - [sym_sizeof_expression] = STATE(735), - [sym_subscript_expression] = STATE(735), - [sym_call_expression] = STATE(735), - [sym_field_expression] = STATE(735), - [sym_compound_literal_expression] = STATE(735), - [sym_parenthesized_expression] = STATE(735), - [sym_concatenated_string] = STATE(735), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1943), - [sym_char_literal] = ACTIONS(1943), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1945), - [sym_false] = ACTIONS(1945), - [sym_null] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1945), + [sym__expression] = STATE(740), + [sym_conditional_expression] = STATE(740), + [sym_assignment_expression] = STATE(740), + [sym_pointer_expression] = STATE(740), + [sym_logical_expression] = STATE(740), + [sym_bitwise_expression] = STATE(740), + [sym_equality_expression] = STATE(740), + [sym_relational_expression] = STATE(740), + [sym_shift_expression] = STATE(740), + [sym_math_expression] = STATE(740), + [sym_cast_expression] = STATE(740), + [sym_sizeof_expression] = STATE(740), + [sym_subscript_expression] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_field_expression] = STATE(740), + [sym_compound_literal_expression] = STATE(740), + [sym_parenthesized_expression] = STATE(740), + [sym_concatenated_string] = STATE(740), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1917), + [sym_char_literal] = ACTIONS(1917), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1919), + [sym_false] = ACTIONS(1919), + [sym_null] = ACTIONS(1919), + [sym_identifier] = ACTIONS(1919), [sym_comment] = ACTIONS(39), }, [475] = { - [sym_storage_class_specifier] = STATE(736), - [sym_type_qualifier] = STATE(736), - [aux_sym__declaration_specifiers_repeat1] = STATE(736), + [sym__expression] = STATE(741), + [sym_conditional_expression] = STATE(741), + [sym_assignment_expression] = STATE(741), + [sym_pointer_expression] = STATE(741), + [sym_logical_expression] = STATE(741), + [sym_bitwise_expression] = STATE(741), + [sym_equality_expression] = STATE(741), + [sym_relational_expression] = STATE(741), + [sym_shift_expression] = STATE(741), + [sym_math_expression] = STATE(741), + [sym_cast_expression] = STATE(741), + [sym_sizeof_expression] = STATE(741), + [sym_subscript_expression] = STATE(741), + [sym_call_expression] = STATE(741), + [sym_field_expression] = STATE(741), + [sym_compound_literal_expression] = STATE(741), + [sym_parenthesized_expression] = STATE(741), + [sym_concatenated_string] = STATE(741), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1921), + [sym_char_literal] = ACTIONS(1921), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(1923), + [sym_false] = ACTIONS(1923), + [sym_null] = ACTIONS(1923), + [sym_identifier] = ACTIONS(1923), + [sym_comment] = ACTIONS(39), + }, + [476] = { + [sym__expression] = STATE(742), + [sym_conditional_expression] = STATE(742), + [sym_assignment_expression] = STATE(742), + [sym_pointer_expression] = STATE(742), + [sym_logical_expression] = STATE(742), + [sym_bitwise_expression] = STATE(742), + [sym_equality_expression] = STATE(742), + [sym_relational_expression] = STATE(742), + [sym_shift_expression] = STATE(742), + [sym_math_expression] = STATE(742), + [sym_cast_expression] = STATE(742), + [sym_sizeof_expression] = STATE(742), + [sym_subscript_expression] = STATE(742), + [sym_call_expression] = STATE(742), + [sym_field_expression] = STATE(742), + [sym_compound_literal_expression] = STATE(742), + [sym_parenthesized_expression] = STATE(742), + [sym_concatenated_string] = STATE(742), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1925), + [sym_char_literal] = ACTIONS(1925), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1927), + [sym_false] = ACTIONS(1927), + [sym_null] = ACTIONS(1927), + [sym_identifier] = ACTIONS(1927), + [sym_comment] = ACTIONS(39), + }, + [477] = { + [sym__expression] = STATE(743), + [sym_conditional_expression] = STATE(743), + [sym_assignment_expression] = STATE(743), + [sym_pointer_expression] = STATE(743), + [sym_logical_expression] = STATE(743), + [sym_bitwise_expression] = STATE(743), + [sym_equality_expression] = STATE(743), + [sym_relational_expression] = STATE(743), + [sym_shift_expression] = STATE(743), + [sym_math_expression] = STATE(743), + [sym_cast_expression] = STATE(743), + [sym_sizeof_expression] = STATE(743), + [sym_subscript_expression] = STATE(743), + [sym_call_expression] = STATE(743), + [sym_field_expression] = STATE(743), + [sym_compound_literal_expression] = STATE(743), + [sym_parenthesized_expression] = STATE(743), + [sym_concatenated_string] = STATE(743), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1929), + [sym_char_literal] = ACTIONS(1929), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1931), + [sym_false] = ACTIONS(1931), + [sym_null] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1931), + [sym_comment] = ACTIONS(39), + }, + [478] = { + [sym__expression] = STATE(744), + [sym_conditional_expression] = STATE(744), + [sym_assignment_expression] = STATE(744), + [sym_pointer_expression] = STATE(744), + [sym_logical_expression] = STATE(744), + [sym_bitwise_expression] = STATE(744), + [sym_equality_expression] = STATE(744), + [sym_relational_expression] = STATE(744), + [sym_shift_expression] = STATE(744), + [sym_math_expression] = STATE(744), + [sym_cast_expression] = STATE(744), + [sym_sizeof_expression] = STATE(744), + [sym_subscript_expression] = STATE(744), + [sym_call_expression] = STATE(744), + [sym_field_expression] = STATE(744), + [sym_compound_literal_expression] = STATE(744), + [sym_parenthesized_expression] = STATE(744), + [sym_concatenated_string] = STATE(744), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1933), + [sym_char_literal] = ACTIONS(1933), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1935), + [sym_false] = ACTIONS(1935), + [sym_null] = ACTIONS(1935), + [sym_identifier] = ACTIONS(1935), + [sym_comment] = ACTIONS(39), + }, + [479] = { + [sym__expression] = STATE(745), + [sym_conditional_expression] = STATE(745), + [sym_assignment_expression] = STATE(745), + [sym_pointer_expression] = STATE(745), + [sym_logical_expression] = STATE(745), + [sym_bitwise_expression] = STATE(745), + [sym_equality_expression] = STATE(745), + [sym_relational_expression] = STATE(745), + [sym_shift_expression] = STATE(745), + [sym_math_expression] = STATE(745), + [sym_cast_expression] = STATE(745), + [sym_sizeof_expression] = STATE(745), + [sym_subscript_expression] = STATE(745), + [sym_call_expression] = STATE(745), + [sym_field_expression] = STATE(745), + [sym_compound_literal_expression] = STATE(745), + [sym_parenthesized_expression] = STATE(745), + [sym_concatenated_string] = STATE(745), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1937), + [sym_char_literal] = ACTIONS(1937), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1939), + [sym_false] = ACTIONS(1939), + [sym_null] = ACTIONS(1939), + [sym_identifier] = ACTIONS(1939), + [sym_comment] = ACTIONS(39), + }, + [480] = { + [sym__expression] = STATE(746), + [sym_conditional_expression] = STATE(746), + [sym_assignment_expression] = STATE(746), + [sym_pointer_expression] = STATE(746), + [sym_logical_expression] = STATE(746), + [sym_bitwise_expression] = STATE(746), + [sym_equality_expression] = STATE(746), + [sym_relational_expression] = STATE(746), + [sym_shift_expression] = STATE(746), + [sym_math_expression] = STATE(746), + [sym_cast_expression] = STATE(746), + [sym_sizeof_expression] = STATE(746), + [sym_subscript_expression] = STATE(746), + [sym_call_expression] = STATE(746), + [sym_field_expression] = STATE(746), + [sym_compound_literal_expression] = STATE(746), + [sym_parenthesized_expression] = STATE(746), + [sym_concatenated_string] = STATE(746), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1941), + [sym_char_literal] = ACTIONS(1941), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1943), + [sym_false] = ACTIONS(1943), + [sym_null] = ACTIONS(1943), + [sym_identifier] = ACTIONS(1943), + [sym_comment] = ACTIONS(39), + }, + [481] = { + [sym__expression] = STATE(747), + [sym_conditional_expression] = STATE(747), + [sym_assignment_expression] = STATE(747), + [sym_pointer_expression] = STATE(747), + [sym_logical_expression] = STATE(747), + [sym_bitwise_expression] = STATE(747), + [sym_equality_expression] = STATE(747), + [sym_relational_expression] = STATE(747), + [sym_shift_expression] = STATE(747), + [sym_math_expression] = STATE(747), + [sym_cast_expression] = STATE(747), + [sym_sizeof_expression] = STATE(747), + [sym_subscript_expression] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_field_expression] = STATE(747), + [sym_compound_literal_expression] = STATE(747), + [sym_parenthesized_expression] = STATE(747), + [sym_concatenated_string] = STATE(747), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1945), + [sym_char_literal] = ACTIONS(1945), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1947), + [sym_false] = ACTIONS(1947), + [sym_null] = ACTIONS(1947), + [sym_identifier] = ACTIONS(1947), + [sym_comment] = ACTIONS(39), + }, + [482] = { + [sym__expression] = STATE(748), + [sym_conditional_expression] = STATE(748), + [sym_assignment_expression] = STATE(748), + [sym_pointer_expression] = STATE(748), + [sym_logical_expression] = STATE(748), + [sym_bitwise_expression] = STATE(748), + [sym_equality_expression] = STATE(748), + [sym_relational_expression] = STATE(748), + [sym_shift_expression] = STATE(748), + [sym_math_expression] = STATE(748), + [sym_cast_expression] = STATE(748), + [sym_sizeof_expression] = STATE(748), + [sym_subscript_expression] = STATE(748), + [sym_call_expression] = STATE(748), + [sym_field_expression] = STATE(748), + [sym_compound_literal_expression] = STATE(748), + [sym_parenthesized_expression] = STATE(748), + [sym_concatenated_string] = STATE(748), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1949), + [sym_char_literal] = ACTIONS(1949), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1951), + [sym_false] = ACTIONS(1951), + [sym_null] = ACTIONS(1951), + [sym_identifier] = ACTIONS(1951), + [sym_comment] = ACTIONS(39), + }, + [483] = { + [sym__expression] = STATE(749), + [sym_conditional_expression] = STATE(749), + [sym_assignment_expression] = STATE(749), + [sym_pointer_expression] = STATE(749), + [sym_logical_expression] = STATE(749), + [sym_bitwise_expression] = STATE(749), + [sym_equality_expression] = STATE(749), + [sym_relational_expression] = STATE(749), + [sym_shift_expression] = STATE(749), + [sym_math_expression] = STATE(749), + [sym_cast_expression] = STATE(749), + [sym_sizeof_expression] = STATE(749), + [sym_subscript_expression] = STATE(749), + [sym_call_expression] = STATE(749), + [sym_field_expression] = STATE(749), + [sym_compound_literal_expression] = STATE(749), + [sym_parenthesized_expression] = STATE(749), + [sym_concatenated_string] = STATE(749), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1953), + [sym_char_literal] = ACTIONS(1953), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1955), + [sym_false] = ACTIONS(1955), + [sym_null] = ACTIONS(1955), + [sym_identifier] = ACTIONS(1955), + [sym_comment] = ACTIONS(39), + }, + [484] = { + [sym__expression] = STATE(750), + [sym_conditional_expression] = STATE(750), + [sym_assignment_expression] = STATE(750), + [sym_pointer_expression] = STATE(750), + [sym_logical_expression] = STATE(750), + [sym_bitwise_expression] = STATE(750), + [sym_equality_expression] = STATE(750), + [sym_relational_expression] = STATE(750), + [sym_shift_expression] = STATE(750), + [sym_math_expression] = STATE(750), + [sym_cast_expression] = STATE(750), + [sym_sizeof_expression] = STATE(750), + [sym_subscript_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_field_expression] = STATE(750), + [sym_compound_literal_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_concatenated_string] = STATE(750), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1957), + [sym_char_literal] = ACTIONS(1957), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1959), + [sym_false] = ACTIONS(1959), + [sym_null] = ACTIONS(1959), + [sym_identifier] = ACTIONS(1959), + [sym_comment] = ACTIONS(39), + }, + [485] = { + [sym_storage_class_specifier] = STATE(751), + [sym_type_qualifier] = STATE(751), + [aux_sym__declaration_specifiers_repeat1] = STATE(751), [anon_sym_LPAREN] = ACTIONS(243), [anon_sym_extern] = ACTIONS(23), [anon_sym_STAR] = ACTIONS(243), @@ -19345,8 +19562,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(245), [sym_comment] = ACTIONS(39), }, - [476] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(476), + [486] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(486), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_extern] = ACTIONS(315), [anon_sym_STAR] = ACTIONS(313), @@ -19359,9 +19576,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(315), [anon_sym_volatile] = ACTIONS(315), [anon_sym__Atomic] = ACTIONS(315), - [anon_sym_unsigned] = ACTIONS(1947), - [anon_sym_long] = ACTIONS(1947), - [anon_sym_short] = ACTIONS(1947), + [anon_sym_unsigned] = ACTIONS(1961), + [anon_sym_long] = ACTIONS(1961), + [anon_sym_short] = ACTIONS(1961), [sym_primitive_type] = ACTIONS(315), [anon_sym_AMP] = ACTIONS(313), [anon_sym_BANG] = ACTIONS(313), @@ -19380,345 +19597,345 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(315), [sym_comment] = ACTIONS(39), }, - [477] = { - [anon_sym_RBRACE] = ACTIONS(1950), + [487] = { + [anon_sym_RBRACE] = ACTIONS(1964), [sym_comment] = ACTIONS(39), }, - [478] = { - [anon_sym_LPAREN] = ACTIONS(1952), - [anon_sym_COMMA] = ACTIONS(1952), - [anon_sym_RPAREN] = ACTIONS(1952), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_RBRACE] = ACTIONS(1952), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1952), - [anon_sym_RBRACK] = ACTIONS(1952), - [anon_sym_EQ] = ACTIONS(1954), - [anon_sym_COLON] = ACTIONS(1952), - [anon_sym_QMARK] = ACTIONS(1952), - [anon_sym_STAR_EQ] = ACTIONS(1952), - [anon_sym_SLASH_EQ] = ACTIONS(1952), - [anon_sym_PERCENT_EQ] = ACTIONS(1952), - [anon_sym_PLUS_EQ] = ACTIONS(1952), - [anon_sym_DASH_EQ] = ACTIONS(1952), - [anon_sym_LT_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_GT_EQ] = ACTIONS(1952), - [anon_sym_AMP_EQ] = ACTIONS(1952), - [anon_sym_CARET_EQ] = ACTIONS(1952), - [anon_sym_PIPE_EQ] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1952), - [anon_sym_AMP_AMP] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1954), - [anon_sym_CARET] = ACTIONS(1954), - [anon_sym_EQ_EQ] = ACTIONS(1952), - [anon_sym_BANG_EQ] = ACTIONS(1952), - [anon_sym_LT] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1954), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1954), - [anon_sym_PLUS] = ACTIONS(1954), - [anon_sym_DASH] = ACTIONS(1954), - [anon_sym_SLASH] = ACTIONS(1954), - [anon_sym_PERCENT] = ACTIONS(1954), - [anon_sym_DASH_DASH] = ACTIONS(1952), - [anon_sym_PLUS_PLUS] = ACTIONS(1952), - [anon_sym_DOT] = ACTIONS(1952), - [anon_sym_DASH_GT] = ACTIONS(1952), + [488] = { + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_COMMA] = ACTIONS(1966), + [anon_sym_RPAREN] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_RBRACK] = ACTIONS(1966), + [anon_sym_EQ] = ACTIONS(1968), + [anon_sym_COLON] = ACTIONS(1966), + [anon_sym_QMARK] = ACTIONS(1966), + [anon_sym_STAR_EQ] = ACTIONS(1966), + [anon_sym_SLASH_EQ] = ACTIONS(1966), + [anon_sym_PERCENT_EQ] = ACTIONS(1966), + [anon_sym_PLUS_EQ] = ACTIONS(1966), + [anon_sym_DASH_EQ] = ACTIONS(1966), + [anon_sym_LT_LT_EQ] = ACTIONS(1966), + [anon_sym_GT_GT_EQ] = ACTIONS(1966), + [anon_sym_AMP_EQ] = ACTIONS(1966), + [anon_sym_CARET_EQ] = ACTIONS(1966), + [anon_sym_PIPE_EQ] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_PIPE_PIPE] = ACTIONS(1966), + [anon_sym_AMP_AMP] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1968), + [anon_sym_CARET] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_LT] = ACTIONS(1968), + [anon_sym_GT] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1966), + [anon_sym_GT_EQ] = ACTIONS(1966), + [anon_sym_LT_LT] = ACTIONS(1968), + [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_PLUS] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_SLASH] = ACTIONS(1968), + [anon_sym_PERCENT] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1966), + [anon_sym_PLUS_PLUS] = ACTIONS(1966), + [anon_sym_DOT] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(1966), [sym_comment] = ACTIONS(39), }, - [479] = { - [sym__expression] = STATE(738), - [sym_conditional_expression] = STATE(738), - [sym_assignment_expression] = STATE(738), - [sym_pointer_expression] = STATE(738), - [sym_logical_expression] = STATE(738), - [sym_bitwise_expression] = STATE(738), - [sym_equality_expression] = STATE(738), - [sym_relational_expression] = STATE(738), - [sym_shift_expression] = STATE(738), - [sym_math_expression] = STATE(738), - [sym_cast_expression] = STATE(738), - [sym_sizeof_expression] = STATE(738), - [sym_subscript_expression] = STATE(738), - [sym_call_expression] = STATE(738), - [sym_field_expression] = STATE(738), - [sym_compound_literal_expression] = STATE(738), - [sym_parenthesized_expression] = STATE(738), - [sym_concatenated_string] = STATE(738), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(1956), - [sym_char_literal] = ACTIONS(1956), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(1958), - [sym_false] = ACTIONS(1958), - [sym_null] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1958), + [489] = { + [sym__expression] = STATE(753), + [sym_conditional_expression] = STATE(753), + [sym_assignment_expression] = STATE(753), + [sym_pointer_expression] = STATE(753), + [sym_logical_expression] = STATE(753), + [sym_bitwise_expression] = STATE(753), + [sym_equality_expression] = STATE(753), + [sym_relational_expression] = STATE(753), + [sym_shift_expression] = STATE(753), + [sym_math_expression] = STATE(753), + [sym_cast_expression] = STATE(753), + [sym_sizeof_expression] = STATE(753), + [sym_subscript_expression] = STATE(753), + [sym_call_expression] = STATE(753), + [sym_field_expression] = STATE(753), + [sym_compound_literal_expression] = STATE(753), + [sym_parenthesized_expression] = STATE(753), + [sym_concatenated_string] = STATE(753), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(1970), + [sym_char_literal] = ACTIONS(1970), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(1972), + [sym_false] = ACTIONS(1972), + [sym_null] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1972), [sym_comment] = ACTIONS(39), }, - [480] = { - [sym_identifier] = ACTIONS(1960), + [490] = { + [sym_identifier] = ACTIONS(1974), [sym_comment] = ACTIONS(39), }, - [481] = { - [sym_argument_list] = STATE(453), - [aux_sym_initializer_list_repeat1] = STATE(741), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1315), - [anon_sym_QMARK] = ACTIONS(1317), - [anon_sym_STAR_EQ] = ACTIONS(1319), - [anon_sym_SLASH_EQ] = ACTIONS(1319), - [anon_sym_PERCENT_EQ] = ACTIONS(1319), - [anon_sym_PLUS_EQ] = ACTIONS(1319), - [anon_sym_DASH_EQ] = ACTIONS(1319), - [anon_sym_LT_LT_EQ] = ACTIONS(1319), - [anon_sym_GT_GT_EQ] = ACTIONS(1319), - [anon_sym_AMP_EQ] = ACTIONS(1319), - [anon_sym_CARET_EQ] = ACTIONS(1319), - [anon_sym_PIPE_EQ] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(1323), - [anon_sym_AMP_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [491] = { + [sym_argument_list] = STATE(463), + [aux_sym_initializer_list_repeat1] = STATE(756), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [482] = { - [aux_sym_initializer_list_repeat1] = STATE(741), - [anon_sym_COMMA] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1950), + [492] = { + [aux_sym_initializer_list_repeat1] = STATE(756), + [anon_sym_COMMA] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1964), [sym_comment] = ACTIONS(39), }, - [483] = { - [sym_subscript_designator] = STATE(743), - [sym_field_designator] = STATE(743), - [aux_sym_initializer_pair_repeat1] = STATE(743), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_EQ] = ACTIONS(1964), - [anon_sym_DOT] = ACTIONS(1168), + [493] = { + [sym_subscript_designator] = STATE(758), + [sym_field_designator] = STATE(758), + [aux_sym_initializer_pair_repeat1] = STATE(758), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_EQ] = ACTIONS(1978), + [anon_sym_DOT] = ACTIONS(1180), [sym_comment] = ACTIONS(39), }, - [484] = { - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_RPAREN] = ACTIONS(1966), + [494] = { + [anon_sym_COMMA] = ACTIONS(1980), + [anon_sym_RPAREN] = ACTIONS(1980), [sym_comment] = ACTIONS(39), }, - [485] = { - [anon_sym_LF] = ACTIONS(1968), - [sym_preproc_arg] = ACTIONS(1968), + [495] = { + [anon_sym_LF] = ACTIONS(1982), + [sym_preproc_arg] = ACTIONS(1982), [sym_comment] = ACTIONS(47), }, - [486] = { - [aux_sym_preproc_params_repeat1] = STATE(486), - [anon_sym_COMMA] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1966), + [496] = { + [aux_sym_preproc_params_repeat1] = STATE(496), + [anon_sym_COMMA] = ACTIONS(1984), + [anon_sym_RPAREN] = ACTIONS(1980), [sym_comment] = ACTIONS(39), }, - [487] = { - [anon_sym_LF] = ACTIONS(1973), + [497] = { + [anon_sym_LF] = ACTIONS(1987), [sym_comment] = ACTIONS(47), }, - [488] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(640), - [sym_preproc_directive] = ACTIONS(640), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_typedef] = ACTIONS(640), - [anon_sym_extern] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_static] = ACTIONS(640), - [anon_sym_auto] = ACTIONS(640), - [anon_sym_register] = ACTIONS(640), - [anon_sym_inline] = ACTIONS(640), - [anon_sym_const] = ACTIONS(640), - [anon_sym_restrict] = ACTIONS(640), - [anon_sym_volatile] = ACTIONS(640), - [anon_sym__Atomic] = ACTIONS(640), - [anon_sym_unsigned] = ACTIONS(640), - [anon_sym_long] = ACTIONS(640), - [anon_sym_short] = ACTIONS(640), - [sym_primitive_type] = ACTIONS(640), - [anon_sym_enum] = ACTIONS(640), - [anon_sym_struct] = ACTIONS(640), - [anon_sym_union] = ACTIONS(640), - [anon_sym_if] = ACTIONS(640), - [anon_sym_switch] = ACTIONS(640), - [anon_sym_case] = ACTIONS(640), - [anon_sym_default] = ACTIONS(640), - [anon_sym_while] = ACTIONS(640), - [anon_sym_do] = ACTIONS(640), - [anon_sym_for] = ACTIONS(640), - [anon_sym_return] = ACTIONS(640), - [anon_sym_break] = ACTIONS(640), - [anon_sym_continue] = ACTIONS(640), - [anon_sym_goto] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(638), - [anon_sym_sizeof] = ACTIONS(640), - [sym_number_literal] = ACTIONS(638), - [sym_char_literal] = ACTIONS(638), - [sym_string_literal] = ACTIONS(638), - [sym_true] = ACTIONS(640), - [sym_false] = ACTIONS(640), - [sym_null] = ACTIONS(640), - [sym_identifier] = ACTIONS(640), + [498] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(642), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(644), + [sym_preproc_directive] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_typedef] = ACTIONS(644), + [anon_sym_extern] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_static] = ACTIONS(644), + [anon_sym_auto] = ACTIONS(644), + [anon_sym_register] = ACTIONS(644), + [anon_sym_inline] = ACTIONS(644), + [anon_sym_const] = ACTIONS(644), + [anon_sym_restrict] = ACTIONS(644), + [anon_sym_volatile] = ACTIONS(644), + [anon_sym__Atomic] = ACTIONS(644), + [anon_sym_unsigned] = ACTIONS(644), + [anon_sym_long] = ACTIONS(644), + [anon_sym_short] = ACTIONS(644), + [sym_primitive_type] = ACTIONS(644), + [anon_sym_enum] = ACTIONS(644), + [anon_sym_struct] = ACTIONS(644), + [anon_sym_union] = ACTIONS(644), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(644), + [anon_sym_case] = ACTIONS(644), + [anon_sym_default] = ACTIONS(644), + [anon_sym_while] = ACTIONS(644), + [anon_sym_do] = ACTIONS(644), + [anon_sym_for] = ACTIONS(644), + [anon_sym_return] = ACTIONS(644), + [anon_sym_break] = ACTIONS(644), + [anon_sym_continue] = ACTIONS(644), + [anon_sym_goto] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(644), + [anon_sym_DASH_DASH] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(642), + [anon_sym_sizeof] = ACTIONS(644), + [sym_number_literal] = ACTIONS(642), + [sym_char_literal] = ACTIONS(642), + [sym_string_literal] = ACTIONS(642), + [sym_true] = ACTIONS(644), + [sym_false] = ACTIONS(644), + [sym_null] = ACTIONS(644), + [sym_identifier] = ACTIONS(644), [sym_comment] = ACTIONS(39), }, - [489] = { - [anon_sym_LF] = ACTIONS(1975), + [499] = { + [anon_sym_LF] = ACTIONS(1989), [sym_comment] = ACTIONS(47), }, - [490] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(688), - [sym_preproc_directive] = ACTIONS(688), - [anon_sym_typedef] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(688), - [anon_sym_static] = ACTIONS(688), - [anon_sym_auto] = ACTIONS(688), - [anon_sym_register] = ACTIONS(688), - [anon_sym_inline] = ACTIONS(688), - [anon_sym_const] = ACTIONS(688), - [anon_sym_restrict] = ACTIONS(688), - [anon_sym_volatile] = ACTIONS(688), - [anon_sym__Atomic] = ACTIONS(688), - [anon_sym_unsigned] = ACTIONS(688), - [anon_sym_long] = ACTIONS(688), - [anon_sym_short] = ACTIONS(688), - [sym_primitive_type] = ACTIONS(688), - [anon_sym_enum] = ACTIONS(688), - [anon_sym_struct] = ACTIONS(688), - [anon_sym_union] = ACTIONS(688), - [sym_identifier] = ACTIONS(688), + [500] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(692), + [sym_preproc_directive] = ACTIONS(692), + [anon_sym_typedef] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_static] = ACTIONS(692), + [anon_sym_auto] = ACTIONS(692), + [anon_sym_register] = ACTIONS(692), + [anon_sym_inline] = ACTIONS(692), + [anon_sym_const] = ACTIONS(692), + [anon_sym_restrict] = ACTIONS(692), + [anon_sym_volatile] = ACTIONS(692), + [anon_sym__Atomic] = ACTIONS(692), + [anon_sym_unsigned] = ACTIONS(692), + [anon_sym_long] = ACTIONS(692), + [anon_sym_short] = ACTIONS(692), + [sym_primitive_type] = ACTIONS(692), + [anon_sym_enum] = ACTIONS(692), + [anon_sym_struct] = ACTIONS(692), + [anon_sym_union] = ACTIONS(692), + [sym_identifier] = ACTIONS(692), [sym_comment] = ACTIONS(39), }, - [491] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1977), + [501] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1991), [sym_comment] = ACTIONS(39), }, - [492] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(724), - [sym_preproc_directive] = ACTIONS(724), - [anon_sym_typedef] = ACTIONS(724), - [anon_sym_extern] = ACTIONS(724), - [anon_sym_static] = ACTIONS(724), - [anon_sym_auto] = ACTIONS(724), - [anon_sym_register] = ACTIONS(724), - [anon_sym_inline] = ACTIONS(724), - [anon_sym_const] = ACTIONS(724), - [anon_sym_restrict] = ACTIONS(724), - [anon_sym_volatile] = ACTIONS(724), - [anon_sym__Atomic] = ACTIONS(724), - [anon_sym_unsigned] = ACTIONS(724), - [anon_sym_long] = ACTIONS(724), - [anon_sym_short] = ACTIONS(724), - [sym_primitive_type] = ACTIONS(724), - [anon_sym_enum] = ACTIONS(724), - [anon_sym_struct] = ACTIONS(724), - [anon_sym_union] = ACTIONS(724), - [sym_identifier] = ACTIONS(724), + [502] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(728), + [sym_preproc_directive] = ACTIONS(728), + [anon_sym_typedef] = ACTIONS(728), + [anon_sym_extern] = ACTIONS(728), + [anon_sym_static] = ACTIONS(728), + [anon_sym_auto] = ACTIONS(728), + [anon_sym_register] = ACTIONS(728), + [anon_sym_inline] = ACTIONS(728), + [anon_sym_const] = ACTIONS(728), + [anon_sym_restrict] = ACTIONS(728), + [anon_sym_volatile] = ACTIONS(728), + [anon_sym__Atomic] = ACTIONS(728), + [anon_sym_unsigned] = ACTIONS(728), + [anon_sym_long] = ACTIONS(728), + [anon_sym_short] = ACTIONS(728), + [sym_primitive_type] = ACTIONS(728), + [anon_sym_enum] = ACTIONS(728), + [anon_sym_struct] = ACTIONS(728), + [anon_sym_union] = ACTIONS(728), + [sym_identifier] = ACTIONS(728), [sym_comment] = ACTIONS(39), }, - [493] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1979), + [503] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1993), [sym_comment] = ACTIONS(39), }, - [494] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(730), - [sym_preproc_directive] = ACTIONS(730), - [anon_sym_typedef] = ACTIONS(730), - [anon_sym_extern] = ACTIONS(730), - [anon_sym_static] = ACTIONS(730), - [anon_sym_auto] = ACTIONS(730), - [anon_sym_register] = ACTIONS(730), - [anon_sym_inline] = ACTIONS(730), - [anon_sym_const] = ACTIONS(730), - [anon_sym_restrict] = ACTIONS(730), - [anon_sym_volatile] = ACTIONS(730), - [anon_sym__Atomic] = ACTIONS(730), - [anon_sym_unsigned] = ACTIONS(730), - [anon_sym_long] = ACTIONS(730), - [anon_sym_short] = ACTIONS(730), - [sym_primitive_type] = ACTIONS(730), - [anon_sym_enum] = ACTIONS(730), - [anon_sym_struct] = ACTIONS(730), - [anon_sym_union] = ACTIONS(730), - [sym_identifier] = ACTIONS(730), + [504] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(734), + [sym_preproc_directive] = ACTIONS(734), + [anon_sym_typedef] = ACTIONS(734), + [anon_sym_extern] = ACTIONS(734), + [anon_sym_static] = ACTIONS(734), + [anon_sym_auto] = ACTIONS(734), + [anon_sym_register] = ACTIONS(734), + [anon_sym_inline] = ACTIONS(734), + [anon_sym_const] = ACTIONS(734), + [anon_sym_restrict] = ACTIONS(734), + [anon_sym_volatile] = ACTIONS(734), + [anon_sym__Atomic] = ACTIONS(734), + [anon_sym_unsigned] = ACTIONS(734), + [anon_sym_long] = ACTIONS(734), + [anon_sym_short] = ACTIONS(734), + [sym_primitive_type] = ACTIONS(734), + [anon_sym_enum] = ACTIONS(734), + [anon_sym_struct] = ACTIONS(734), + [anon_sym_union] = ACTIONS(734), + [sym_identifier] = ACTIONS(734), [sym_comment] = ACTIONS(39), }, - [495] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1981), + [505] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1995), [sym_comment] = ACTIONS(39), }, - [496] = { - [sym_preproc_arg] = ACTIONS(1983), + [506] = { + [sym_preproc_arg] = ACTIONS(1997), [sym_comment] = ACTIONS(47), }, - [497] = { + [507] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(324), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(324), [anon_sym_LPAREN] = ACTIONS(322), @@ -19775,12 +19992,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(324), [sym_comment] = ACTIONS(39), }, - [498] = { - [anon_sym_LF] = ACTIONS(1985), - [sym_preproc_arg] = ACTIONS(1987), + [508] = { + [anon_sym_LF] = ACTIONS(1999), + [sym_preproc_arg] = ACTIONS(2001), [sym_comment] = ACTIONS(47), }, - [499] = { + [509] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(342), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(342), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(342), @@ -19808,24 +20025,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(342), [sym_comment] = ACTIONS(39), }, - [500] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1989), + [510] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2003), [sym_comment] = ACTIONS(39), }, - [501] = { - [sym_preproc_include] = STATE(162), - [sym_preproc_def] = STATE(162), - [sym_preproc_function_def] = STATE(162), - [sym_preproc_call] = STATE(162), - [sym_preproc_if] = STATE(162), - [sym_preproc_ifdef] = STATE(162), - [sym_preproc_else] = STATE(753), - [sym_preproc_elif] = STATE(753), - [sym_function_definition] = STATE(162), - [sym_declaration] = STATE(162), - [sym_type_definition] = STATE(162), + [511] = { + [sym_preproc_include] = STATE(163), + [sym_preproc_def] = STATE(163), + [sym_preproc_function_def] = STATE(163), + [sym_preproc_call] = STATE(163), + [sym_preproc_if] = STATE(163), + [sym_preproc_ifdef] = STATE(163), + [sym_preproc_else] = STATE(768), + [sym_preproc_elif] = STATE(768), + [sym_function_definition] = STATE(163), + [sym_declaration] = STATE(163), + [sym_type_definition] = STATE(163), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(162), + [sym_linkage_specification] = STATE(163), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -19833,15 +20050,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(162), + [sym__empty_declaration] = STATE(163), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(162), + [aux_sym_translation_unit_repeat1] = STATE(163), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1991), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2005), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -19867,7 +20084,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [502] = { + [512] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(386), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(386), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(386), @@ -19895,24 +20112,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(386), [sym_comment] = ACTIONS(39), }, - [503] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1993), + [513] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2007), [sym_comment] = ACTIONS(39), }, - [504] = { - [sym_preproc_include] = STATE(162), - [sym_preproc_def] = STATE(162), - [sym_preproc_function_def] = STATE(162), - [sym_preproc_call] = STATE(162), - [sym_preproc_if] = STATE(162), - [sym_preproc_ifdef] = STATE(162), - [sym_preproc_else] = STATE(755), - [sym_preproc_elif] = STATE(755), - [sym_function_definition] = STATE(162), - [sym_declaration] = STATE(162), - [sym_type_definition] = STATE(162), + [514] = { + [sym_preproc_include] = STATE(163), + [sym_preproc_def] = STATE(163), + [sym_preproc_function_def] = STATE(163), + [sym_preproc_call] = STATE(163), + [sym_preproc_if] = STATE(163), + [sym_preproc_ifdef] = STATE(163), + [sym_preproc_else] = STATE(770), + [sym_preproc_elif] = STATE(770), + [sym_function_definition] = STATE(163), + [sym_declaration] = STATE(163), + [sym_type_definition] = STATE(163), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(162), + [sym_linkage_specification] = STATE(163), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -19920,15 +20137,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(162), + [sym__empty_declaration] = STATE(163), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(162), + [aux_sym_translation_unit_repeat1] = STATE(163), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1995), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2009), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -19954,7 +20171,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [505] = { + [515] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(394), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(394), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(394), @@ -19982,24 +20199,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(394), [sym_comment] = ACTIONS(39), }, - [506] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1997), + [516] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2011), [sym_comment] = ACTIONS(39), }, - [507] = { - [sym_preproc_include] = STATE(162), - [sym_preproc_def] = STATE(162), - [sym_preproc_function_def] = STATE(162), - [sym_preproc_call] = STATE(162), - [sym_preproc_if] = STATE(162), - [sym_preproc_ifdef] = STATE(162), - [sym_preproc_else] = STATE(757), - [sym_preproc_elif] = STATE(757), - [sym_function_definition] = STATE(162), - [sym_declaration] = STATE(162), - [sym_type_definition] = STATE(162), + [517] = { + [sym_preproc_include] = STATE(163), + [sym_preproc_def] = STATE(163), + [sym_preproc_function_def] = STATE(163), + [sym_preproc_call] = STATE(163), + [sym_preproc_if] = STATE(163), + [sym_preproc_ifdef] = STATE(163), + [sym_preproc_else] = STATE(772), + [sym_preproc_elif] = STATE(772), + [sym_function_definition] = STATE(163), + [sym_declaration] = STATE(163), + [sym_type_definition] = STATE(163), [sym__declaration_specifiers] = STATE(70), - [sym_linkage_specification] = STATE(162), + [sym_linkage_specification] = STATE(163), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -20007,15 +20224,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(162), + [sym__empty_declaration] = STATE(163), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(162), + [aux_sym_translation_unit_repeat1] = STATE(163), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(131), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1999), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2013), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(137), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(139), @@ -20041,19 +20258,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [508] = { - [anon_sym_LF] = ACTIONS(2001), + [518] = { + [anon_sym_LF] = ACTIONS(2015), [sym_comment] = ACTIONS(47), }, - [509] = { - [sym_parameter_list] = STATE(173), + [519] = { + [sym_parameter_list] = STATE(175), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(410), [sym_comment] = ACTIONS(39), }, - [510] = { - [sym__type_declarator] = STATE(760), + [520] = { + [sym__type_declarator] = STATE(775), [sym_pointer_type_declarator] = STATE(83), [sym_function_type_declarator] = STATE(84), [sym_array_type_declarator] = STATE(85), @@ -20062,18 +20279,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(163), [sym_comment] = ACTIONS(39), }, - [511] = { - [sym_preproc_include] = STATE(762), - [sym_preproc_def] = STATE(762), - [sym_preproc_function_def] = STATE(762), - [sym_preproc_call] = STATE(762), - [sym_preproc_if] = STATE(762), - [sym_preproc_ifdef] = STATE(762), - [sym_function_definition] = STATE(762), - [sym_declaration] = STATE(762), - [sym_type_definition] = STATE(762), + [521] = { + [sym_preproc_include] = STATE(777), + [sym_preproc_def] = STATE(777), + [sym_preproc_function_def] = STATE(777), + [sym_preproc_call] = STATE(777), + [sym_preproc_if] = STATE(777), + [sym_preproc_ifdef] = STATE(777), + [sym_function_definition] = STATE(777), + [sym_declaration] = STATE(777), + [sym_type_definition] = STATE(777), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(762), + [sym_linkage_specification] = STATE(777), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -20081,9 +20298,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(762), + [sym__empty_declaration] = STATE(777), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(762), + [aux_sym_translation_unit_repeat1] = STATE(777), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -20094,7 +20311,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_RBRACE] = ACTIONS(2019), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -20113,114 +20330,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [512] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(428), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(428), - [sym_preproc_directive] = ACTIONS(428), - [anon_sym_typedef] = ACTIONS(428), - [anon_sym_extern] = ACTIONS(428), - [anon_sym_static] = ACTIONS(428), - [anon_sym_auto] = ACTIONS(428), - [anon_sym_register] = ACTIONS(428), - [anon_sym_inline] = ACTIONS(428), - [anon_sym_const] = ACTIONS(428), - [anon_sym_restrict] = ACTIONS(428), - [anon_sym_volatile] = ACTIONS(428), - [anon_sym__Atomic] = ACTIONS(428), - [anon_sym_unsigned] = ACTIONS(428), - [anon_sym_long] = ACTIONS(428), - [anon_sym_short] = ACTIONS(428), - [sym_primitive_type] = ACTIONS(428), - [anon_sym_enum] = ACTIONS(428), - [anon_sym_struct] = ACTIONS(428), - [anon_sym_union] = ACTIONS(428), - [sym_identifier] = ACTIONS(428), + [522] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(430), + [sym_preproc_directive] = ACTIONS(430), + [anon_sym_typedef] = ACTIONS(430), + [anon_sym_extern] = ACTIONS(430), + [anon_sym_static] = ACTIONS(430), + [anon_sym_auto] = ACTIONS(430), + [anon_sym_register] = ACTIONS(430), + [anon_sym_inline] = ACTIONS(430), + [anon_sym_const] = ACTIONS(430), + [anon_sym_restrict] = ACTIONS(430), + [anon_sym_volatile] = ACTIONS(430), + [anon_sym__Atomic] = ACTIONS(430), + [anon_sym_unsigned] = ACTIONS(430), + [anon_sym_long] = ACTIONS(430), + [anon_sym_short] = ACTIONS(430), + [sym_primitive_type] = ACTIONS(430), + [anon_sym_enum] = ACTIONS(430), + [anon_sym_struct] = ACTIONS(430), + [anon_sym_union] = ACTIONS(430), + [sym_identifier] = ACTIONS(430), [sym_comment] = ACTIONS(39), }, - [513] = { - [sym__declarator] = STATE(296), - [sym_pointer_declarator] = STATE(296), - [sym_function_declarator] = STATE(296), - [sym_array_declarator] = STATE(296), - [sym_init_declarator] = STATE(297), + [523] = { + [sym__declarator] = STATE(301), + [sym_pointer_declarator] = STATE(301), + [sym_function_declarator] = STATE(301), + [sym_array_declarator] = STATE(301), + [sym_init_declarator] = STATE(302), [anon_sym_LPAREN] = ACTIONS(90), [anon_sym_STAR] = ACTIONS(94), - [sym_identifier] = ACTIONS(674), + [sym_identifier] = ACTIONS(678), [sym_comment] = ACTIONS(39), }, - [514] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(524), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(526), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(526), - [sym_preproc_directive] = ACTIONS(526), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_STAR] = ACTIONS(524), - [anon_sym_static] = ACTIONS(526), - [anon_sym_auto] = ACTIONS(526), - [anon_sym_register] = ACTIONS(526), - [anon_sym_inline] = ACTIONS(526), - [anon_sym_const] = ACTIONS(526), - [anon_sym_restrict] = ACTIONS(526), - [anon_sym_volatile] = ACTIONS(526), - [anon_sym__Atomic] = ACTIONS(526), - [anon_sym_unsigned] = ACTIONS(526), - [anon_sym_long] = ACTIONS(526), - [anon_sym_short] = ACTIONS(526), - [sym_primitive_type] = ACTIONS(526), - [anon_sym_enum] = ACTIONS(526), - [anon_sym_struct] = ACTIONS(526), - [anon_sym_union] = ACTIONS(526), - [anon_sym_if] = ACTIONS(526), - [anon_sym_else] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_case] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_while] = ACTIONS(526), - [anon_sym_do] = ACTIONS(526), - [anon_sym_for] = ACTIONS(526), - [anon_sym_return] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_goto] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_DASH_DASH] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(524), - [anon_sym_sizeof] = ACTIONS(526), - [sym_number_literal] = ACTIONS(524), - [sym_char_literal] = ACTIONS(524), - [sym_string_literal] = ACTIONS(524), - [sym_true] = ACTIONS(526), - [sym_false] = ACTIONS(526), - [sym_null] = ACTIONS(526), - [sym_identifier] = ACTIONS(526), + [524] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(528), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(530), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(530), + [sym_preproc_directive] = ACTIONS(530), + [anon_sym_SEMI] = ACTIONS(528), + [anon_sym_typedef] = ACTIONS(530), + [anon_sym_extern] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(528), + [anon_sym_static] = ACTIONS(530), + [anon_sym_auto] = ACTIONS(530), + [anon_sym_register] = ACTIONS(530), + [anon_sym_inline] = ACTIONS(530), + [anon_sym_const] = ACTIONS(530), + [anon_sym_restrict] = ACTIONS(530), + [anon_sym_volatile] = ACTIONS(530), + [anon_sym__Atomic] = ACTIONS(530), + [anon_sym_unsigned] = ACTIONS(530), + [anon_sym_long] = ACTIONS(530), + [anon_sym_short] = ACTIONS(530), + [sym_primitive_type] = ACTIONS(530), + [anon_sym_enum] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(530), + [anon_sym_union] = ACTIONS(530), + [anon_sym_if] = ACTIONS(530), + [anon_sym_else] = ACTIONS(530), + [anon_sym_switch] = ACTIONS(530), + [anon_sym_case] = ACTIONS(530), + [anon_sym_default] = ACTIONS(530), + [anon_sym_while] = ACTIONS(530), + [anon_sym_do] = ACTIONS(530), + [anon_sym_for] = ACTIONS(530), + [anon_sym_return] = ACTIONS(530), + [anon_sym_break] = ACTIONS(530), + [anon_sym_continue] = ACTIONS(530), + [anon_sym_goto] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_TILDE] = ACTIONS(528), + [anon_sym_PLUS] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_DASH_DASH] = ACTIONS(528), + [anon_sym_PLUS_PLUS] = ACTIONS(528), + [anon_sym_sizeof] = ACTIONS(530), + [sym_number_literal] = ACTIONS(528), + [sym_char_literal] = ACTIONS(528), + [sym_string_literal] = ACTIONS(528), + [sym_true] = ACTIONS(530), + [sym_false] = ACTIONS(530), + [sym_null] = ACTIONS(530), + [sym_identifier] = ACTIONS(530), [sym_comment] = ACTIONS(39), }, - [515] = { - [sym_preproc_include] = STATE(764), - [sym_preproc_def] = STATE(764), - [sym_preproc_function_def] = STATE(764), - [sym_preproc_call] = STATE(764), - [sym_preproc_if_in_compound_statement] = STATE(243), - [sym_preproc_ifdef_in_compound_statement] = STATE(244), - [sym_declaration] = STATE(764), - [sym_type_definition] = STATE(764), - [sym__declaration_specifiers] = STATE(245), - [sym_compound_statement] = STATE(764), + [525] = { + [sym_preproc_include] = STATE(779), + [sym_preproc_def] = STATE(779), + [sym_preproc_function_def] = STATE(779), + [sym_preproc_call] = STATE(779), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(779), + [sym_type_definition] = STATE(779), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(779), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -20228,55 +20445,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(764), - [sym_expression_statement] = STATE(764), - [sym_if_statement] = STATE(764), - [sym_switch_statement] = STATE(764), - [sym_case_statement] = STATE(764), - [sym_while_statement] = STATE(764), - [sym_do_statement] = STATE(764), - [sym_for_statement] = STATE(764), - [sym_return_statement] = STATE(764), - [sym_break_statement] = STATE(764), - [sym_continue_statement] = STATE(764), - [sym_goto_statement] = STATE(764), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [sym__empty_declaration] = STATE(764), + [sym_labeled_statement] = STATE(779), + [sym_expression_statement] = STATE(779), + [sym_if_statement] = STATE(779), + [sym_switch_statement] = STATE(779), + [sym_case_statement] = STATE(779), + [sym_while_statement] = STATE(779), + [sym_do_statement] = STATE(779), + [sym_for_statement] = STATE(779), + [sym_return_statement] = STATE(779), + [sym_break_statement] = STATE(779), + [sym_continue_statement] = STATE(779), + [sym_goto_statement] = STATE(779), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym__empty_declaration] = STATE(779), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(764), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(779), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(530), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(532), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(534), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(538), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -20292,240 +20509,240 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), [sym_comment] = ACTIONS(39), }, - [516] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(618), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(618), - [sym_preproc_directive] = ACTIONS(618), - [anon_sym_typedef] = ACTIONS(618), - [anon_sym_extern] = ACTIONS(618), - [anon_sym_static] = ACTIONS(618), - [anon_sym_auto] = ACTIONS(618), - [anon_sym_register] = ACTIONS(618), - [anon_sym_inline] = ACTIONS(618), - [anon_sym_const] = ACTIONS(618), - [anon_sym_restrict] = ACTIONS(618), - [anon_sym_volatile] = ACTIONS(618), - [anon_sym__Atomic] = ACTIONS(618), - [anon_sym_unsigned] = ACTIONS(618), - [anon_sym_long] = ACTIONS(618), - [anon_sym_short] = ACTIONS(618), - [sym_primitive_type] = ACTIONS(618), - [anon_sym_enum] = ACTIONS(618), - [anon_sym_struct] = ACTIONS(618), - [anon_sym_union] = ACTIONS(618), - [sym_identifier] = ACTIONS(618), + [526] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(622), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(622), + [sym_preproc_directive] = ACTIONS(622), + [anon_sym_typedef] = ACTIONS(622), + [anon_sym_extern] = ACTIONS(622), + [anon_sym_static] = ACTIONS(622), + [anon_sym_auto] = ACTIONS(622), + [anon_sym_register] = ACTIONS(622), + [anon_sym_inline] = ACTIONS(622), + [anon_sym_const] = ACTIONS(622), + [anon_sym_restrict] = ACTIONS(622), + [anon_sym_volatile] = ACTIONS(622), + [anon_sym__Atomic] = ACTIONS(622), + [anon_sym_unsigned] = ACTIONS(622), + [anon_sym_long] = ACTIONS(622), + [anon_sym_short] = ACTIONS(622), + [sym_primitive_type] = ACTIONS(622), + [anon_sym_enum] = ACTIONS(622), + [anon_sym_struct] = ACTIONS(622), + [anon_sym_union] = ACTIONS(622), + [sym_identifier] = ACTIONS(622), [sym_comment] = ACTIONS(39), }, - [517] = { - [aux_sym_declaration_repeat1] = STATE(267), + [527] = { + [aux_sym_declaration_repeat1] = STATE(272), [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2023), [sym_comment] = ACTIONS(39), }, - [518] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2011), + [528] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2025), [sym_comment] = ACTIONS(39), }, - [519] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(736), - [anon_sym_LPAREN] = ACTIONS(734), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(736), - [sym_preproc_directive] = ACTIONS(736), - [anon_sym_SEMI] = ACTIONS(734), - [anon_sym_typedef] = ACTIONS(736), - [anon_sym_extern] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_STAR] = ACTIONS(734), - [anon_sym_static] = ACTIONS(736), - [anon_sym_auto] = ACTIONS(736), - [anon_sym_register] = ACTIONS(736), - [anon_sym_inline] = ACTIONS(736), - [anon_sym_const] = ACTIONS(736), - [anon_sym_restrict] = ACTIONS(736), - [anon_sym_volatile] = ACTIONS(736), - [anon_sym__Atomic] = ACTIONS(736), - [anon_sym_unsigned] = ACTIONS(736), - [anon_sym_long] = ACTIONS(736), - [anon_sym_short] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(736), - [anon_sym_enum] = ACTIONS(736), - [anon_sym_struct] = ACTIONS(736), - [anon_sym_union] = ACTIONS(736), - [anon_sym_if] = ACTIONS(736), - [anon_sym_switch] = ACTIONS(736), - [anon_sym_case] = ACTIONS(736), - [anon_sym_default] = ACTIONS(736), - [anon_sym_while] = ACTIONS(736), - [anon_sym_do] = ACTIONS(736), - [anon_sym_for] = ACTIONS(736), - [anon_sym_return] = ACTIONS(736), - [anon_sym_break] = ACTIONS(736), - [anon_sym_continue] = ACTIONS(736), - [anon_sym_goto] = ACTIONS(736), - [anon_sym_AMP] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_TILDE] = ACTIONS(734), - [anon_sym_PLUS] = ACTIONS(736), - [anon_sym_DASH] = ACTIONS(736), - [anon_sym_DASH_DASH] = ACTIONS(734), - [anon_sym_PLUS_PLUS] = ACTIONS(734), - [anon_sym_sizeof] = ACTIONS(736), - [sym_number_literal] = ACTIONS(734), - [sym_char_literal] = ACTIONS(734), - [sym_string_literal] = ACTIONS(734), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_null] = ACTIONS(736), - [sym_identifier] = ACTIONS(736), + [529] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(740), + [sym_preproc_directive] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_typedef] = ACTIONS(740), + [anon_sym_extern] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_static] = ACTIONS(740), + [anon_sym_auto] = ACTIONS(740), + [anon_sym_register] = ACTIONS(740), + [anon_sym_inline] = ACTIONS(740), + [anon_sym_const] = ACTIONS(740), + [anon_sym_restrict] = ACTIONS(740), + [anon_sym_volatile] = ACTIONS(740), + [anon_sym__Atomic] = ACTIONS(740), + [anon_sym_unsigned] = ACTIONS(740), + [anon_sym_long] = ACTIONS(740), + [anon_sym_short] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(740), + [anon_sym_enum] = ACTIONS(740), + [anon_sym_struct] = ACTIONS(740), + [anon_sym_union] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_switch] = ACTIONS(740), + [anon_sym_case] = ACTIONS(740), + [anon_sym_default] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_do] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_goto] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(738), + [anon_sym_PLUS_PLUS] = ACTIONS(738), + [anon_sym_sizeof] = ACTIONS(740), + [sym_number_literal] = ACTIONS(738), + [sym_char_literal] = ACTIONS(738), + [sym_string_literal] = ACTIONS(738), + [sym_true] = ACTIONS(740), + [sym_false] = ACTIONS(740), + [sym_null] = ACTIONS(740), + [sym_identifier] = ACTIONS(740), [sym_comment] = ACTIONS(39), }, - [520] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(742), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(744), - [sym_preproc_directive] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_typedef] = ACTIONS(744), - [anon_sym_extern] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_static] = ACTIONS(744), - [anon_sym_auto] = ACTIONS(744), - [anon_sym_register] = ACTIONS(744), - [anon_sym_inline] = ACTIONS(744), - [anon_sym_const] = ACTIONS(744), - [anon_sym_restrict] = ACTIONS(744), - [anon_sym_volatile] = ACTIONS(744), - [anon_sym__Atomic] = ACTIONS(744), - [anon_sym_unsigned] = ACTIONS(744), - [anon_sym_long] = ACTIONS(744), - [anon_sym_short] = ACTIONS(744), - [sym_primitive_type] = ACTIONS(744), - [anon_sym_enum] = ACTIONS(744), - [anon_sym_struct] = ACTIONS(744), - [anon_sym_union] = ACTIONS(744), - [anon_sym_if] = ACTIONS(744), - [anon_sym_else] = ACTIONS(744), - [anon_sym_switch] = ACTIONS(744), - [anon_sym_case] = ACTIONS(744), - [anon_sym_default] = ACTIONS(744), - [anon_sym_while] = ACTIONS(744), - [anon_sym_do] = ACTIONS(744), - [anon_sym_for] = ACTIONS(744), - [anon_sym_return] = ACTIONS(744), - [anon_sym_break] = ACTIONS(744), - [anon_sym_continue] = ACTIONS(744), - [anon_sym_goto] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(742), - [anon_sym_PLUS_PLUS] = ACTIONS(742), - [anon_sym_sizeof] = ACTIONS(744), - [sym_number_literal] = ACTIONS(742), - [sym_char_literal] = ACTIONS(742), - [sym_string_literal] = ACTIONS(742), - [sym_true] = ACTIONS(744), - [sym_false] = ACTIONS(744), - [sym_null] = ACTIONS(744), - [sym_identifier] = ACTIONS(744), + [530] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(746), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(748), + [sym_preproc_directive] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_typedef] = ACTIONS(748), + [anon_sym_extern] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_static] = ACTIONS(748), + [anon_sym_auto] = ACTIONS(748), + [anon_sym_register] = ACTIONS(748), + [anon_sym_inline] = ACTIONS(748), + [anon_sym_const] = ACTIONS(748), + [anon_sym_restrict] = ACTIONS(748), + [anon_sym_volatile] = ACTIONS(748), + [anon_sym__Atomic] = ACTIONS(748), + [anon_sym_unsigned] = ACTIONS(748), + [anon_sym_long] = ACTIONS(748), + [anon_sym_short] = ACTIONS(748), + [sym_primitive_type] = ACTIONS(748), + [anon_sym_enum] = ACTIONS(748), + [anon_sym_struct] = ACTIONS(748), + [anon_sym_union] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_else] = ACTIONS(748), + [anon_sym_switch] = ACTIONS(748), + [anon_sym_case] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_goto] = ACTIONS(748), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(746), + [anon_sym_sizeof] = ACTIONS(748), + [sym_number_literal] = ACTIONS(746), + [sym_char_literal] = ACTIONS(746), + [sym_string_literal] = ACTIONS(746), + [sym_true] = ACTIONS(748), + [sym_false] = ACTIONS(748), + [sym_null] = ACTIONS(748), + [sym_identifier] = ACTIONS(748), [sym_comment] = ACTIONS(39), }, - [521] = { - [sym_parameter_list] = STATE(173), + [531] = { + [sym_parameter_list] = STATE(175), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(410), [sym_comment] = ACTIONS(39), }, - [522] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(758), - [sym_preproc_directive] = ACTIONS(758), - [anon_sym_typedef] = ACTIONS(758), - [anon_sym_extern] = ACTIONS(758), - [anon_sym_static] = ACTIONS(758), - [anon_sym_auto] = ACTIONS(758), - [anon_sym_register] = ACTIONS(758), - [anon_sym_inline] = ACTIONS(758), - [anon_sym_const] = ACTIONS(758), - [anon_sym_restrict] = ACTIONS(758), - [anon_sym_volatile] = ACTIONS(758), - [anon_sym__Atomic] = ACTIONS(758), - [anon_sym_unsigned] = ACTIONS(758), - [anon_sym_long] = ACTIONS(758), - [anon_sym_short] = ACTIONS(758), - [sym_primitive_type] = ACTIONS(758), - [anon_sym_enum] = ACTIONS(758), - [anon_sym_struct] = ACTIONS(758), - [anon_sym_union] = ACTIONS(758), - [sym_identifier] = ACTIONS(758), + [532] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(762), + [sym_preproc_directive] = ACTIONS(762), + [anon_sym_typedef] = ACTIONS(762), + [anon_sym_extern] = ACTIONS(762), + [anon_sym_static] = ACTIONS(762), + [anon_sym_auto] = ACTIONS(762), + [anon_sym_register] = ACTIONS(762), + [anon_sym_inline] = ACTIONS(762), + [anon_sym_const] = ACTIONS(762), + [anon_sym_restrict] = ACTIONS(762), + [anon_sym_volatile] = ACTIONS(762), + [anon_sym__Atomic] = ACTIONS(762), + [anon_sym_unsigned] = ACTIONS(762), + [anon_sym_long] = ACTIONS(762), + [anon_sym_short] = ACTIONS(762), + [sym_primitive_type] = ACTIONS(762), + [anon_sym_enum] = ACTIONS(762), + [anon_sym_struct] = ACTIONS(762), + [anon_sym_union] = ACTIONS(762), + [sym_identifier] = ACTIONS(762), [sym_comment] = ACTIONS(39), }, - [523] = { - [sym_preproc_include] = STATE(320), - [sym_preproc_def] = STATE(320), - [sym_preproc_function_def] = STATE(320), - [sym_preproc_call] = STATE(320), - [sym_preproc_if] = STATE(320), - [sym_preproc_ifdef] = STATE(320), - [sym_function_definition] = STATE(320), - [sym_declaration] = STATE(320), - [sym_type_definition] = STATE(320), + [533] = { + [sym_preproc_include] = STATE(327), + [sym_preproc_def] = STATE(327), + [sym_preproc_function_def] = STATE(327), + [sym_preproc_call] = STATE(327), + [sym_preproc_if] = STATE(327), + [sym_preproc_ifdef] = STATE(327), + [sym_function_definition] = STATE(327), + [sym_declaration] = STATE(327), + [sym_type_definition] = STATE(327), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(320), + [sym_linkage_specification] = STATE(327), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -20533,9 +20750,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(320), + [sym__empty_declaration] = STATE(327), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(320), + [aux_sym_translation_unit_repeat1] = STATE(327), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -20546,7 +20763,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2029), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -20565,77 +20782,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [524] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(964), - [sym_number_literal] = ACTIONS(962), - [sym_char_literal] = ACTIONS(962), - [sym_string_literal] = ACTIONS(962), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [sym_identifier] = ACTIONS(964), + [534] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(974), + [sym_char_literal] = ACTIONS(974), + [sym_string_literal] = ACTIONS(974), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_identifier] = ACTIONS(976), [sym_comment] = ACTIONS(39), }, - [525] = { - [sym_preproc_include] = STATE(455), - [sym_preproc_def] = STATE(455), - [sym_preproc_function_def] = STATE(455), - [sym_preproc_call] = STATE(455), - [sym_preproc_if_in_compound_statement] = STATE(243), - [sym_preproc_ifdef_in_compound_statement] = STATE(244), - [sym_declaration] = STATE(455), - [sym_type_definition] = STATE(455), - [sym__declaration_specifiers] = STATE(245), - [sym_compound_statement] = STATE(455), + [535] = { + [sym_preproc_include] = STATE(465), + [sym_preproc_def] = STATE(465), + [sym_preproc_function_def] = STATE(465), + [sym_preproc_call] = STATE(465), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(465), + [sym_type_definition] = STATE(465), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(465), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -20643,55 +20860,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(455), - [sym_expression_statement] = STATE(455), - [sym_if_statement] = STATE(455), - [sym_switch_statement] = STATE(455), - [sym_case_statement] = STATE(455), - [sym_while_statement] = STATE(455), - [sym_do_statement] = STATE(455), - [sym_for_statement] = STATE(455), - [sym_return_statement] = STATE(455), - [sym_break_statement] = STATE(455), - [sym_continue_statement] = STATE(455), - [sym_goto_statement] = STATE(455), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [sym__empty_declaration] = STATE(455), + [sym_labeled_statement] = STATE(465), + [sym_expression_statement] = STATE(465), + [sym_if_statement] = STATE(465), + [sym_switch_statement] = STATE(465), + [sym_case_statement] = STATE(465), + [sym_while_statement] = STATE(465), + [sym_do_statement] = STATE(465), + [sym_for_statement] = STATE(465), + [sym_return_statement] = STATE(465), + [sym_break_statement] = STATE(465), + [sym_continue_statement] = STATE(465), + [sym_goto_statement] = STATE(465), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym__empty_declaration] = STATE(465), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(455), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(465), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(530), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(532), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(534), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(538), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -20707,178 +20924,178 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), [sym_comment] = ACTIONS(39), }, - [526] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1176), - [sym_char_literal] = ACTIONS(1176), - [sym_string_literal] = ACTIONS(1176), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [sym_null] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1178), + [536] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = 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(1190), + [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_AMP] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1188), + [sym_char_literal] = ACTIONS(1188), + [sym_string_literal] = ACTIONS(1188), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [sym_identifier] = ACTIONS(1190), [sym_comment] = ACTIONS(39), }, - [527] = { - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_RPAREN] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2019), + [537] = { + [anon_sym_LPAREN] = ACTIONS(2033), + [anon_sym_RPAREN] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2033), + [anon_sym_LBRACK] = ACTIONS(2033), [sym_comment] = ACTIONS(39), }, - [528] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2021), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [538] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2035), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [529] = { - [anon_sym_RPAREN] = ACTIONS(2023), + [539] = { + [anon_sym_RPAREN] = ACTIONS(2037), [sym_comment] = ACTIONS(39), }, - [530] = { + [540] = { [sym_type_qualifier] = STATE(115), [sym__type_specifier] = STATE(113), [sym_sized_type_specifier] = STATE(113), [sym_enum_specifier] = STATE(113), [sym_struct_specifier] = STATE(113), [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(771), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(786), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), [sym_macro_type_specifier] = STATE(113), [aux_sym_type_definition_repeat1] = STATE(115), [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -20890,605 +21107,605 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [531] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1693), - [anon_sym_QMARK] = ACTIONS(1691), - [anon_sym_STAR_EQ] = ACTIONS(1691), - [anon_sym_SLASH_EQ] = ACTIONS(1691), - [anon_sym_PERCENT_EQ] = ACTIONS(1691), - [anon_sym_PLUS_EQ] = ACTIONS(1691), - [anon_sym_DASH_EQ] = ACTIONS(1691), - [anon_sym_LT_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_GT_EQ] = ACTIONS(1691), - [anon_sym_AMP_EQ] = ACTIONS(1691), - [anon_sym_CARET_EQ] = ACTIONS(1691), - [anon_sym_PIPE_EQ] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1693), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(1693), - [anon_sym_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_EQ] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [541] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1707), + [anon_sym_QMARK] = ACTIONS(1705), + [anon_sym_STAR_EQ] = ACTIONS(1705), + [anon_sym_SLASH_EQ] = ACTIONS(1705), + [anon_sym_PERCENT_EQ] = ACTIONS(1705), + [anon_sym_PLUS_EQ] = ACTIONS(1705), + [anon_sym_DASH_EQ] = ACTIONS(1705), + [anon_sym_LT_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_GT_EQ] = ACTIONS(1705), + [anon_sym_AMP_EQ] = ACTIONS(1705), + [anon_sym_CARET_EQ] = ACTIONS(1705), + [anon_sym_PIPE_EQ] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_EQ_EQ] = ACTIONS(1705), + [anon_sym_BANG_EQ] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_EQ] = ACTIONS(1705), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [532] = { - [aux_sym_concatenated_string_repeat1] = STATE(772), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_COMMA] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_EQ] = ACTIONS(1697), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_STAR_EQ] = ACTIONS(1695), - [anon_sym_SLASH_EQ] = ACTIONS(1695), - [anon_sym_PERCENT_EQ] = ACTIONS(1695), - [anon_sym_PLUS_EQ] = ACTIONS(1695), - [anon_sym_DASH_EQ] = ACTIONS(1695), - [anon_sym_LT_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_GT_EQ] = ACTIONS(1695), - [anon_sym_AMP_EQ] = ACTIONS(1695), - [anon_sym_CARET_EQ] = ACTIONS(1695), - [anon_sym_PIPE_EQ] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_PIPE_PIPE] = ACTIONS(1695), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_GT] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1697), - [anon_sym_PERCENT] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_DOT] = ACTIONS(1695), - [anon_sym_DASH_GT] = ACTIONS(1695), - [sym_string_literal] = ACTIONS(2025), + [542] = { + [aux_sym_concatenated_string_repeat1] = STATE(787), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1711), + [anon_sym_QMARK] = ACTIONS(1709), + [anon_sym_STAR_EQ] = ACTIONS(1709), + [anon_sym_SLASH_EQ] = ACTIONS(1709), + [anon_sym_PERCENT_EQ] = ACTIONS(1709), + [anon_sym_PLUS_EQ] = ACTIONS(1709), + [anon_sym_DASH_EQ] = ACTIONS(1709), + [anon_sym_LT_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_GT_EQ] = ACTIONS(1709), + [anon_sym_AMP_EQ] = ACTIONS(1709), + [anon_sym_CARET_EQ] = ACTIONS(1709), + [anon_sym_PIPE_EQ] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PIPE_PIPE] = ACTIONS(1709), + [anon_sym_AMP_AMP] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1709), + [anon_sym_LT_LT] = ACTIONS(1711), + [anon_sym_GT_GT] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_PERCENT] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_DASH_GT] = ACTIONS(1709), + [sym_string_literal] = ACTIONS(2039), [sym_comment] = ACTIONS(39), }, - [533] = { - [sym__expression] = STATE(706), - [sym_conditional_expression] = STATE(706), - [sym_assignment_expression] = STATE(706), - [sym_pointer_expression] = STATE(706), - [sym_logical_expression] = STATE(706), - [sym_bitwise_expression] = STATE(706), - [sym_equality_expression] = STATE(706), - [sym_relational_expression] = STATE(706), - [sym_shift_expression] = STATE(706), - [sym_math_expression] = STATE(706), - [sym_cast_expression] = STATE(706), - [sym_sizeof_expression] = STATE(706), - [sym_subscript_expression] = STATE(706), - [sym_call_expression] = STATE(706), - [sym_field_expression] = STATE(706), - [sym_compound_literal_expression] = STATE(706), - [sym_parenthesized_expression] = STATE(706), - [sym_concatenated_string] = STATE(706), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(1717), - [sym_char_literal] = ACTIONS(1717), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1719), + [543] = { + [sym__expression] = STATE(721), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(721), + [sym_logical_expression] = STATE(721), + [sym_bitwise_expression] = STATE(721), + [sym_equality_expression] = STATE(721), + [sym_relational_expression] = STATE(721), + [sym_shift_expression] = STATE(721), + [sym_math_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(721), + [sym_call_expression] = STATE(721), + [sym_field_expression] = STATE(721), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(721), + [sym_concatenated_string] = STATE(721), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(1731), + [sym_char_literal] = ACTIONS(1731), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_null] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1733), [sym_comment] = ACTIONS(39), }, - [534] = { - [sym__expression] = STATE(773), - [sym_conditional_expression] = STATE(773), - [sym_assignment_expression] = STATE(773), - [sym_pointer_expression] = STATE(773), - [sym_logical_expression] = STATE(773), - [sym_bitwise_expression] = STATE(773), - [sym_equality_expression] = STATE(773), - [sym_relational_expression] = STATE(773), - [sym_shift_expression] = STATE(773), - [sym_math_expression] = STATE(773), - [sym_cast_expression] = STATE(773), - [sym_sizeof_expression] = STATE(773), - [sym_subscript_expression] = STATE(773), - [sym_call_expression] = STATE(773), - [sym_field_expression] = STATE(773), - [sym_compound_literal_expression] = STATE(773), - [sym_parenthesized_expression] = STATE(773), - [sym_concatenated_string] = STATE(773), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2027), - [sym_char_literal] = ACTIONS(2027), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2029), - [sym_false] = ACTIONS(2029), - [sym_null] = ACTIONS(2029), - [sym_identifier] = ACTIONS(2029), + [544] = { + [sym__expression] = STATE(788), + [sym_conditional_expression] = STATE(788), + [sym_assignment_expression] = STATE(788), + [sym_pointer_expression] = STATE(788), + [sym_logical_expression] = STATE(788), + [sym_bitwise_expression] = STATE(788), + [sym_equality_expression] = STATE(788), + [sym_relational_expression] = STATE(788), + [sym_shift_expression] = STATE(788), + [sym_math_expression] = STATE(788), + [sym_cast_expression] = STATE(788), + [sym_sizeof_expression] = STATE(788), + [sym_subscript_expression] = STATE(788), + [sym_call_expression] = STATE(788), + [sym_field_expression] = STATE(788), + [sym_compound_literal_expression] = STATE(788), + [sym_parenthesized_expression] = STATE(788), + [sym_concatenated_string] = STATE(788), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2041), + [sym_char_literal] = ACTIONS(2041), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2043), + [sym_false] = ACTIONS(2043), + [sym_null] = ACTIONS(2043), + [sym_identifier] = ACTIONS(2043), [sym_comment] = ACTIONS(39), }, - [535] = { - [sym__expression] = STATE(774), - [sym_conditional_expression] = STATE(774), - [sym_assignment_expression] = STATE(774), - [sym_pointer_expression] = STATE(774), - [sym_logical_expression] = STATE(774), - [sym_bitwise_expression] = STATE(774), - [sym_equality_expression] = STATE(774), - [sym_relational_expression] = STATE(774), - [sym_shift_expression] = STATE(774), - [sym_math_expression] = STATE(774), - [sym_cast_expression] = STATE(774), - [sym_sizeof_expression] = STATE(774), - [sym_subscript_expression] = STATE(774), - [sym_call_expression] = STATE(774), - [sym_field_expression] = STATE(774), - [sym_compound_literal_expression] = STATE(774), - [sym_parenthesized_expression] = STATE(774), - [sym_concatenated_string] = STATE(774), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2031), - [sym_char_literal] = ACTIONS(2031), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2033), - [sym_false] = ACTIONS(2033), - [sym_null] = ACTIONS(2033), - [sym_identifier] = ACTIONS(2033), + [545] = { + [sym__expression] = STATE(789), + [sym_conditional_expression] = STATE(789), + [sym_assignment_expression] = STATE(789), + [sym_pointer_expression] = STATE(789), + [sym_logical_expression] = STATE(789), + [sym_bitwise_expression] = STATE(789), + [sym_equality_expression] = STATE(789), + [sym_relational_expression] = STATE(789), + [sym_shift_expression] = STATE(789), + [sym_math_expression] = STATE(789), + [sym_cast_expression] = STATE(789), + [sym_sizeof_expression] = STATE(789), + [sym_subscript_expression] = STATE(789), + [sym_call_expression] = STATE(789), + [sym_field_expression] = STATE(789), + [sym_compound_literal_expression] = STATE(789), + [sym_parenthesized_expression] = STATE(789), + [sym_concatenated_string] = STATE(789), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2045), + [sym_char_literal] = ACTIONS(2045), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2047), + [sym_false] = ACTIONS(2047), + [sym_null] = ACTIONS(2047), + [sym_identifier] = ACTIONS(2047), [sym_comment] = ACTIONS(39), }, - [536] = { - [sym__expression] = STATE(775), - [sym_conditional_expression] = STATE(775), - [sym_assignment_expression] = STATE(775), - [sym_pointer_expression] = STATE(775), - [sym_logical_expression] = STATE(775), - [sym_bitwise_expression] = STATE(775), - [sym_equality_expression] = STATE(775), - [sym_relational_expression] = STATE(775), - [sym_shift_expression] = STATE(775), - [sym_math_expression] = STATE(775), - [sym_cast_expression] = STATE(775), - [sym_sizeof_expression] = STATE(775), - [sym_subscript_expression] = STATE(775), - [sym_call_expression] = STATE(775), - [sym_field_expression] = STATE(775), - [sym_compound_literal_expression] = STATE(775), - [sym_parenthesized_expression] = STATE(775), - [sym_concatenated_string] = STATE(775), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2035), - [sym_char_literal] = ACTIONS(2035), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2037), - [sym_false] = ACTIONS(2037), - [sym_null] = ACTIONS(2037), - [sym_identifier] = ACTIONS(2037), + [546] = { + [sym__expression] = STATE(790), + [sym_conditional_expression] = STATE(790), + [sym_assignment_expression] = STATE(790), + [sym_pointer_expression] = STATE(790), + [sym_logical_expression] = STATE(790), + [sym_bitwise_expression] = STATE(790), + [sym_equality_expression] = STATE(790), + [sym_relational_expression] = STATE(790), + [sym_shift_expression] = STATE(790), + [sym_math_expression] = STATE(790), + [sym_cast_expression] = STATE(790), + [sym_sizeof_expression] = STATE(790), + [sym_subscript_expression] = STATE(790), + [sym_call_expression] = STATE(790), + [sym_field_expression] = STATE(790), + [sym_compound_literal_expression] = STATE(790), + [sym_parenthesized_expression] = STATE(790), + [sym_concatenated_string] = STATE(790), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2049), + [sym_char_literal] = ACTIONS(2049), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2051), + [sym_false] = ACTIONS(2051), + [sym_null] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2051), [sym_comment] = ACTIONS(39), }, - [537] = { - [sym__expression] = STATE(776), - [sym_conditional_expression] = STATE(776), - [sym_assignment_expression] = STATE(776), - [sym_pointer_expression] = STATE(776), - [sym_logical_expression] = STATE(776), - [sym_bitwise_expression] = STATE(776), - [sym_equality_expression] = STATE(776), - [sym_relational_expression] = STATE(776), - [sym_shift_expression] = STATE(776), - [sym_math_expression] = STATE(776), - [sym_cast_expression] = STATE(776), - [sym_sizeof_expression] = STATE(776), - [sym_subscript_expression] = STATE(776), - [sym_call_expression] = STATE(776), - [sym_field_expression] = STATE(776), - [sym_compound_literal_expression] = STATE(776), - [sym_parenthesized_expression] = STATE(776), - [sym_concatenated_string] = STATE(776), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2039), - [sym_char_literal] = ACTIONS(2039), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [sym_null] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2041), + [547] = { + [sym__expression] = STATE(791), + [sym_conditional_expression] = STATE(791), + [sym_assignment_expression] = STATE(791), + [sym_pointer_expression] = STATE(791), + [sym_logical_expression] = STATE(791), + [sym_bitwise_expression] = STATE(791), + [sym_equality_expression] = STATE(791), + [sym_relational_expression] = STATE(791), + [sym_shift_expression] = STATE(791), + [sym_math_expression] = STATE(791), + [sym_cast_expression] = STATE(791), + [sym_sizeof_expression] = STATE(791), + [sym_subscript_expression] = STATE(791), + [sym_call_expression] = STATE(791), + [sym_field_expression] = STATE(791), + [sym_compound_literal_expression] = STATE(791), + [sym_parenthesized_expression] = STATE(791), + [sym_concatenated_string] = STATE(791), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2053), + [sym_char_literal] = ACTIONS(2053), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_null] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2055), [sym_comment] = ACTIONS(39), }, - [538] = { - [sym__expression] = STATE(777), - [sym_conditional_expression] = STATE(777), - [sym_assignment_expression] = STATE(777), - [sym_pointer_expression] = STATE(777), - [sym_logical_expression] = STATE(777), - [sym_bitwise_expression] = STATE(777), - [sym_equality_expression] = STATE(777), - [sym_relational_expression] = STATE(777), - [sym_shift_expression] = STATE(777), - [sym_math_expression] = STATE(777), - [sym_cast_expression] = STATE(777), - [sym_sizeof_expression] = STATE(777), - [sym_subscript_expression] = STATE(777), - [sym_call_expression] = STATE(777), - [sym_field_expression] = STATE(777), - [sym_compound_literal_expression] = STATE(777), - [sym_parenthesized_expression] = STATE(777), - [sym_concatenated_string] = STATE(777), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2043), - [sym_char_literal] = ACTIONS(2043), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2045), - [sym_false] = ACTIONS(2045), - [sym_null] = ACTIONS(2045), - [sym_identifier] = ACTIONS(2045), + [548] = { + [sym__expression] = STATE(792), + [sym_conditional_expression] = STATE(792), + [sym_assignment_expression] = STATE(792), + [sym_pointer_expression] = STATE(792), + [sym_logical_expression] = STATE(792), + [sym_bitwise_expression] = STATE(792), + [sym_equality_expression] = STATE(792), + [sym_relational_expression] = STATE(792), + [sym_shift_expression] = STATE(792), + [sym_math_expression] = STATE(792), + [sym_cast_expression] = STATE(792), + [sym_sizeof_expression] = STATE(792), + [sym_subscript_expression] = STATE(792), + [sym_call_expression] = STATE(792), + [sym_field_expression] = STATE(792), + [sym_compound_literal_expression] = STATE(792), + [sym_parenthesized_expression] = STATE(792), + [sym_concatenated_string] = STATE(792), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2057), + [sym_char_literal] = ACTIONS(2057), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2059), + [sym_false] = ACTIONS(2059), + [sym_null] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2059), [sym_comment] = ACTIONS(39), }, - [539] = { - [sym__expression] = STATE(778), - [sym_conditional_expression] = STATE(778), - [sym_assignment_expression] = STATE(778), - [sym_pointer_expression] = STATE(778), - [sym_logical_expression] = STATE(778), - [sym_bitwise_expression] = STATE(778), - [sym_equality_expression] = STATE(778), - [sym_relational_expression] = STATE(778), - [sym_shift_expression] = STATE(778), - [sym_math_expression] = STATE(778), - [sym_cast_expression] = STATE(778), - [sym_sizeof_expression] = STATE(778), - [sym_subscript_expression] = STATE(778), - [sym_call_expression] = STATE(778), - [sym_field_expression] = STATE(778), - [sym_compound_literal_expression] = STATE(778), - [sym_parenthesized_expression] = STATE(778), - [sym_concatenated_string] = STATE(778), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2047), - [sym_char_literal] = ACTIONS(2047), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2049), - [sym_false] = ACTIONS(2049), - [sym_null] = ACTIONS(2049), - [sym_identifier] = ACTIONS(2049), + [549] = { + [sym__expression] = STATE(793), + [sym_conditional_expression] = STATE(793), + [sym_assignment_expression] = STATE(793), + [sym_pointer_expression] = STATE(793), + [sym_logical_expression] = STATE(793), + [sym_bitwise_expression] = STATE(793), + [sym_equality_expression] = STATE(793), + [sym_relational_expression] = STATE(793), + [sym_shift_expression] = STATE(793), + [sym_math_expression] = STATE(793), + [sym_cast_expression] = STATE(793), + [sym_sizeof_expression] = STATE(793), + [sym_subscript_expression] = STATE(793), + [sym_call_expression] = STATE(793), + [sym_field_expression] = STATE(793), + [sym_compound_literal_expression] = STATE(793), + [sym_parenthesized_expression] = STATE(793), + [sym_concatenated_string] = STATE(793), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2061), + [sym_char_literal] = ACTIONS(2061), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [sym_null] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2063), [sym_comment] = ACTIONS(39), }, - [540] = { - [sym__expression] = STATE(779), - [sym_conditional_expression] = STATE(779), - [sym_assignment_expression] = STATE(779), - [sym_pointer_expression] = STATE(779), - [sym_logical_expression] = STATE(779), - [sym_bitwise_expression] = STATE(779), - [sym_equality_expression] = STATE(779), - [sym_relational_expression] = STATE(779), - [sym_shift_expression] = STATE(779), - [sym_math_expression] = STATE(779), - [sym_cast_expression] = STATE(779), - [sym_sizeof_expression] = STATE(779), - [sym_subscript_expression] = STATE(779), - [sym_call_expression] = STATE(779), - [sym_field_expression] = STATE(779), - [sym_compound_literal_expression] = STATE(779), - [sym_parenthesized_expression] = STATE(779), - [sym_concatenated_string] = STATE(779), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2051), - [sym_char_literal] = ACTIONS(2051), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2053), - [sym_false] = ACTIONS(2053), - [sym_null] = ACTIONS(2053), - [sym_identifier] = ACTIONS(2053), + [550] = { + [sym__expression] = STATE(794), + [sym_conditional_expression] = STATE(794), + [sym_assignment_expression] = STATE(794), + [sym_pointer_expression] = STATE(794), + [sym_logical_expression] = STATE(794), + [sym_bitwise_expression] = STATE(794), + [sym_equality_expression] = STATE(794), + [sym_relational_expression] = STATE(794), + [sym_shift_expression] = STATE(794), + [sym_math_expression] = STATE(794), + [sym_cast_expression] = STATE(794), + [sym_sizeof_expression] = STATE(794), + [sym_subscript_expression] = STATE(794), + [sym_call_expression] = STATE(794), + [sym_field_expression] = STATE(794), + [sym_compound_literal_expression] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_concatenated_string] = STATE(794), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2065), + [sym_char_literal] = ACTIONS(2065), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2067), [sym_comment] = ACTIONS(39), }, - [541] = { - [sym__expression] = STATE(780), - [sym_conditional_expression] = STATE(780), - [sym_assignment_expression] = STATE(780), - [sym_pointer_expression] = STATE(780), - [sym_logical_expression] = STATE(780), - [sym_bitwise_expression] = STATE(780), - [sym_equality_expression] = STATE(780), - [sym_relational_expression] = STATE(780), - [sym_shift_expression] = STATE(780), - [sym_math_expression] = STATE(780), - [sym_cast_expression] = STATE(780), - [sym_sizeof_expression] = STATE(780), - [sym_subscript_expression] = STATE(780), - [sym_call_expression] = STATE(780), - [sym_field_expression] = STATE(780), - [sym_compound_literal_expression] = STATE(780), - [sym_parenthesized_expression] = STATE(780), - [sym_concatenated_string] = STATE(780), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2055), - [sym_char_literal] = ACTIONS(2055), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2057), - [sym_false] = ACTIONS(2057), - [sym_null] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2057), + [551] = { + [sym__expression] = STATE(795), + [sym_conditional_expression] = STATE(795), + [sym_assignment_expression] = STATE(795), + [sym_pointer_expression] = STATE(795), + [sym_logical_expression] = STATE(795), + [sym_bitwise_expression] = STATE(795), + [sym_equality_expression] = STATE(795), + [sym_relational_expression] = STATE(795), + [sym_shift_expression] = STATE(795), + [sym_math_expression] = STATE(795), + [sym_cast_expression] = STATE(795), + [sym_sizeof_expression] = STATE(795), + [sym_subscript_expression] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_field_expression] = STATE(795), + [sym_compound_literal_expression] = STATE(795), + [sym_parenthesized_expression] = STATE(795), + [sym_concatenated_string] = STATE(795), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2069), + [sym_char_literal] = ACTIONS(2069), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2071), + [sym_false] = ACTIONS(2071), + [sym_null] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2071), [sym_comment] = ACTIONS(39), }, - [542] = { - [sym__expression] = STATE(781), - [sym_conditional_expression] = STATE(781), - [sym_assignment_expression] = STATE(781), - [sym_pointer_expression] = STATE(781), - [sym_logical_expression] = STATE(781), - [sym_bitwise_expression] = STATE(781), - [sym_equality_expression] = STATE(781), - [sym_relational_expression] = STATE(781), - [sym_shift_expression] = STATE(781), - [sym_math_expression] = STATE(781), - [sym_cast_expression] = STATE(781), - [sym_sizeof_expression] = STATE(781), - [sym_subscript_expression] = STATE(781), - [sym_call_expression] = STATE(781), - [sym_field_expression] = STATE(781), - [sym_compound_literal_expression] = STATE(781), - [sym_parenthesized_expression] = STATE(781), - [sym_concatenated_string] = STATE(781), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2059), - [sym_char_literal] = ACTIONS(2059), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2061), - [sym_false] = ACTIONS(2061), - [sym_null] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2061), + [552] = { + [sym__expression] = STATE(796), + [sym_conditional_expression] = STATE(796), + [sym_assignment_expression] = STATE(796), + [sym_pointer_expression] = STATE(796), + [sym_logical_expression] = STATE(796), + [sym_bitwise_expression] = STATE(796), + [sym_equality_expression] = STATE(796), + [sym_relational_expression] = STATE(796), + [sym_shift_expression] = STATE(796), + [sym_math_expression] = STATE(796), + [sym_cast_expression] = STATE(796), + [sym_sizeof_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_call_expression] = STATE(796), + [sym_field_expression] = STATE(796), + [sym_compound_literal_expression] = STATE(796), + [sym_parenthesized_expression] = STATE(796), + [sym_concatenated_string] = STATE(796), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2073), + [sym_char_literal] = ACTIONS(2073), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2075), + [sym_false] = ACTIONS(2075), + [sym_null] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2075), [sym_comment] = ACTIONS(39), }, - [543] = { - [sym__expression] = STATE(782), - [sym_conditional_expression] = STATE(782), - [sym_assignment_expression] = STATE(782), - [sym_pointer_expression] = STATE(782), - [sym_logical_expression] = STATE(782), - [sym_bitwise_expression] = STATE(782), - [sym_equality_expression] = STATE(782), - [sym_relational_expression] = STATE(782), - [sym_shift_expression] = STATE(782), - [sym_math_expression] = STATE(782), - [sym_cast_expression] = STATE(782), - [sym_sizeof_expression] = STATE(782), - [sym_subscript_expression] = STATE(782), - [sym_call_expression] = STATE(782), - [sym_field_expression] = STATE(782), - [sym_compound_literal_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_concatenated_string] = STATE(782), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2063), - [sym_char_literal] = ACTIONS(2063), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2065), - [sym_false] = ACTIONS(2065), - [sym_null] = ACTIONS(2065), - [sym_identifier] = ACTIONS(2065), + [553] = { + [sym__expression] = STATE(797), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(797), + [sym_logical_expression] = STATE(797), + [sym_bitwise_expression] = STATE(797), + [sym_equality_expression] = STATE(797), + [sym_relational_expression] = STATE(797), + [sym_shift_expression] = STATE(797), + [sym_math_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_subscript_expression] = STATE(797), + [sym_call_expression] = STATE(797), + [sym_field_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(797), + [sym_concatenated_string] = STATE(797), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2077), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2079), + [sym_false] = ACTIONS(2079), + [sym_null] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2079), [sym_comment] = ACTIONS(39), }, - [544] = { - [sym__expression] = STATE(783), - [sym_conditional_expression] = STATE(783), - [sym_assignment_expression] = STATE(783), - [sym_pointer_expression] = STATE(783), - [sym_logical_expression] = STATE(783), - [sym_bitwise_expression] = STATE(783), - [sym_equality_expression] = STATE(783), - [sym_relational_expression] = STATE(783), - [sym_shift_expression] = STATE(783), - [sym_math_expression] = STATE(783), - [sym_cast_expression] = STATE(783), - [sym_sizeof_expression] = STATE(783), - [sym_subscript_expression] = STATE(783), - [sym_call_expression] = STATE(783), - [sym_field_expression] = STATE(783), - [sym_compound_literal_expression] = STATE(783), - [sym_parenthesized_expression] = STATE(783), - [sym_concatenated_string] = STATE(783), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2067), - [sym_char_literal] = ACTIONS(2067), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2069), - [sym_false] = ACTIONS(2069), - [sym_null] = ACTIONS(2069), - [sym_identifier] = ACTIONS(2069), + [554] = { + [sym__expression] = STATE(798), + [sym_conditional_expression] = STATE(798), + [sym_assignment_expression] = STATE(798), + [sym_pointer_expression] = STATE(798), + [sym_logical_expression] = STATE(798), + [sym_bitwise_expression] = STATE(798), + [sym_equality_expression] = STATE(798), + [sym_relational_expression] = STATE(798), + [sym_shift_expression] = STATE(798), + [sym_math_expression] = STATE(798), + [sym_cast_expression] = STATE(798), + [sym_sizeof_expression] = STATE(798), + [sym_subscript_expression] = STATE(798), + [sym_call_expression] = STATE(798), + [sym_field_expression] = STATE(798), + [sym_compound_literal_expression] = STATE(798), + [sym_parenthesized_expression] = STATE(798), + [sym_concatenated_string] = STATE(798), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2081), + [sym_char_literal] = ACTIONS(2081), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_null] = ACTIONS(2083), + [sym_identifier] = ACTIONS(2083), [sym_comment] = ACTIONS(39), }, - [545] = { - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_COMMA] = ACTIONS(2071), - [anon_sym_RPAREN] = ACTIONS(2071), - [anon_sym_SEMI] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_RBRACK] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_auto] = ACTIONS(2073), - [anon_sym_register] = ACTIONS(2073), - [anon_sym_inline] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_restrict] = ACTIONS(2073), - [anon_sym_volatile] = ACTIONS(2073), - [anon_sym__Atomic] = ACTIONS(2073), - [anon_sym_COLON] = ACTIONS(2071), - [anon_sym_AMP] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2071), - [anon_sym_TILDE] = ACTIONS(2071), - [anon_sym_PLUS] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_DASH_DASH] = ACTIONS(2071), - [anon_sym_PLUS_PLUS] = ACTIONS(2071), - [anon_sym_sizeof] = ACTIONS(2073), - [sym_number_literal] = ACTIONS(2071), - [sym_char_literal] = ACTIONS(2071), - [sym_string_literal] = ACTIONS(2071), - [sym_true] = ACTIONS(2073), - [sym_false] = ACTIONS(2073), - [sym_null] = ACTIONS(2073), - [sym_identifier] = ACTIONS(2073), + [555] = { + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_RPAREN] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_extern] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2085), + [anon_sym_static] = ACTIONS(2087), + [anon_sym_auto] = ACTIONS(2087), + [anon_sym_register] = ACTIONS(2087), + [anon_sym_inline] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_restrict] = ACTIONS(2087), + [anon_sym_volatile] = ACTIONS(2087), + [anon_sym__Atomic] = ACTIONS(2087), + [anon_sym_COLON] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [anon_sym_PLUS_PLUS] = ACTIONS(2085), + [anon_sym_sizeof] = ACTIONS(2087), + [sym_number_literal] = ACTIONS(2085), + [sym_char_literal] = ACTIONS(2085), + [sym_string_literal] = ACTIONS(2085), + [sym_true] = ACTIONS(2087), + [sym_false] = ACTIONS(2087), + [sym_null] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2087), [sym_comment] = ACTIONS(39), }, - [546] = { - [sym_enumerator] = STATE(332), + [556] = { + [sym_enumerator] = STATE(339), [sym_identifier] = ACTIONS(179), [sym_comment] = ACTIONS(39), }, - [547] = { + [557] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), [sym__declaration_specifiers] = STATE(106), @@ -21499,14 +21716,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(784), - [sym_field_declaration] = STATE(784), + [sym__field_declaration_list_item] = STATE(799), + [sym_field_declaration] = STATE(799), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(784), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(799), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2075), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2089), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(191), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(193), [anon_sym_extern] = ACTIONS(23), @@ -21528,11 +21745,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [548] = { + [558] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), - [sym_preproc_else_in_field_declaration_list] = STATE(785), - [sym_preproc_elif_in_field_declaration_list] = STATE(786), + [sym_preproc_else_in_field_declaration_list] = STATE(800), + [sym_preproc_elif_in_field_declaration_list] = STATE(801), [sym__declaration_specifiers] = STATE(106), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), @@ -21541,18 +21758,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(787), - [sym_field_declaration] = STATE(787), + [sym__field_declaration_list_item] = STATE(802), + [sym_field_declaration] = STATE(802), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(787), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(802), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2077), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2091), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(191), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(797), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(801), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -21572,96 +21789,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [549] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2079), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2081), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2081), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2081), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2081), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2081), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_auto] = ACTIONS(2079), - [anon_sym_register] = ACTIONS(2079), - [anon_sym_inline] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_restrict] = ACTIONS(2079), - [anon_sym_volatile] = ACTIONS(2079), - [anon_sym__Atomic] = ACTIONS(2079), - [anon_sym_unsigned] = ACTIONS(2079), - [anon_sym_long] = ACTIONS(2079), - [anon_sym_short] = ACTIONS(2079), - [sym_primitive_type] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_union] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2079), + [559] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2093), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2095), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2095), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2095), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2095), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2095), + [anon_sym_extern] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_auto] = ACTIONS(2093), + [anon_sym_register] = ACTIONS(2093), + [anon_sym_inline] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_restrict] = ACTIONS(2093), + [anon_sym_volatile] = ACTIONS(2093), + [anon_sym__Atomic] = ACTIONS(2093), + [anon_sym_unsigned] = ACTIONS(2093), + [anon_sym_long] = ACTIONS(2093), + [anon_sym_short] = ACTIONS(2093), + [sym_primitive_type] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2093), [sym_comment] = ACTIONS(39), }, - [550] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2083), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2085), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2085), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2085), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2085), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2085), - [anon_sym_extern] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_auto] = ACTIONS(2083), - [anon_sym_register] = ACTIONS(2083), - [anon_sym_inline] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_restrict] = ACTIONS(2083), - [anon_sym_volatile] = ACTIONS(2083), - [anon_sym__Atomic] = ACTIONS(2083), - [anon_sym_unsigned] = ACTIONS(2083), - [anon_sym_long] = ACTIONS(2083), - [anon_sym_short] = ACTIONS(2083), - [sym_primitive_type] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [anon_sym_struct] = ACTIONS(2083), - [anon_sym_union] = ACTIONS(2083), - [sym_identifier] = ACTIONS(2083), + [560] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2097), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2099), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2099), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2099), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2099), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2099), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_auto] = ACTIONS(2097), + [anon_sym_register] = ACTIONS(2097), + [anon_sym_inline] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_restrict] = ACTIONS(2097), + [anon_sym_volatile] = ACTIONS(2097), + [anon_sym__Atomic] = ACTIONS(2097), + [anon_sym_unsigned] = ACTIONS(2097), + [anon_sym_long] = ACTIONS(2097), + [anon_sym_short] = ACTIONS(2097), + [sym_primitive_type] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_union] = ACTIONS(2097), + [sym_identifier] = ACTIONS(2097), [sym_comment] = ACTIONS(39), }, - [551] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2087), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2089), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2089), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2089), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2089), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2089), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2087), - [anon_sym_auto] = ACTIONS(2087), - [anon_sym_register] = ACTIONS(2087), - [anon_sym_inline] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_restrict] = ACTIONS(2087), - [anon_sym_volatile] = ACTIONS(2087), - [anon_sym__Atomic] = ACTIONS(2087), - [anon_sym_unsigned] = ACTIONS(2087), - [anon_sym_long] = ACTIONS(2087), - [anon_sym_short] = ACTIONS(2087), - [sym_primitive_type] = ACTIONS(2087), - [anon_sym_enum] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2087), - [anon_sym_union] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2087), + [561] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2101), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2103), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2103), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2103), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2103), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2103), + [anon_sym_extern] = ACTIONS(2101), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_auto] = ACTIONS(2101), + [anon_sym_register] = ACTIONS(2101), + [anon_sym_inline] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_restrict] = ACTIONS(2101), + [anon_sym_volatile] = ACTIONS(2101), + [anon_sym__Atomic] = ACTIONS(2101), + [anon_sym_unsigned] = ACTIONS(2101), + [anon_sym_long] = ACTIONS(2101), + [anon_sym_short] = ACTIONS(2101), + [sym_primitive_type] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_union] = ACTIONS(2101), + [sym_identifier] = ACTIONS(2101), [sym_comment] = ACTIONS(39), }, - [552] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2091), + [562] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2105), [sym_comment] = ACTIONS(39), }, - [553] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2093), + [563] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2107), [sym_comment] = ACTIONS(39), }, - [554] = { + [564] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), [sym__declaration_specifiers] = STATE(106), @@ -21672,372 +21889,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(554), - [sym_field_declaration] = STATE(554), + [sym__field_declaration_list_item] = STATE(564), + [sym_field_declaration] = STATE(564), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(554), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(564), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(849), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(861), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(855), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(861), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_static] = ACTIONS(858), - [anon_sym_auto] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_inline] = ACTIONS(858), - [anon_sym_const] = ACTIONS(863), - [anon_sym_restrict] = ACTIONS(863), - [anon_sym_volatile] = ACTIONS(863), - [anon_sym__Atomic] = ACTIONS(863), - [anon_sym_unsigned] = ACTIONS(866), - [anon_sym_long] = ACTIONS(866), - [anon_sym_short] = ACTIONS(866), - [sym_primitive_type] = ACTIONS(869), - [anon_sym_enum] = ACTIONS(872), - [anon_sym_struct] = ACTIONS(875), - [anon_sym_union] = ACTIONS(878), - [sym_identifier] = ACTIONS(881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(855), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(867), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(858), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(861), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(867), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(867), + [anon_sym_extern] = ACTIONS(864), + [anon_sym_static] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(864), + [anon_sym_register] = ACTIONS(864), + [anon_sym_inline] = ACTIONS(864), + [anon_sym_const] = ACTIONS(869), + [anon_sym_restrict] = ACTIONS(869), + [anon_sym_volatile] = ACTIONS(869), + [anon_sym__Atomic] = ACTIONS(869), + [anon_sym_unsigned] = ACTIONS(872), + [anon_sym_long] = ACTIONS(872), + [anon_sym_short] = ACTIONS(872), + [sym_primitive_type] = ACTIONS(875), + [anon_sym_enum] = ACTIONS(878), + [anon_sym_struct] = ACTIONS(881), + [anon_sym_union] = ACTIONS(884), + [sym_identifier] = ACTIONS(887), [sym_comment] = ACTIONS(39), }, - [555] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2095), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2097), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2097), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2097), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2097), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2097), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2095), - [anon_sym_auto] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2095), - [anon_sym_inline] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_restrict] = ACTIONS(2095), - [anon_sym_volatile] = ACTIONS(2095), - [anon_sym__Atomic] = ACTIONS(2095), - [anon_sym_unsigned] = ACTIONS(2095), - [anon_sym_long] = ACTIONS(2095), - [anon_sym_short] = ACTIONS(2095), - [sym_primitive_type] = ACTIONS(2095), - [anon_sym_enum] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2095), - [anon_sym_union] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2095), + [565] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2109), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2111), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2111), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2111), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2111), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2111), + [anon_sym_extern] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_auto] = ACTIONS(2109), + [anon_sym_register] = ACTIONS(2109), + [anon_sym_inline] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_restrict] = ACTIONS(2109), + [anon_sym_volatile] = ACTIONS(2109), + [anon_sym__Atomic] = ACTIONS(2109), + [anon_sym_unsigned] = ACTIONS(2109), + [anon_sym_long] = ACTIONS(2109), + [anon_sym_short] = ACTIONS(2109), + [sym_primitive_type] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2109), + [anon_sym_union] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2109), [sym_comment] = ACTIONS(39), }, - [556] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2099), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2101), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2101), - [anon_sym_extern] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_auto] = ACTIONS(2099), - [anon_sym_register] = ACTIONS(2099), - [anon_sym_inline] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_restrict] = ACTIONS(2099), - [anon_sym_volatile] = ACTIONS(2099), - [anon_sym__Atomic] = ACTIONS(2099), - [anon_sym_unsigned] = ACTIONS(2099), - [anon_sym_long] = ACTIONS(2099), - [anon_sym_short] = ACTIONS(2099), - [sym_primitive_type] = ACTIONS(2099), - [anon_sym_enum] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2099), - [anon_sym_union] = ACTIONS(2099), - [sym_identifier] = ACTIONS(2099), + [566] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2113), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2115), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2115), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2115), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2115), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2115), + [anon_sym_extern] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_auto] = ACTIONS(2113), + [anon_sym_register] = ACTIONS(2113), + [anon_sym_inline] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_restrict] = ACTIONS(2113), + [anon_sym_volatile] = ACTIONS(2113), + [anon_sym__Atomic] = ACTIONS(2113), + [anon_sym_unsigned] = ACTIONS(2113), + [anon_sym_long] = ACTIONS(2113), + [anon_sym_short] = ACTIONS(2113), + [sym_primitive_type] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2113), + [anon_sym_union] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2113), [sym_comment] = ACTIONS(39), }, - [557] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2103), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2105), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2105), - [anon_sym_extern] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_auto] = ACTIONS(2103), - [anon_sym_register] = ACTIONS(2103), - [anon_sym_inline] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_restrict] = ACTIONS(2103), - [anon_sym_volatile] = ACTIONS(2103), - [anon_sym__Atomic] = ACTIONS(2103), - [anon_sym_unsigned] = ACTIONS(2103), - [anon_sym_long] = ACTIONS(2103), - [anon_sym_short] = ACTIONS(2103), - [sym_primitive_type] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2103), - [anon_sym_union] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2103), + [567] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2117), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2119), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2119), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2119), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2119), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2119), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_auto] = ACTIONS(2117), + [anon_sym_register] = ACTIONS(2117), + [anon_sym_inline] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_restrict] = ACTIONS(2117), + [anon_sym_volatile] = ACTIONS(2117), + [anon_sym__Atomic] = ACTIONS(2117), + [anon_sym_unsigned] = ACTIONS(2117), + [anon_sym_long] = ACTIONS(2117), + [anon_sym_short] = ACTIONS(2117), + [sym_primitive_type] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2117), + [anon_sym_union] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2117), [sym_comment] = ACTIONS(39), }, - [558] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2107), - [sym_comment] = ACTIONS(39), - }, - [559] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2109), - [sym_comment] = ACTIONS(39), - }, - [560] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2111), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2113), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2113), - [anon_sym_extern] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_auto] = ACTIONS(2111), - [anon_sym_register] = ACTIONS(2111), - [anon_sym_inline] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_restrict] = ACTIONS(2111), - [anon_sym_volatile] = ACTIONS(2111), - [anon_sym__Atomic] = ACTIONS(2111), - [anon_sym_unsigned] = ACTIONS(2111), - [anon_sym_long] = ACTIONS(2111), - [anon_sym_short] = ACTIONS(2111), - [sym_primitive_type] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(2111), - [anon_sym_union] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2111), - [sym_comment] = ACTIONS(39), - }, - [561] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2115), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2117), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2117), - [anon_sym_extern] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2115), - [anon_sym_auto] = ACTIONS(2115), - [anon_sym_register] = ACTIONS(2115), - [anon_sym_inline] = ACTIONS(2115), - [anon_sym_const] = ACTIONS(2115), - [anon_sym_restrict] = ACTIONS(2115), - [anon_sym_volatile] = ACTIONS(2115), - [anon_sym__Atomic] = ACTIONS(2115), - [anon_sym_unsigned] = ACTIONS(2115), - [anon_sym_long] = ACTIONS(2115), - [anon_sym_short] = ACTIONS(2115), - [sym_primitive_type] = ACTIONS(2115), - [anon_sym_enum] = ACTIONS(2115), - [anon_sym_struct] = ACTIONS(2115), - [anon_sym_union] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2115), - [sym_comment] = ACTIONS(39), - }, - [562] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2119), + [568] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2121), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2121), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2121), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2121), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2121), - [anon_sym_extern] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2119), - [anon_sym_auto] = ACTIONS(2119), - [anon_sym_register] = ACTIONS(2119), - [anon_sym_inline] = ACTIONS(2119), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_restrict] = ACTIONS(2119), - [anon_sym_volatile] = ACTIONS(2119), - [anon_sym__Atomic] = ACTIONS(2119), - [anon_sym_unsigned] = ACTIONS(2119), - [anon_sym_long] = ACTIONS(2119), - [anon_sym_short] = ACTIONS(2119), - [sym_primitive_type] = ACTIONS(2119), - [anon_sym_enum] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2119), [sym_comment] = ACTIONS(39), }, - [563] = { + [569] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2123), [sym_comment] = ACTIONS(39), }, - [564] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2125), - [sym_comment] = ACTIONS(39), - }, - [565] = { - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_COMMA] = ACTIONS(2127), - [anon_sym_RPAREN] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_COLON] = ACTIONS(2127), - [sym_comment] = ACTIONS(39), - }, - [566] = { - [anon_sym_RPAREN] = ACTIONS(2129), - [sym_comment] = ACTIONS(39), - }, - [567] = { - [sym_type_qualifier] = STATE(115), - [sym__type_specifier] = STATE(113), - [sym_sized_type_specifier] = STATE(113), - [sym_enum_specifier] = STATE(113), - [sym_struct_specifier] = STATE(113), - [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(795), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), - [sym_macro_type_specifier] = STATE(113), - [aux_sym_type_definition_repeat1] = STATE(115), - [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(217), - [anon_sym_long] = ACTIONS(217), - [anon_sym_short] = ACTIONS(217), - [sym_primitive_type] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), - [sym_comment] = ACTIONS(39), - }, - [568] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1693), - [anon_sym_QMARK] = ACTIONS(1691), - [anon_sym_STAR_EQ] = ACTIONS(1691), - [anon_sym_SLASH_EQ] = ACTIONS(1691), - [anon_sym_PERCENT_EQ] = ACTIONS(1691), - [anon_sym_PLUS_EQ] = ACTIONS(1691), - [anon_sym_DASH_EQ] = ACTIONS(1691), - [anon_sym_LT_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_GT_EQ] = ACTIONS(1691), - [anon_sym_AMP_EQ] = ACTIONS(1691), - [anon_sym_CARET_EQ] = ACTIONS(1691), - [anon_sym_PIPE_EQ] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1693), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(1693), - [anon_sym_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_EQ] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [570] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2125), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_auto] = ACTIONS(2125), + [anon_sym_register] = ACTIONS(2125), + [anon_sym_inline] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_restrict] = ACTIONS(2125), + [anon_sym_volatile] = ACTIONS(2125), + [anon_sym__Atomic] = ACTIONS(2125), + [anon_sym_unsigned] = ACTIONS(2125), + [anon_sym_long] = ACTIONS(2125), + [anon_sym_short] = ACTIONS(2125), + [sym_primitive_type] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2125), [sym_comment] = ACTIONS(39), }, - [569] = { - [aux_sym_concatenated_string_repeat1] = STATE(796), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_EQ] = ACTIONS(1697), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_STAR_EQ] = ACTIONS(1695), - [anon_sym_SLASH_EQ] = ACTIONS(1695), - [anon_sym_PERCENT_EQ] = ACTIONS(1695), - [anon_sym_PLUS_EQ] = ACTIONS(1695), - [anon_sym_DASH_EQ] = ACTIONS(1695), - [anon_sym_LT_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_GT_EQ] = ACTIONS(1695), - [anon_sym_AMP_EQ] = ACTIONS(1695), - [anon_sym_CARET_EQ] = ACTIONS(1695), - [anon_sym_PIPE_EQ] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_PIPE_PIPE] = ACTIONS(1695), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_GT] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1697), - [anon_sym_PERCENT] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_DOT] = ACTIONS(1695), - [anon_sym_DASH_GT] = ACTIONS(1695), - [sym_string_literal] = ACTIONS(2131), + [571] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2129), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2131), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_auto] = ACTIONS(2129), + [anon_sym_register] = ACTIONS(2129), + [anon_sym_inline] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_restrict] = ACTIONS(2129), + [anon_sym_volatile] = ACTIONS(2129), + [anon_sym__Atomic] = ACTIONS(2129), + [anon_sym_unsigned] = ACTIONS(2129), + [anon_sym_long] = ACTIONS(2129), + [anon_sym_short] = ACTIONS(2129), + [sym_primitive_type] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2129), [sym_comment] = ACTIONS(39), }, - [570] = { + [572] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2133), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2135), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2135), @@ -22064,702 +22090,300 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(2133), [sym_comment] = ACTIONS(39), }, - [571] = { - [sym__expression] = STATE(706), - [sym_conditional_expression] = STATE(706), - [sym_assignment_expression] = STATE(706), - [sym_pointer_expression] = STATE(706), - [sym_logical_expression] = STATE(706), - [sym_bitwise_expression] = STATE(706), - [sym_equality_expression] = STATE(706), - [sym_relational_expression] = STATE(706), - [sym_shift_expression] = STATE(706), - [sym_math_expression] = STATE(706), - [sym_cast_expression] = STATE(706), - [sym_sizeof_expression] = STATE(706), - [sym_subscript_expression] = STATE(706), - [sym_call_expression] = STATE(706), - [sym_field_expression] = STATE(706), - [sym_compound_literal_expression] = STATE(706), - [sym_parenthesized_expression] = STATE(706), - [sym_concatenated_string] = STATE(706), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(1717), - [sym_char_literal] = ACTIONS(1717), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1719), - [sym_comment] = ACTIONS(39), - }, - [572] = { - [sym__expression] = STATE(797), - [sym_conditional_expression] = STATE(797), - [sym_assignment_expression] = STATE(797), - [sym_pointer_expression] = STATE(797), - [sym_logical_expression] = STATE(797), - [sym_bitwise_expression] = STATE(797), - [sym_equality_expression] = STATE(797), - [sym_relational_expression] = STATE(797), - [sym_shift_expression] = STATE(797), - [sym_math_expression] = STATE(797), - [sym_cast_expression] = STATE(797), - [sym_sizeof_expression] = STATE(797), - [sym_subscript_expression] = STATE(797), - [sym_call_expression] = STATE(797), - [sym_field_expression] = STATE(797), - [sym_compound_literal_expression] = STATE(797), - [sym_parenthesized_expression] = STATE(797), - [sym_concatenated_string] = STATE(797), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2137), - [sym_char_literal] = ACTIONS(2137), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2139), - [sym_false] = ACTIONS(2139), - [sym_null] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2139), - [sym_comment] = ACTIONS(39), - }, [573] = { - [sym__expression] = STATE(798), - [sym_conditional_expression] = STATE(798), - [sym_assignment_expression] = STATE(798), - [sym_pointer_expression] = STATE(798), - [sym_logical_expression] = STATE(798), - [sym_bitwise_expression] = STATE(798), - [sym_equality_expression] = STATE(798), - [sym_relational_expression] = STATE(798), - [sym_shift_expression] = STATE(798), - [sym_math_expression] = STATE(798), - [sym_cast_expression] = STATE(798), - [sym_sizeof_expression] = STATE(798), - [sym_subscript_expression] = STATE(798), - [sym_call_expression] = STATE(798), - [sym_field_expression] = STATE(798), - [sym_compound_literal_expression] = STATE(798), - [sym_parenthesized_expression] = STATE(798), - [sym_concatenated_string] = STATE(798), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2141), - [sym_char_literal] = ACTIONS(2141), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2143), - [sym_false] = ACTIONS(2143), - [sym_null] = ACTIONS(2143), - [sym_identifier] = ACTIONS(2143), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2137), [sym_comment] = ACTIONS(39), }, [574] = { - [sym__expression] = STATE(799), - [sym_conditional_expression] = STATE(799), - [sym_assignment_expression] = STATE(799), - [sym_pointer_expression] = STATE(799), - [sym_logical_expression] = STATE(799), - [sym_bitwise_expression] = STATE(799), - [sym_equality_expression] = STATE(799), - [sym_relational_expression] = STATE(799), - [sym_shift_expression] = STATE(799), - [sym_math_expression] = STATE(799), - [sym_cast_expression] = STATE(799), - [sym_sizeof_expression] = STATE(799), - [sym_subscript_expression] = STATE(799), - [sym_call_expression] = STATE(799), - [sym_field_expression] = STATE(799), - [sym_compound_literal_expression] = STATE(799), - [sym_parenthesized_expression] = STATE(799), - [sym_concatenated_string] = STATE(799), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2145), - [sym_char_literal] = ACTIONS(2145), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2147), - [sym_false] = ACTIONS(2147), - [sym_null] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2147), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2139), [sym_comment] = ACTIONS(39), }, [575] = { - [sym__expression] = STATE(800), - [sym_conditional_expression] = STATE(800), - [sym_assignment_expression] = STATE(800), - [sym_pointer_expression] = STATE(800), - [sym_logical_expression] = STATE(800), - [sym_bitwise_expression] = STATE(800), - [sym_equality_expression] = STATE(800), - [sym_relational_expression] = STATE(800), - [sym_shift_expression] = STATE(800), - [sym_math_expression] = STATE(800), - [sym_cast_expression] = STATE(800), - [sym_sizeof_expression] = STATE(800), - [sym_subscript_expression] = STATE(800), - [sym_call_expression] = STATE(800), - [sym_field_expression] = STATE(800), - [sym_compound_literal_expression] = STATE(800), - [sym_parenthesized_expression] = STATE(800), - [sym_concatenated_string] = STATE(800), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2149), - [sym_char_literal] = ACTIONS(2149), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2151), - [sym_false] = ACTIONS(2151), - [sym_null] = ACTIONS(2151), - [sym_identifier] = ACTIONS(2151), + [sym__field_declarator] = STATE(577), + [sym_pointer_field_declarator] = STATE(195), + [sym_function_field_declarator] = STATE(196), + [sym_array_field_declarator] = STATE(197), + [sym_type_qualifier] = STATE(214), + [aux_sym_type_definition_repeat1] = STATE(214), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(807), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(813), [sym_comment] = ACTIONS(39), }, [576] = { - [sym__expression] = STATE(801), - [sym_conditional_expression] = STATE(801), - [sym_assignment_expression] = STATE(801), - [sym_pointer_expression] = STATE(801), - [sym_logical_expression] = STATE(801), - [sym_bitwise_expression] = STATE(801), - [sym_equality_expression] = STATE(801), - [sym_relational_expression] = STATE(801), - [sym_shift_expression] = STATE(801), - [sym_math_expression] = STATE(801), - [sym_cast_expression] = STATE(801), - [sym_sizeof_expression] = STATE(801), - [sym_subscript_expression] = STATE(801), - [sym_call_expression] = STATE(801), - [sym_field_expression] = STATE(801), - [sym_compound_literal_expression] = STATE(801), - [sym_parenthesized_expression] = STATE(801), - [sym_concatenated_string] = STATE(801), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2153), - [sym_char_literal] = ACTIONS(2153), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2155), - [sym_false] = ACTIONS(2155), - [sym_null] = ACTIONS(2155), - [sym_identifier] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(2141), + [anon_sym_RPAREN] = ACTIONS(2141), + [anon_sym_SEMI] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_COLON] = ACTIONS(2141), [sym_comment] = ACTIONS(39), }, [577] = { - [sym__expression] = STATE(802), - [sym_conditional_expression] = STATE(802), - [sym_assignment_expression] = STATE(802), - [sym_pointer_expression] = STATE(802), - [sym_logical_expression] = STATE(802), - [sym_bitwise_expression] = STATE(802), - [sym_equality_expression] = STATE(802), - [sym_relational_expression] = STATE(802), - [sym_shift_expression] = STATE(802), - [sym_math_expression] = STATE(802), - [sym_cast_expression] = STATE(802), - [sym_sizeof_expression] = STATE(802), - [sym_subscript_expression] = STATE(802), - [sym_call_expression] = STATE(802), - [sym_field_expression] = STATE(802), - [sym_compound_literal_expression] = STATE(802), - [sym_parenthesized_expression] = STATE(802), - [sym_concatenated_string] = STATE(802), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2157), - [sym_char_literal] = ACTIONS(2157), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_identifier] = ACTIONS(2159), + [sym_parameter_list] = STATE(372), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(2143), + [anon_sym_RPAREN] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(2143), [sym_comment] = ACTIONS(39), }, [578] = { - [sym__expression] = STATE(803), - [sym_conditional_expression] = STATE(803), - [sym_assignment_expression] = STATE(803), - [sym_pointer_expression] = STATE(803), - [sym_logical_expression] = STATE(803), - [sym_bitwise_expression] = STATE(803), - [sym_equality_expression] = STATE(803), - [sym_relational_expression] = STATE(803), - [sym_shift_expression] = STATE(803), - [sym_math_expression] = STATE(803), - [sym_cast_expression] = STATE(803), - [sym_sizeof_expression] = STATE(803), - [sym_subscript_expression] = STATE(803), - [sym_call_expression] = STATE(803), - [sym_field_expression] = STATE(803), - [sym_compound_literal_expression] = STATE(803), - [sym_parenthesized_expression] = STATE(803), - [sym_concatenated_string] = STATE(803), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2161), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2163), - [sym_false] = ACTIONS(2163), - [sym_null] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2163), + [anon_sym_RPAREN] = ACTIONS(2145), [sym_comment] = ACTIONS(39), }, [579] = { - [sym__expression] = STATE(804), - [sym_conditional_expression] = STATE(804), - [sym_assignment_expression] = STATE(804), - [sym_pointer_expression] = STATE(804), - [sym_logical_expression] = STATE(804), - [sym_bitwise_expression] = STATE(804), - [sym_equality_expression] = STATE(804), - [sym_relational_expression] = STATE(804), - [sym_shift_expression] = STATE(804), - [sym_math_expression] = STATE(804), - [sym_cast_expression] = STATE(804), - [sym_sizeof_expression] = STATE(804), - [sym_subscript_expression] = STATE(804), - [sym_call_expression] = STATE(804), - [sym_field_expression] = STATE(804), - [sym_compound_literal_expression] = STATE(804), - [sym_parenthesized_expression] = STATE(804), - [sym_concatenated_string] = STATE(804), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2165), - [sym_char_literal] = ACTIONS(2165), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_identifier] = ACTIONS(2167), + [sym_type_qualifier] = STATE(115), + [sym__type_specifier] = STATE(113), + [sym_sized_type_specifier] = STATE(113), + [sym_enum_specifier] = STATE(113), + [sym_struct_specifier] = STATE(113), + [sym_union_specifier] = STATE(113), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(810), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), + [sym_macro_type_specifier] = STATE(113), + [aux_sym_type_definition_repeat1] = STATE(115), + [aux_sym_sized_type_specifier_repeat1] = STATE(116), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(217), + [anon_sym_long] = ACTIONS(217), + [anon_sym_short] = ACTIONS(217), + [sym_primitive_type] = ACTIONS(219), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, [580] = { - [sym__expression] = STATE(805), - [sym_conditional_expression] = STATE(805), - [sym_assignment_expression] = STATE(805), - [sym_pointer_expression] = STATE(805), - [sym_logical_expression] = STATE(805), - [sym_bitwise_expression] = STATE(805), - [sym_equality_expression] = STATE(805), - [sym_relational_expression] = STATE(805), - [sym_shift_expression] = STATE(805), - [sym_math_expression] = STATE(805), - [sym_cast_expression] = STATE(805), - [sym_sizeof_expression] = STATE(805), - [sym_subscript_expression] = STATE(805), - [sym_call_expression] = STATE(805), - [sym_field_expression] = STATE(805), - [sym_compound_literal_expression] = STATE(805), - [sym_parenthesized_expression] = STATE(805), - [sym_concatenated_string] = STATE(805), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2169), - [sym_char_literal] = ACTIONS(2169), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2171), - [sym_false] = ACTIONS(2171), - [sym_null] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2171), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1707), + [anon_sym_QMARK] = ACTIONS(1705), + [anon_sym_STAR_EQ] = ACTIONS(1705), + [anon_sym_SLASH_EQ] = ACTIONS(1705), + [anon_sym_PERCENT_EQ] = ACTIONS(1705), + [anon_sym_PLUS_EQ] = ACTIONS(1705), + [anon_sym_DASH_EQ] = ACTIONS(1705), + [anon_sym_LT_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_GT_EQ] = ACTIONS(1705), + [anon_sym_AMP_EQ] = ACTIONS(1705), + [anon_sym_CARET_EQ] = ACTIONS(1705), + [anon_sym_PIPE_EQ] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_EQ_EQ] = ACTIONS(1705), + [anon_sym_BANG_EQ] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_EQ] = ACTIONS(1705), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [581] = { - [sym__expression] = STATE(806), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(806), - [sym_logical_expression] = STATE(806), - [sym_bitwise_expression] = STATE(806), - [sym_equality_expression] = STATE(806), - [sym_relational_expression] = STATE(806), - [sym_shift_expression] = STATE(806), - [sym_math_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_subscript_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_field_expression] = STATE(806), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_concatenated_string] = STATE(806), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2173), - [sym_char_literal] = ACTIONS(2173), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2175), - [sym_false] = ACTIONS(2175), - [sym_null] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2175), + [aux_sym_concatenated_string_repeat1] = STATE(811), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1711), + [anon_sym_QMARK] = ACTIONS(1709), + [anon_sym_STAR_EQ] = ACTIONS(1709), + [anon_sym_SLASH_EQ] = ACTIONS(1709), + [anon_sym_PERCENT_EQ] = ACTIONS(1709), + [anon_sym_PLUS_EQ] = ACTIONS(1709), + [anon_sym_DASH_EQ] = ACTIONS(1709), + [anon_sym_LT_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_GT_EQ] = ACTIONS(1709), + [anon_sym_AMP_EQ] = ACTIONS(1709), + [anon_sym_CARET_EQ] = ACTIONS(1709), + [anon_sym_PIPE_EQ] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PIPE_PIPE] = ACTIONS(1709), + [anon_sym_AMP_AMP] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1709), + [anon_sym_LT_LT] = ACTIONS(1711), + [anon_sym_GT_GT] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_PERCENT] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_DASH_GT] = ACTIONS(1709), + [sym_string_literal] = ACTIONS(2147), [sym_comment] = ACTIONS(39), }, [582] = { - [sym__expression] = STATE(807), - [sym_conditional_expression] = STATE(807), - [sym_assignment_expression] = STATE(807), - [sym_pointer_expression] = STATE(807), - [sym_logical_expression] = STATE(807), - [sym_bitwise_expression] = STATE(807), - [sym_equality_expression] = STATE(807), - [sym_relational_expression] = STATE(807), - [sym_shift_expression] = STATE(807), - [sym_math_expression] = STATE(807), - [sym_cast_expression] = STATE(807), - [sym_sizeof_expression] = STATE(807), - [sym_subscript_expression] = STATE(807), - [sym_call_expression] = STATE(807), - [sym_field_expression] = STATE(807), - [sym_compound_literal_expression] = STATE(807), - [sym_parenthesized_expression] = STATE(807), - [sym_concatenated_string] = STATE(807), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2177), - [sym_char_literal] = ACTIONS(2177), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2179), - [sym_false] = ACTIONS(2179), - [sym_null] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2179), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2149), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2151), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2151), + [anon_sym_extern] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_auto] = ACTIONS(2149), + [anon_sym_register] = ACTIONS(2149), + [anon_sym_inline] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_restrict] = ACTIONS(2149), + [anon_sym_volatile] = ACTIONS(2149), + [anon_sym__Atomic] = ACTIONS(2149), + [anon_sym_unsigned] = ACTIONS(2149), + [anon_sym_long] = ACTIONS(2149), + [anon_sym_short] = ACTIONS(2149), + [sym_primitive_type] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2149), + [anon_sym_union] = ACTIONS(2149), + [sym_identifier] = ACTIONS(2149), [sym_comment] = ACTIONS(39), }, [583] = { - [sym_parameter_list] = STATE(364), - [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_COMMA] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(2181), + [sym__expression] = STATE(721), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(721), + [sym_logical_expression] = STATE(721), + [sym_bitwise_expression] = STATE(721), + [sym_equality_expression] = STATE(721), + [sym_relational_expression] = STATE(721), + [sym_shift_expression] = STATE(721), + [sym_math_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(721), + [sym_call_expression] = STATE(721), + [sym_field_expression] = STATE(721), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(721), + [sym_concatenated_string] = STATE(721), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(1731), + [sym_char_literal] = ACTIONS(1731), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_null] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1733), [sym_comment] = ACTIONS(39), }, [584] = { - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RPAREN] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_COLON] = ACTIONS(2183), + [sym__expression] = STATE(812), + [sym_conditional_expression] = STATE(812), + [sym_assignment_expression] = STATE(812), + [sym_pointer_expression] = STATE(812), + [sym_logical_expression] = STATE(812), + [sym_bitwise_expression] = STATE(812), + [sym_equality_expression] = STATE(812), + [sym_relational_expression] = STATE(812), + [sym_shift_expression] = STATE(812), + [sym_math_expression] = STATE(812), + [sym_cast_expression] = STATE(812), + [sym_sizeof_expression] = STATE(812), + [sym_subscript_expression] = STATE(812), + [sym_call_expression] = STATE(812), + [sym_field_expression] = STATE(812), + [sym_compound_literal_expression] = STATE(812), + [sym_parenthesized_expression] = STATE(812), + [sym_concatenated_string] = STATE(812), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2153), + [sym_char_literal] = ACTIONS(2153), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2155), + [sym_false] = ACTIONS(2155), + [sym_null] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2155), [sym_comment] = ACTIONS(39), }, [585] = { - [sym__expression] = STATE(809), - [sym_conditional_expression] = STATE(809), - [sym_assignment_expression] = STATE(809), - [sym_pointer_expression] = STATE(809), - [sym_logical_expression] = STATE(809), - [sym_bitwise_expression] = STATE(809), - [sym_equality_expression] = STATE(809), - [sym_relational_expression] = STATE(809), - [sym_shift_expression] = STATE(809), - [sym_math_expression] = STATE(809), - [sym_cast_expression] = STATE(809), - [sym_sizeof_expression] = STATE(809), - [sym_subscript_expression] = STATE(809), - [sym_call_expression] = STATE(809), - [sym_field_expression] = STATE(809), - [sym_compound_literal_expression] = STATE(809), - [sym_parenthesized_expression] = STATE(809), - [sym_concatenated_string] = STATE(809), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2187), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(2189), - [sym_false] = ACTIONS(2189), - [sym_null] = ACTIONS(2189), - [sym_identifier] = ACTIONS(2189), - [sym_comment] = ACTIONS(39), - }, - [586] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2185), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [587] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [588] = { - [sym__expression] = STATE(811), - [sym_conditional_expression] = STATE(811), - [sym_assignment_expression] = STATE(811), - [sym_pointer_expression] = STATE(811), - [sym_logical_expression] = STATE(811), - [sym_bitwise_expression] = STATE(811), - [sym_equality_expression] = STATE(811), - [sym_relational_expression] = STATE(811), - [sym_shift_expression] = STATE(811), - [sym_math_expression] = STATE(811), - [sym_cast_expression] = STATE(811), - [sym_sizeof_expression] = STATE(811), - [sym_subscript_expression] = STATE(811), - [sym_call_expression] = STATE(811), - [sym_field_expression] = STATE(811), - [sym_compound_literal_expression] = STATE(811), - [sym_parenthesized_expression] = STATE(811), - [sym_concatenated_string] = STATE(811), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2193), - [sym_char_literal] = ACTIONS(2193), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2195), - [sym_false] = ACTIONS(2195), - [sym_null] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2195), - [sym_comment] = ACTIONS(39), - }, - [589] = { - [aux_sym_field_declaration_repeat1] = STATE(589), - [anon_sym_COMMA] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_COLON] = ACTIONS(2181), - [sym_comment] = ACTIONS(39), - }, - [590] = { - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2200), - [anon_sym_RPAREN] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [sym_comment] = ACTIONS(39), - }, - [591] = { - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_COMMA] = ACTIONS(2202), - [anon_sym_RPAREN] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2202), - [sym_comment] = ACTIONS(39), - }, - [592] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [593] = { [sym__expression] = STATE(813), [sym_conditional_expression] = STATE(813), [sym_assignment_expression] = STATE(813), @@ -22778,277 +22402,141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(813), [sym_parenthesized_expression] = STATE(813), [sym_concatenated_string] = STATE(813), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(2206), - [sym_char_literal] = ACTIONS(2206), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2208), - [sym_comment] = ACTIONS(39), - }, - [594] = { - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_RPAREN] = ACTIONS(2210), - [sym_comment] = ACTIONS(39), - }, - [595] = { - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_COMMA] = ACTIONS(2212), - [anon_sym_RPAREN] = ACTIONS(2212), - [anon_sym_SEMI] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_EQ] = ACTIONS(2212), - [anon_sym_COLON] = ACTIONS(2212), - [sym_comment] = ACTIONS(39), - }, - [596] = { - [aux_sym_parameter_list_repeat1] = STATE(596), - [anon_sym_COMMA] = ACTIONS(2214), - [anon_sym_RPAREN] = ACTIONS(2210), - [sym_comment] = ACTIONS(39), - }, - [597] = { - [sym__declarator] = STATE(119), - [sym__abstract_declarator] = STATE(369), - [sym_pointer_declarator] = STATE(119), - [sym_abstract_pointer_declarator] = STATE(369), - [sym_function_declarator] = STATE(119), - [sym_abstract_function_declarator] = STATE(369), - [sym_array_declarator] = STATE(119), - [sym_abstract_array_declarator] = STATE(369), - [sym_parameter_list] = STATE(205), - [anon_sym_LPAREN] = ACTIONS(916), - [anon_sym_RPAREN] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(498), - [sym_identifier] = ACTIONS(229), - [sym_comment] = ACTIONS(39), - }, - [598] = { - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_COMMA] = ACTIONS(84), - [anon_sym_RPAREN] = ACTIONS(2221), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(84), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [sym_identifier] = ACTIONS(86), - [sym_comment] = ACTIONS(39), - }, - [599] = { - [sym_storage_class_specifier] = STATE(599), - [sym_type_qualifier] = STATE(599), - [aux_sym__declaration_specifiers_repeat1] = STATE(599), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_COMMA] = ACTIONS(624), - [anon_sym_RPAREN] = ACTIONS(624), - [anon_sym_extern] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(624), - [anon_sym_static] = ACTIONS(297), - [anon_sym_auto] = ACTIONS(297), - [anon_sym_register] = ACTIONS(297), - [anon_sym_inline] = ACTIONS(297), - [anon_sym_const] = ACTIONS(300), - [anon_sym_restrict] = ACTIONS(300), - [anon_sym_volatile] = ACTIONS(300), - [anon_sym__Atomic] = ACTIONS(300), - [sym_identifier] = ACTIONS(303), - [sym_comment] = ACTIONS(39), - }, - [600] = { - [sym_storage_class_specifier] = STATE(599), - [sym_type_qualifier] = STATE(599), - [aux_sym__declaration_specifiers_repeat1] = STATE(599), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(626), - [anon_sym_RPAREN] = ACTIONS(626), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(626), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [sym_identifier] = ACTIONS(628), - [sym_comment] = ACTIONS(39), - }, - [601] = { - [anon_sym_RPAREN] = ACTIONS(2224), - [sym_comment] = ACTIONS(39), - }, - [602] = { - [sym_type_qualifier] = STATE(115), - [sym__type_specifier] = STATE(113), - [sym_sized_type_specifier] = STATE(113), - [sym_enum_specifier] = STATE(113), - [sym_struct_specifier] = STATE(113), - [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(815), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), - [sym_macro_type_specifier] = STATE(113), - [aux_sym_type_definition_repeat1] = STATE(115), - [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(217), - [anon_sym_long] = ACTIONS(217), - [anon_sym_short] = ACTIONS(217), - [sym_primitive_type] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2157), + [sym_char_literal] = ACTIONS(2157), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2159), + [sym_false] = ACTIONS(2159), + [sym_null] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2159), [sym_comment] = ACTIONS(39), }, - [603] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1691), - [anon_sym_RPAREN] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1693), - [anon_sym_QMARK] = ACTIONS(1691), - [anon_sym_STAR_EQ] = ACTIONS(1691), - [anon_sym_SLASH_EQ] = ACTIONS(1691), - [anon_sym_PERCENT_EQ] = ACTIONS(1691), - [anon_sym_PLUS_EQ] = ACTIONS(1691), - [anon_sym_DASH_EQ] = ACTIONS(1691), - [anon_sym_LT_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_GT_EQ] = ACTIONS(1691), - [anon_sym_AMP_EQ] = ACTIONS(1691), - [anon_sym_CARET_EQ] = ACTIONS(1691), - [anon_sym_PIPE_EQ] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1693), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(1693), - [anon_sym_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_EQ] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [586] = { + [sym__expression] = STATE(814), + [sym_conditional_expression] = STATE(814), + [sym_assignment_expression] = STATE(814), + [sym_pointer_expression] = STATE(814), + [sym_logical_expression] = STATE(814), + [sym_bitwise_expression] = STATE(814), + [sym_equality_expression] = STATE(814), + [sym_relational_expression] = STATE(814), + [sym_shift_expression] = STATE(814), + [sym_math_expression] = STATE(814), + [sym_cast_expression] = STATE(814), + [sym_sizeof_expression] = STATE(814), + [sym_subscript_expression] = STATE(814), + [sym_call_expression] = STATE(814), + [sym_field_expression] = STATE(814), + [sym_compound_literal_expression] = STATE(814), + [sym_parenthesized_expression] = STATE(814), + [sym_concatenated_string] = STATE(814), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2161), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_null] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2163), [sym_comment] = ACTIONS(39), }, - [604] = { - [aux_sym_concatenated_string_repeat1] = STATE(816), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_COMMA] = ACTIONS(1695), - [anon_sym_RPAREN] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_EQ] = ACTIONS(1697), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_STAR_EQ] = ACTIONS(1695), - [anon_sym_SLASH_EQ] = ACTIONS(1695), - [anon_sym_PERCENT_EQ] = ACTIONS(1695), - [anon_sym_PLUS_EQ] = ACTIONS(1695), - [anon_sym_DASH_EQ] = ACTIONS(1695), - [anon_sym_LT_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_GT_EQ] = ACTIONS(1695), - [anon_sym_AMP_EQ] = ACTIONS(1695), - [anon_sym_CARET_EQ] = ACTIONS(1695), - [anon_sym_PIPE_EQ] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_PIPE_PIPE] = ACTIONS(1695), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_GT] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1697), - [anon_sym_PERCENT] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_DOT] = ACTIONS(1695), - [anon_sym_DASH_GT] = ACTIONS(1695), - [sym_string_literal] = ACTIONS(2226), + [587] = { + [sym__expression] = STATE(815), + [sym_conditional_expression] = STATE(815), + [sym_assignment_expression] = STATE(815), + [sym_pointer_expression] = STATE(815), + [sym_logical_expression] = STATE(815), + [sym_bitwise_expression] = STATE(815), + [sym_equality_expression] = STATE(815), + [sym_relational_expression] = STATE(815), + [sym_shift_expression] = STATE(815), + [sym_math_expression] = STATE(815), + [sym_cast_expression] = STATE(815), + [sym_sizeof_expression] = STATE(815), + [sym_subscript_expression] = STATE(815), + [sym_call_expression] = STATE(815), + [sym_field_expression] = STATE(815), + [sym_compound_literal_expression] = STATE(815), + [sym_parenthesized_expression] = STATE(815), + [sym_concatenated_string] = STATE(815), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2165), + [sym_char_literal] = ACTIONS(2165), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_identifier] = ACTIONS(2167), [sym_comment] = ACTIONS(39), }, - [605] = { + [588] = { + [sym__expression] = STATE(816), + [sym_conditional_expression] = STATE(816), + [sym_assignment_expression] = STATE(816), + [sym_pointer_expression] = STATE(816), + [sym_logical_expression] = STATE(816), + [sym_bitwise_expression] = STATE(816), + [sym_equality_expression] = STATE(816), + [sym_relational_expression] = STATE(816), + [sym_shift_expression] = STATE(816), + [sym_math_expression] = STATE(816), + [sym_cast_expression] = STATE(816), + [sym_sizeof_expression] = STATE(816), + [sym_subscript_expression] = STATE(816), + [sym_call_expression] = STATE(816), + [sym_field_expression] = STATE(816), + [sym_compound_literal_expression] = STATE(816), + [sym_parenthesized_expression] = STATE(816), + [sym_concatenated_string] = STATE(816), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2169), + [sym_char_literal] = ACTIONS(2169), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2171), + [sym_false] = ACTIONS(2171), + [sym_null] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2171), + [sym_comment] = ACTIONS(39), + }, + [589] = { [sym__expression] = STATE(817), - [sym_comma_expression] = STATE(705), [sym_conditional_expression] = STATE(817), [sym_assignment_expression] = STATE(817), [sym_pointer_expression] = STATE(817), @@ -23066,109 +22554,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(817), [sym_parenthesized_expression] = STATE(817), [sym_concatenated_string] = STATE(817), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2228), - [sym_char_literal] = ACTIONS(2228), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_null] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2230), - [sym_comment] = ACTIONS(39), - }, - [606] = { - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_COLON] = ACTIONS(2232), - [anon_sym_QMARK] = ACTIONS(2232), - [anon_sym_STAR_EQ] = ACTIONS(2232), - [anon_sym_SLASH_EQ] = ACTIONS(2232), - [anon_sym_PERCENT_EQ] = ACTIONS(2232), - [anon_sym_PLUS_EQ] = ACTIONS(2232), - [anon_sym_DASH_EQ] = ACTIONS(2232), - [anon_sym_LT_LT_EQ] = ACTIONS(2232), - [anon_sym_GT_GT_EQ] = ACTIONS(2232), - [anon_sym_AMP_EQ] = ACTIONS(2232), - [anon_sym_CARET_EQ] = ACTIONS(2232), - [anon_sym_PIPE_EQ] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2234), - [anon_sym_PIPE_PIPE] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2234), - [anon_sym_CARET] = ACTIONS(2234), - [anon_sym_EQ_EQ] = ACTIONS(2232), - [anon_sym_BANG_EQ] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2234), - [anon_sym_GT] = ACTIONS(2234), - [anon_sym_LT_EQ] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2234), - [anon_sym_GT_GT] = ACTIONS(2234), - [anon_sym_PLUS] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2234), - [anon_sym_PERCENT] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2232), - [anon_sym_DOT] = ACTIONS(2232), - [anon_sym_DASH_GT] = ACTIONS(2232), - [sym_comment] = ACTIONS(39), - }, - [607] = { - [sym__expression] = STATE(706), - [sym_conditional_expression] = STATE(706), - [sym_assignment_expression] = STATE(706), - [sym_pointer_expression] = STATE(706), - [sym_logical_expression] = STATE(706), - [sym_bitwise_expression] = STATE(706), - [sym_equality_expression] = STATE(706), - [sym_relational_expression] = STATE(706), - [sym_shift_expression] = STATE(706), - [sym_math_expression] = STATE(706), - [sym_cast_expression] = STATE(706), - [sym_sizeof_expression] = STATE(706), - [sym_subscript_expression] = STATE(706), - [sym_call_expression] = STATE(706), - [sym_field_expression] = STATE(706), - [sym_compound_literal_expression] = STATE(706), - [sym_parenthesized_expression] = STATE(706), - [sym_concatenated_string] = STATE(706), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(1717), - [sym_char_literal] = ACTIONS(1717), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2173), + [sym_char_literal] = ACTIONS(2173), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2175), [sym_comment] = ACTIONS(39), }, - [608] = { + [590] = { [sym__expression] = STATE(818), [sym_conditional_expression] = STATE(818), [sym_assignment_expression] = STATE(818), @@ -23187,26 +22592,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(818), [sym_parenthesized_expression] = STATE(818), [sym_concatenated_string] = STATE(818), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2236), - [sym_char_literal] = ACTIONS(2236), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2177), + [sym_char_literal] = ACTIONS(2177), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2179), + [sym_false] = ACTIONS(2179), + [sym_null] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2179), [sym_comment] = ACTIONS(39), }, - [609] = { + [591] = { [sym__expression] = STATE(819), [sym_conditional_expression] = STATE(819), [sym_assignment_expression] = STATE(819), @@ -23225,26 +22630,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(819), [sym_parenthesized_expression] = STATE(819), [sym_concatenated_string] = STATE(819), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2240), - [sym_char_literal] = ACTIONS(2240), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2242), - [sym_false] = ACTIONS(2242), - [sym_null] = ACTIONS(2242), - [sym_identifier] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2181), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2183), [sym_comment] = ACTIONS(39), }, - [610] = { + [592] = { [sym__expression] = STATE(820), [sym_conditional_expression] = STATE(820), [sym_assignment_expression] = STATE(820), @@ -23263,26 +22668,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(820), [sym_parenthesized_expression] = STATE(820), [sym_concatenated_string] = STATE(820), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2244), - [sym_char_literal] = ACTIONS(2244), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_identifier] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2185), + [sym_char_literal] = ACTIONS(2185), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2187), + [sym_false] = ACTIONS(2187), + [sym_null] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2187), [sym_comment] = ACTIONS(39), }, - [611] = { + [593] = { [sym__expression] = STATE(821), [sym_conditional_expression] = STATE(821), [sym_assignment_expression] = STATE(821), @@ -23301,26 +22706,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(821), [sym_parenthesized_expression] = STATE(821), [sym_concatenated_string] = STATE(821), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2248), - [sym_char_literal] = ACTIONS(2248), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2250), - [sym_false] = ACTIONS(2250), - [sym_null] = ACTIONS(2250), - [sym_identifier] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2189), + [sym_char_literal] = ACTIONS(2189), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2191), + [sym_false] = ACTIONS(2191), + [sym_null] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2191), [sym_comment] = ACTIONS(39), }, - [612] = { + [594] = { [sym__expression] = STATE(822), [sym_conditional_expression] = STATE(822), [sym_assignment_expression] = STATE(822), @@ -23339,64 +22744,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(822), [sym_parenthesized_expression] = STATE(822), [sym_concatenated_string] = STATE(822), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2252), - [sym_char_literal] = ACTIONS(2252), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2254), - [sym_false] = ACTIONS(2254), - [sym_null] = ACTIONS(2254), - [sym_identifier] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2193), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2195), + [sym_false] = ACTIONS(2195), + [sym_null] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2195), [sym_comment] = ACTIONS(39), }, - [613] = { - [sym__expression] = STATE(823), - [sym_conditional_expression] = STATE(823), - [sym_assignment_expression] = STATE(823), - [sym_pointer_expression] = STATE(823), - [sym_logical_expression] = STATE(823), - [sym_bitwise_expression] = STATE(823), - [sym_equality_expression] = STATE(823), - [sym_relational_expression] = STATE(823), - [sym_shift_expression] = STATE(823), - [sym_math_expression] = STATE(823), - [sym_cast_expression] = STATE(823), - [sym_sizeof_expression] = STATE(823), - [sym_subscript_expression] = STATE(823), - [sym_call_expression] = STATE(823), - [sym_field_expression] = STATE(823), - [sym_compound_literal_expression] = STATE(823), - [sym_parenthesized_expression] = STATE(823), - [sym_concatenated_string] = STATE(823), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2256), - [sym_char_literal] = ACTIONS(2256), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2258), - [sym_false] = ACTIONS(2258), - [sym_null] = ACTIONS(2258), - [sym_identifier] = ACTIONS(2258), + [595] = { + [sym_parameter_list] = STATE(372), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(2197), [sym_comment] = ACTIONS(39), }, - [614] = { + [596] = { + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_COLON] = ACTIONS(2199), + [sym_comment] = ACTIONS(39), + }, + [597] = { [sym__expression] = STATE(824), [sym_conditional_expression] = STATE(824), [sym_assignment_expression] = STATE(824), @@ -23415,64 +22800,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(824), [sym_parenthesized_expression] = STATE(824), [sym_concatenated_string] = STATE(824), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2260), - [sym_char_literal] = ACTIONS(2260), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_identifier] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_RBRACK] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(2203), + [sym_char_literal] = ACTIONS(2203), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_identifier] = ACTIONS(2205), [sym_comment] = ACTIONS(39), }, - [615] = { - [sym__expression] = STATE(825), - [sym_conditional_expression] = STATE(825), - [sym_assignment_expression] = STATE(825), - [sym_pointer_expression] = STATE(825), - [sym_logical_expression] = STATE(825), - [sym_bitwise_expression] = STATE(825), - [sym_equality_expression] = STATE(825), - [sym_relational_expression] = STATE(825), - [sym_shift_expression] = STATE(825), - [sym_math_expression] = STATE(825), - [sym_cast_expression] = STATE(825), - [sym_sizeof_expression] = STATE(825), - [sym_subscript_expression] = STATE(825), - [sym_call_expression] = STATE(825), - [sym_field_expression] = STATE(825), - [sym_compound_literal_expression] = STATE(825), - [sym_parenthesized_expression] = STATE(825), - [sym_concatenated_string] = STATE(825), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2264), - [sym_char_literal] = ACTIONS(2264), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2266), - [sym_false] = ACTIONS(2266), - [sym_null] = ACTIONS(2266), - [sym_identifier] = ACTIONS(2266), + [598] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2201), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [616] = { + [599] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [600] = { [sym__expression] = STATE(826), [sym_conditional_expression] = STATE(826), [sym_assignment_expression] = STATE(826), @@ -23491,64 +22921,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(826), [sym_parenthesized_expression] = STATE(826), [sym_concatenated_string] = STATE(826), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2268), - [sym_char_literal] = ACTIONS(2268), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2270), - [sym_false] = ACTIONS(2270), - [sym_null] = ACTIONS(2270), - [sym_identifier] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2209), + [sym_char_literal] = ACTIONS(2209), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2211), + [sym_false] = ACTIONS(2211), + [sym_null] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2211), [sym_comment] = ACTIONS(39), }, - [617] = { - [sym__expression] = STATE(827), - [sym_conditional_expression] = STATE(827), - [sym_assignment_expression] = STATE(827), - [sym_pointer_expression] = STATE(827), - [sym_logical_expression] = STATE(827), - [sym_bitwise_expression] = STATE(827), - [sym_equality_expression] = STATE(827), - [sym_relational_expression] = STATE(827), - [sym_shift_expression] = STATE(827), - [sym_math_expression] = STATE(827), - [sym_cast_expression] = STATE(827), - [sym_sizeof_expression] = STATE(827), - [sym_subscript_expression] = STATE(827), - [sym_call_expression] = STATE(827), - [sym_field_expression] = STATE(827), - [sym_compound_literal_expression] = STATE(827), - [sym_parenthesized_expression] = STATE(827), - [sym_concatenated_string] = STATE(827), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2272), - [sym_char_literal] = ACTIONS(2272), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_identifier] = ACTIONS(2274), + [601] = { + [aux_sym_field_declaration_repeat1] = STATE(601), + [anon_sym_COMMA] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_COLON] = ACTIONS(2197), [sym_comment] = ACTIONS(39), }, - [618] = { + [602] = { + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_COMMA] = ACTIONS(2216), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2216), + [sym_comment] = ACTIONS(39), + }, + [603] = { + [sym_parameter_list] = STATE(383), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_LBRACK] = ACTIONS(905), + [sym_comment] = ACTIONS(39), + }, + [604] = { + [sym_type_qualifier] = STATE(604), + [aux_sym_type_definition_repeat1] = STATE(604), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_const] = ACTIONS(2220), + [anon_sym_restrict] = ACTIONS(2220), + [anon_sym_volatile] = ACTIONS(2220), + [anon_sym__Atomic] = ACTIONS(2220), + [sym_comment] = ACTIONS(39), + }, + [605] = { + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_COMMA] = ACTIONS(2223), + [anon_sym_RPAREN] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [sym_comment] = ACTIONS(39), + }, + [606] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2225), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [607] = { [sym__expression] = STATE(828), [sym_conditional_expression] = STATE(828), [sym_assignment_expression] = STATE(828), @@ -23567,145 +23042,964 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(828), [sym_parenthesized_expression] = STATE(828), [sym_concatenated_string] = STATE(828), - [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_RBRACK] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(2227), + [sym_char_literal] = ACTIONS(2227), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(2229), + [sym_false] = ACTIONS(2229), + [sym_null] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2229), + [sym_comment] = ACTIONS(39), + }, + [608] = { + [anon_sym_COMMA] = ACTIONS(2231), + [anon_sym_RPAREN] = ACTIONS(2231), + [sym_comment] = ACTIONS(39), + }, + [609] = { + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_COMMA] = ACTIONS(2233), + [anon_sym_RPAREN] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_EQ] = ACTIONS(2233), + [anon_sym_COLON] = ACTIONS(2233), + [sym_comment] = ACTIONS(39), + }, + [610] = { + [aux_sym_parameter_list_repeat1] = STATE(610), + [anon_sym_COMMA] = ACTIONS(2235), + [anon_sym_RPAREN] = ACTIONS(2231), + [sym_comment] = ACTIONS(39), + }, + [611] = { + [sym__declarator] = STATE(119), + [sym__abstract_declarator] = STATE(377), + [sym_pointer_declarator] = STATE(119), + [sym_abstract_pointer_declarator] = STATE(377), + [sym_function_declarator] = STATE(119), + [sym_abstract_function_declarator] = STATE(377), + [sym_array_declarator] = STATE(119), + [sym_abstract_array_declarator] = STATE(377), + [sym_type_qualifier] = STATE(829), + [sym_parameter_list] = STATE(207), + [aux_sym_type_definition_repeat1] = STATE(829), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(229), + [sym_comment] = ACTIONS(39), + }, + [612] = { + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_COMMA] = ACTIONS(84), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_extern] = ACTIONS(86), + [anon_sym_STAR] = ACTIONS(84), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(86), + [anon_sym_auto] = ACTIONS(86), + [anon_sym_register] = ACTIONS(86), + [anon_sym_inline] = ACTIONS(86), + [anon_sym_const] = ACTIONS(86), + [anon_sym_restrict] = ACTIONS(86), + [anon_sym_volatile] = ACTIONS(86), + [anon_sym__Atomic] = ACTIONS(86), + [sym_identifier] = ACTIONS(86), + [sym_comment] = ACTIONS(39), + }, + [613] = { + [sym__declarator] = STATE(213), + [sym__abstract_declarator] = STATE(603), + [sym_pointer_declarator] = STATE(213), + [sym_abstract_pointer_declarator] = STATE(603), + [sym_function_declarator] = STATE(213), + [sym_abstract_function_declarator] = STATE(603), + [sym_array_declarator] = STATE(213), + [sym_abstract_array_declarator] = STATE(603), + [sym_type_qualifier] = STATE(830), + [sym_parameter_list] = STATE(207), + [aux_sym_type_definition_repeat1] = STATE(830), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2276), - [sym_char_literal] = ACTIONS(2276), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2278), - [sym_false] = ACTIONS(2278), - [sym_null] = ACTIONS(2278), - [sym_identifier] = ACTIONS(2278), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(514), + [sym_comment] = ACTIONS(39), + }, + [614] = { + [sym_storage_class_specifier] = STATE(614), + [sym_type_qualifier] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(614), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_COMMA] = ACTIONS(628), + [anon_sym_RPAREN] = ACTIONS(628), + [anon_sym_extern] = ACTIONS(297), + [anon_sym_STAR] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_static] = ACTIONS(297), + [anon_sym_auto] = ACTIONS(297), + [anon_sym_register] = ACTIONS(297), + [anon_sym_inline] = ACTIONS(297), + [anon_sym_const] = ACTIONS(300), + [anon_sym_restrict] = ACTIONS(300), + [anon_sym_volatile] = ACTIONS(300), + [anon_sym__Atomic] = ACTIONS(300), + [sym_identifier] = ACTIONS(303), + [sym_comment] = ACTIONS(39), + }, + [615] = { + [sym_storage_class_specifier] = STATE(614), + [sym_type_qualifier] = STATE(614), + [aux_sym__declaration_specifiers_repeat1] = STATE(614), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(630), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(630), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(632), + [sym_comment] = ACTIONS(39), + }, + [616] = { + [anon_sym_RPAREN] = ACTIONS(2245), + [sym_comment] = ACTIONS(39), + }, + [617] = { + [sym_type_qualifier] = STATE(115), + [sym__type_specifier] = STATE(113), + [sym_sized_type_specifier] = STATE(113), + [sym_enum_specifier] = STATE(113), + [sym_struct_specifier] = STATE(113), + [sym_union_specifier] = STATE(113), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(832), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), + [sym_macro_type_specifier] = STATE(113), + [aux_sym_type_definition_repeat1] = STATE(115), + [aux_sym_sized_type_specifier_repeat1] = STATE(116), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(217), + [anon_sym_long] = ACTIONS(217), + [anon_sym_short] = ACTIONS(217), + [sym_primitive_type] = ACTIONS(219), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), + [sym_comment] = ACTIONS(39), + }, + [618] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1707), + [anon_sym_QMARK] = ACTIONS(1705), + [anon_sym_STAR_EQ] = ACTIONS(1705), + [anon_sym_SLASH_EQ] = ACTIONS(1705), + [anon_sym_PERCENT_EQ] = ACTIONS(1705), + [anon_sym_PLUS_EQ] = ACTIONS(1705), + [anon_sym_DASH_EQ] = ACTIONS(1705), + [anon_sym_LT_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_GT_EQ] = ACTIONS(1705), + [anon_sym_AMP_EQ] = ACTIONS(1705), + [anon_sym_CARET_EQ] = ACTIONS(1705), + [anon_sym_PIPE_EQ] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_EQ_EQ] = ACTIONS(1705), + [anon_sym_BANG_EQ] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_EQ] = ACTIONS(1705), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [619] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [aux_sym_concatenated_string_repeat1] = STATE(833), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1711), + [anon_sym_QMARK] = ACTIONS(1709), + [anon_sym_STAR_EQ] = ACTIONS(1709), + [anon_sym_SLASH_EQ] = ACTIONS(1709), + [anon_sym_PERCENT_EQ] = ACTIONS(1709), + [anon_sym_PLUS_EQ] = ACTIONS(1709), + [anon_sym_DASH_EQ] = ACTIONS(1709), + [anon_sym_LT_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_GT_EQ] = ACTIONS(1709), + [anon_sym_AMP_EQ] = ACTIONS(1709), + [anon_sym_CARET_EQ] = ACTIONS(1709), + [anon_sym_PIPE_EQ] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PIPE_PIPE] = ACTIONS(1709), + [anon_sym_AMP_AMP] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1709), + [anon_sym_LT_LT] = ACTIONS(1711), + [anon_sym_GT_GT] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_PERCENT] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_DASH_GT] = ACTIONS(1709), + [sym_string_literal] = ACTIONS(2247), + [sym_comment] = ACTIONS(39), + }, + [620] = { + [sym__expression] = STATE(834), + [sym_comma_expression] = STATE(720), + [sym_conditional_expression] = STATE(834), + [sym_assignment_expression] = STATE(834), + [sym_pointer_expression] = STATE(834), + [sym_logical_expression] = STATE(834), + [sym_bitwise_expression] = STATE(834), + [sym_equality_expression] = STATE(834), + [sym_relational_expression] = STATE(834), + [sym_shift_expression] = STATE(834), + [sym_math_expression] = STATE(834), + [sym_cast_expression] = STATE(834), + [sym_sizeof_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_call_expression] = STATE(834), + [sym_field_expression] = STATE(834), + [sym_compound_literal_expression] = STATE(834), + [sym_parenthesized_expression] = STATE(834), + [sym_concatenated_string] = STATE(834), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2249), + [sym_char_literal] = ACTIONS(2249), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2251), + [sym_false] = ACTIONS(2251), + [sym_null] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2251), + [sym_comment] = ACTIONS(39), + }, + [621] = { + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_COMMA] = ACTIONS(2253), + [anon_sym_RPAREN] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_RBRACK] = ACTIONS(2253), + [anon_sym_EQ] = ACTIONS(2255), + [anon_sym_COLON] = ACTIONS(2253), + [anon_sym_QMARK] = ACTIONS(2253), + [anon_sym_STAR_EQ] = ACTIONS(2253), + [anon_sym_SLASH_EQ] = ACTIONS(2253), + [anon_sym_PERCENT_EQ] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(2253), + [anon_sym_DASH_EQ] = ACTIONS(2253), + [anon_sym_LT_LT_EQ] = ACTIONS(2253), + [anon_sym_GT_GT_EQ] = ACTIONS(2253), + [anon_sym_AMP_EQ] = ACTIONS(2253), + [anon_sym_CARET_EQ] = ACTIONS(2253), + [anon_sym_PIPE_EQ] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_PIPE_PIPE] = ACTIONS(2253), + [anon_sym_AMP_AMP] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_CARET] = ACTIONS(2255), + [anon_sym_EQ_EQ] = ACTIONS(2253), + [anon_sym_BANG_EQ] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_GT] = ACTIONS(2255), + [anon_sym_LT_EQ] = ACTIONS(2253), + [anon_sym_GT_EQ] = ACTIONS(2253), + [anon_sym_LT_LT] = ACTIONS(2255), + [anon_sym_GT_GT] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(2255), + [anon_sym_PERCENT] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2253), + [anon_sym_PLUS_PLUS] = ACTIONS(2253), + [anon_sym_DOT] = ACTIONS(2253), + [anon_sym_DASH_GT] = ACTIONS(2253), + [sym_comment] = ACTIONS(39), + }, + [622] = { + [sym__expression] = STATE(721), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(721), + [sym_logical_expression] = STATE(721), + [sym_bitwise_expression] = STATE(721), + [sym_equality_expression] = STATE(721), + [sym_relational_expression] = STATE(721), + [sym_shift_expression] = STATE(721), + [sym_math_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(721), + [sym_call_expression] = STATE(721), + [sym_field_expression] = STATE(721), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(721), + [sym_concatenated_string] = STATE(721), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(1731), + [sym_char_literal] = ACTIONS(1731), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_null] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1733), + [sym_comment] = ACTIONS(39), + }, + [623] = { + [sym__expression] = STATE(835), + [sym_conditional_expression] = STATE(835), + [sym_assignment_expression] = STATE(835), + [sym_pointer_expression] = STATE(835), + [sym_logical_expression] = STATE(835), + [sym_bitwise_expression] = STATE(835), + [sym_equality_expression] = STATE(835), + [sym_relational_expression] = STATE(835), + [sym_shift_expression] = STATE(835), + [sym_math_expression] = STATE(835), + [sym_cast_expression] = STATE(835), + [sym_sizeof_expression] = STATE(835), + [sym_subscript_expression] = STATE(835), + [sym_call_expression] = STATE(835), + [sym_field_expression] = STATE(835), + [sym_compound_literal_expression] = STATE(835), + [sym_parenthesized_expression] = STATE(835), + [sym_concatenated_string] = STATE(835), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2257), + [sym_char_literal] = ACTIONS(2257), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2259), + [sym_false] = ACTIONS(2259), + [sym_null] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2259), + [sym_comment] = ACTIONS(39), + }, + [624] = { + [sym__expression] = STATE(836), + [sym_conditional_expression] = STATE(836), + [sym_assignment_expression] = STATE(836), + [sym_pointer_expression] = STATE(836), + [sym_logical_expression] = STATE(836), + [sym_bitwise_expression] = STATE(836), + [sym_equality_expression] = STATE(836), + [sym_relational_expression] = STATE(836), + [sym_shift_expression] = STATE(836), + [sym_math_expression] = STATE(836), + [sym_cast_expression] = STATE(836), + [sym_sizeof_expression] = STATE(836), + [sym_subscript_expression] = STATE(836), + [sym_call_expression] = STATE(836), + [sym_field_expression] = STATE(836), + [sym_compound_literal_expression] = STATE(836), + [sym_parenthesized_expression] = STATE(836), + [sym_concatenated_string] = STATE(836), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2261), + [sym_char_literal] = ACTIONS(2261), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2263), + [sym_false] = ACTIONS(2263), + [sym_null] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2263), + [sym_comment] = ACTIONS(39), + }, + [625] = { + [sym__expression] = STATE(837), + [sym_conditional_expression] = STATE(837), + [sym_assignment_expression] = STATE(837), + [sym_pointer_expression] = STATE(837), + [sym_logical_expression] = STATE(837), + [sym_bitwise_expression] = STATE(837), + [sym_equality_expression] = STATE(837), + [sym_relational_expression] = STATE(837), + [sym_shift_expression] = STATE(837), + [sym_math_expression] = STATE(837), + [sym_cast_expression] = STATE(837), + [sym_sizeof_expression] = STATE(837), + [sym_subscript_expression] = STATE(837), + [sym_call_expression] = STATE(837), + [sym_field_expression] = STATE(837), + [sym_compound_literal_expression] = STATE(837), + [sym_parenthesized_expression] = STATE(837), + [sym_concatenated_string] = STATE(837), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2265), + [sym_char_literal] = ACTIONS(2265), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2267), + [sym_false] = ACTIONS(2267), + [sym_null] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2267), + [sym_comment] = ACTIONS(39), + }, + [626] = { + [sym__expression] = STATE(838), + [sym_conditional_expression] = STATE(838), + [sym_assignment_expression] = STATE(838), + [sym_pointer_expression] = STATE(838), + [sym_logical_expression] = STATE(838), + [sym_bitwise_expression] = STATE(838), + [sym_equality_expression] = STATE(838), + [sym_relational_expression] = STATE(838), + [sym_shift_expression] = STATE(838), + [sym_math_expression] = STATE(838), + [sym_cast_expression] = STATE(838), + [sym_sizeof_expression] = STATE(838), + [sym_subscript_expression] = STATE(838), + [sym_call_expression] = STATE(838), + [sym_field_expression] = STATE(838), + [sym_compound_literal_expression] = STATE(838), + [sym_parenthesized_expression] = STATE(838), + [sym_concatenated_string] = STATE(838), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2269), + [sym_char_literal] = ACTIONS(2269), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2271), + [sym_false] = ACTIONS(2271), + [sym_null] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2271), + [sym_comment] = ACTIONS(39), + }, + [627] = { + [sym__expression] = STATE(839), + [sym_conditional_expression] = STATE(839), + [sym_assignment_expression] = STATE(839), + [sym_pointer_expression] = STATE(839), + [sym_logical_expression] = STATE(839), + [sym_bitwise_expression] = STATE(839), + [sym_equality_expression] = STATE(839), + [sym_relational_expression] = STATE(839), + [sym_shift_expression] = STATE(839), + [sym_math_expression] = STATE(839), + [sym_cast_expression] = STATE(839), + [sym_sizeof_expression] = STATE(839), + [sym_subscript_expression] = STATE(839), + [sym_call_expression] = STATE(839), + [sym_field_expression] = STATE(839), + [sym_compound_literal_expression] = STATE(839), + [sym_parenthesized_expression] = STATE(839), + [sym_concatenated_string] = STATE(839), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2273), + [sym_char_literal] = ACTIONS(2273), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2275), + [sym_false] = ACTIONS(2275), + [sym_null] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2275), + [sym_comment] = ACTIONS(39), + }, + [628] = { + [sym__expression] = STATE(840), + [sym_conditional_expression] = STATE(840), + [sym_assignment_expression] = STATE(840), + [sym_pointer_expression] = STATE(840), + [sym_logical_expression] = STATE(840), + [sym_bitwise_expression] = STATE(840), + [sym_equality_expression] = STATE(840), + [sym_relational_expression] = STATE(840), + [sym_shift_expression] = STATE(840), + [sym_math_expression] = STATE(840), + [sym_cast_expression] = STATE(840), + [sym_sizeof_expression] = STATE(840), + [sym_subscript_expression] = STATE(840), + [sym_call_expression] = STATE(840), + [sym_field_expression] = STATE(840), + [sym_compound_literal_expression] = STATE(840), + [sym_parenthesized_expression] = STATE(840), + [sym_concatenated_string] = STATE(840), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2277), + [sym_char_literal] = ACTIONS(2277), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_identifier] = ACTIONS(2279), + [sym_comment] = ACTIONS(39), + }, + [629] = { + [sym__expression] = STATE(841), + [sym_conditional_expression] = STATE(841), + [sym_assignment_expression] = STATE(841), + [sym_pointer_expression] = STATE(841), + [sym_logical_expression] = STATE(841), + [sym_bitwise_expression] = STATE(841), + [sym_equality_expression] = STATE(841), + [sym_relational_expression] = STATE(841), + [sym_shift_expression] = STATE(841), + [sym_math_expression] = STATE(841), + [sym_cast_expression] = STATE(841), + [sym_sizeof_expression] = STATE(841), + [sym_subscript_expression] = STATE(841), + [sym_call_expression] = STATE(841), + [sym_field_expression] = STATE(841), + [sym_compound_literal_expression] = STATE(841), + [sym_parenthesized_expression] = STATE(841), + [sym_concatenated_string] = STATE(841), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2281), + [sym_char_literal] = ACTIONS(2281), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2283), + [sym_false] = ACTIONS(2283), + [sym_null] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2283), + [sym_comment] = ACTIONS(39), + }, + [630] = { + [sym__expression] = STATE(842), + [sym_conditional_expression] = STATE(842), + [sym_assignment_expression] = STATE(842), + [sym_pointer_expression] = STATE(842), + [sym_logical_expression] = STATE(842), + [sym_bitwise_expression] = STATE(842), + [sym_equality_expression] = STATE(842), + [sym_relational_expression] = STATE(842), + [sym_shift_expression] = STATE(842), + [sym_math_expression] = STATE(842), + [sym_cast_expression] = STATE(842), + [sym_sizeof_expression] = STATE(842), + [sym_subscript_expression] = STATE(842), + [sym_call_expression] = STATE(842), + [sym_field_expression] = STATE(842), + [sym_compound_literal_expression] = STATE(842), + [sym_parenthesized_expression] = STATE(842), + [sym_concatenated_string] = STATE(842), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2285), + [sym_char_literal] = ACTIONS(2285), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2287), + [sym_false] = ACTIONS(2287), + [sym_null] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2287), + [sym_comment] = ACTIONS(39), + }, + [631] = { + [sym__expression] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(843), + [sym_logical_expression] = STATE(843), + [sym_bitwise_expression] = STATE(843), + [sym_equality_expression] = STATE(843), + [sym_relational_expression] = STATE(843), + [sym_shift_expression] = STATE(843), + [sym_math_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_subscript_expression] = STATE(843), + [sym_call_expression] = STATE(843), + [sym_field_expression] = STATE(843), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(843), + [sym_concatenated_string] = STATE(843), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2289), + [sym_char_literal] = ACTIONS(2289), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2291), + [sym_false] = ACTIONS(2291), + [sym_null] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2291), + [sym_comment] = ACTIONS(39), + }, + [632] = { + [sym__expression] = STATE(844), + [sym_conditional_expression] = STATE(844), + [sym_assignment_expression] = STATE(844), + [sym_pointer_expression] = STATE(844), + [sym_logical_expression] = STATE(844), + [sym_bitwise_expression] = STATE(844), + [sym_equality_expression] = STATE(844), + [sym_relational_expression] = STATE(844), + [sym_shift_expression] = STATE(844), + [sym_math_expression] = STATE(844), + [sym_cast_expression] = STATE(844), + [sym_sizeof_expression] = STATE(844), + [sym_subscript_expression] = STATE(844), + [sym_call_expression] = STATE(844), + [sym_field_expression] = STATE(844), + [sym_compound_literal_expression] = STATE(844), + [sym_parenthesized_expression] = STATE(844), + [sym_concatenated_string] = STATE(844), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2293), + [sym_char_literal] = ACTIONS(2293), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2295), + [sym_false] = ACTIONS(2295), + [sym_null] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2295), + [sym_comment] = ACTIONS(39), + }, + [633] = { + [sym__expression] = STATE(845), + [sym_conditional_expression] = STATE(845), + [sym_assignment_expression] = STATE(845), + [sym_pointer_expression] = STATE(845), + [sym_logical_expression] = STATE(845), + [sym_bitwise_expression] = STATE(845), + [sym_equality_expression] = STATE(845), + [sym_relational_expression] = STATE(845), + [sym_shift_expression] = STATE(845), + [sym_math_expression] = STATE(845), + [sym_cast_expression] = STATE(845), + [sym_sizeof_expression] = STATE(845), + [sym_subscript_expression] = STATE(845), + [sym_call_expression] = STATE(845), + [sym_field_expression] = STATE(845), + [sym_compound_literal_expression] = STATE(845), + [sym_parenthesized_expression] = STATE(845), + [sym_concatenated_string] = STATE(845), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2297), + [sym_char_literal] = ACTIONS(2297), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2299), + [sym_false] = ACTIONS(2299), + [sym_null] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2299), + [sym_comment] = ACTIONS(39), + }, + [634] = { + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(39), }, - [620] = { - [sym_preproc_arg] = ACTIONS(2284), + [635] = { + [sym_preproc_arg] = ACTIONS(2305), [sym_comment] = ACTIONS(47), }, - [621] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2286), - [sym_preproc_directive] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_typedef] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2286), - [anon_sym_auto] = ACTIONS(2286), - [anon_sym_register] = ACTIONS(2286), - [anon_sym_inline] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [anon_sym_restrict] = ACTIONS(2286), - [anon_sym_volatile] = ACTIONS(2286), - [anon_sym__Atomic] = ACTIONS(2286), - [anon_sym_unsigned] = ACTIONS(2286), - [anon_sym_long] = ACTIONS(2286), - [anon_sym_short] = ACTIONS(2286), - [sym_primitive_type] = ACTIONS(2286), - [anon_sym_enum] = ACTIONS(2286), - [anon_sym_struct] = ACTIONS(2286), - [anon_sym_union] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2286), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_do] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_goto] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2286), - [anon_sym_DASH] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_sizeof] = ACTIONS(2286), - [sym_number_literal] = ACTIONS(2288), - [sym_char_literal] = ACTIONS(2288), - [sym_string_literal] = ACTIONS(2288), - [sym_true] = ACTIONS(2286), - [sym_false] = ACTIONS(2286), - [sym_null] = ACTIONS(2286), - [sym_identifier] = ACTIONS(2286), + [636] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_auto] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2307), + [sym_number_literal] = ACTIONS(2309), + [sym_char_literal] = ACTIONS(2309), + [sym_string_literal] = ACTIONS(2309), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2307), [sym_comment] = ACTIONS(39), }, - [622] = { - [sym_identifier] = ACTIONS(2290), + [637] = { + [sym_identifier] = ACTIONS(2311), [sym_comment] = ACTIONS(39), }, - [623] = { - [sym_identifier] = ACTIONS(2292), + [638] = { + [sym_identifier] = ACTIONS(2313), [sym_comment] = ACTIONS(39), }, - [624] = { - [sym_preproc_include] = STATE(855), - [sym_preproc_def] = STATE(855), - [sym_preproc_function_def] = STATE(855), - [sym_preproc_call] = STATE(855), - [sym_preproc_if_in_compound_statement] = STATE(850), - [sym_preproc_ifdef_in_compound_statement] = STATE(851), - [sym_declaration] = STATE(855), - [sym_type_definition] = STATE(855), - [sym__declaration_specifiers] = STATE(852), - [sym_compound_statement] = STATE(855), + [639] = { + [sym_preproc_include] = STATE(872), + [sym_preproc_def] = STATE(872), + [sym_preproc_function_def] = STATE(872), + [sym_preproc_call] = STATE(872), + [sym_preproc_if_in_compound_statement] = STATE(867), + [sym_preproc_ifdef_in_compound_statement] = STATE(868), + [sym_declaration] = STATE(872), + [sym_type_definition] = STATE(872), + [sym__declaration_specifiers] = STATE(869), + [sym_compound_statement] = STATE(872), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -23713,55 +24007,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(855), - [sym_expression_statement] = STATE(855), - [sym_if_statement] = STATE(855), - [sym_switch_statement] = STATE(855), - [sym_case_statement] = STATE(855), - [sym_while_statement] = STATE(855), - [sym_do_statement] = STATE(855), - [sym_for_statement] = STATE(855), - [sym_return_statement] = STATE(855), - [sym_break_statement] = STATE(855), - [sym_continue_statement] = STATE(855), - [sym_goto_statement] = STATE(855), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [sym__empty_declaration] = STATE(855), + [sym_labeled_statement] = STATE(872), + [sym_expression_statement] = STATE(872), + [sym_if_statement] = STATE(872), + [sym_switch_statement] = STATE(872), + [sym_case_statement] = STATE(872), + [sym_while_statement] = STATE(872), + [sym_do_statement] = STATE(872), + [sym_for_statement] = STATE(872), + [sym_return_statement] = STATE(872), + [sym_break_statement] = STATE(872), + [sym_continue_statement] = STATE(872), + [sym_goto_statement] = STATE(872), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [sym__empty_declaration] = STATE(872), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(855), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(872), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(348), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2296), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2298), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2319), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2321), [sym_preproc_directive] = ACTIONS(360), - [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2323), [anon_sym_typedef] = ACTIONS(362), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -23777,280 +24071,280 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2330), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2351), [sym_comment] = ACTIONS(39), }, - [625] = { - [sym_preproc_arg] = ACTIONS(2332), + [640] = { + [sym_preproc_arg] = ACTIONS(2353), [sym_comment] = ACTIONS(47), }, - [626] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_static] = ACTIONS(958), - [anon_sym_auto] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_inline] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym_unsigned] = ACTIONS(958), - [anon_sym_long] = ACTIONS(958), - [anon_sym_short] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(958), - [anon_sym_enum] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_union] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(958), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_goto] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_sizeof] = ACTIONS(958), - [sym_number_literal] = ACTIONS(960), - [sym_char_literal] = ACTIONS(960), - [sym_string_literal] = ACTIONS(960), - [sym_true] = ACTIONS(958), - [sym_false] = ACTIONS(958), - [sym_null] = ACTIONS(958), - [sym_identifier] = ACTIONS(958), + [641] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(970), + [sym_preproc_directive] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_typedef] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_static] = ACTIONS(970), + [anon_sym_auto] = ACTIONS(970), + [anon_sym_register] = ACTIONS(970), + [anon_sym_inline] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [anon_sym_restrict] = ACTIONS(970), + [anon_sym_volatile] = ACTIONS(970), + [anon_sym__Atomic] = ACTIONS(970), + [anon_sym_unsigned] = ACTIONS(970), + [anon_sym_long] = ACTIONS(970), + [anon_sym_short] = ACTIONS(970), + [sym_primitive_type] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_struct] = ACTIONS(970), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_switch] = ACTIONS(970), + [anon_sym_case] = ACTIONS(970), + [anon_sym_default] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_TILDE] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [sym_char_literal] = ACTIONS(972), + [sym_string_literal] = ACTIONS(972), + [sym_true] = ACTIONS(970), + [sym_false] = ACTIONS(970), + [sym_null] = ACTIONS(970), + [sym_identifier] = ACTIONS(970), [sym_comment] = ACTIONS(39), }, - [627] = { - [anon_sym_LPAREN] = ACTIONS(2334), + [642] = { + [anon_sym_LPAREN] = ACTIONS(2355), [sym_comment] = ACTIONS(39), }, - [628] = { - [anon_sym_LPAREN] = ACTIONS(2336), + [643] = { + [anon_sym_LPAREN] = ACTIONS(2357), [sym_comment] = ACTIONS(39), }, - [629] = { - [sym__expression] = STATE(859), - [sym_conditional_expression] = STATE(859), - [sym_assignment_expression] = STATE(859), - [sym_pointer_expression] = STATE(859), - [sym_logical_expression] = STATE(859), - [sym_bitwise_expression] = STATE(859), - [sym_equality_expression] = STATE(859), - [sym_relational_expression] = STATE(859), - [sym_shift_expression] = STATE(859), - [sym_math_expression] = STATE(859), - [sym_cast_expression] = STATE(859), - [sym_sizeof_expression] = STATE(859), - [sym_subscript_expression] = STATE(859), - [sym_call_expression] = STATE(859), - [sym_field_expression] = STATE(859), - [sym_compound_literal_expression] = STATE(859), - [sym_parenthesized_expression] = STATE(859), - [sym_concatenated_string] = STATE(859), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2338), - [sym_char_literal] = ACTIONS(2338), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2340), - [sym_false] = ACTIONS(2340), - [sym_null] = ACTIONS(2340), - [sym_identifier] = ACTIONS(2340), + [644] = { + [sym__expression] = STATE(876), + [sym_conditional_expression] = STATE(876), + [sym_assignment_expression] = STATE(876), + [sym_pointer_expression] = STATE(876), + [sym_logical_expression] = STATE(876), + [sym_bitwise_expression] = STATE(876), + [sym_equality_expression] = STATE(876), + [sym_relational_expression] = STATE(876), + [sym_shift_expression] = STATE(876), + [sym_math_expression] = STATE(876), + [sym_cast_expression] = STATE(876), + [sym_sizeof_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_call_expression] = STATE(876), + [sym_field_expression] = STATE(876), + [sym_compound_literal_expression] = STATE(876), + [sym_parenthesized_expression] = STATE(876), + [sym_concatenated_string] = STATE(876), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2359), + [sym_char_literal] = ACTIONS(2359), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2361), + [sym_false] = ACTIONS(2361), + [sym_null] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2361), [sym_comment] = ACTIONS(39), }, - [630] = { - [anon_sym_COLON] = ACTIONS(2342), + [645] = { + [anon_sym_COLON] = ACTIONS(2363), [sym_comment] = ACTIONS(39), }, - [631] = { - [anon_sym_LPAREN] = ACTIONS(2344), + [646] = { + [anon_sym_LPAREN] = ACTIONS(2365), [sym_comment] = ACTIONS(39), }, - [632] = { - [sym_compound_statement] = STATE(862), - [sym_labeled_statement] = STATE(862), - [sym_expression_statement] = STATE(862), - [sym_if_statement] = STATE(862), - [sym_switch_statement] = STATE(862), - [sym_case_statement] = STATE(862), - [sym_while_statement] = STATE(862), - [sym_do_statement] = STATE(862), - [sym_for_statement] = STATE(862), - [sym_return_statement] = STATE(862), - [sym_break_statement] = STATE(862), - [sym_continue_statement] = STATE(862), - [sym_goto_statement] = STATE(862), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [647] = { + [sym_compound_statement] = STATE(879), + [sym_labeled_statement] = STATE(879), + [sym_expression_statement] = STATE(879), + [sym_if_statement] = STATE(879), + [sym_switch_statement] = STATE(879), + [sym_case_statement] = STATE(879), + [sym_while_statement] = STATE(879), + [sym_do_statement] = STATE(879), + [sym_for_statement] = STATE(879), + [sym_return_statement] = STATE(879), + [sym_break_statement] = STATE(879), + [sym_continue_statement] = STATE(879), + [sym_goto_statement] = STATE(879), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, - [633] = { - [anon_sym_LPAREN] = ACTIONS(2346), + [648] = { + [anon_sym_LPAREN] = ACTIONS(2367), [sym_comment] = ACTIONS(39), }, - [634] = { - [sym__expression] = STATE(865), - [sym_conditional_expression] = STATE(865), - [sym_assignment_expression] = STATE(865), - [sym_pointer_expression] = STATE(865), - [sym_logical_expression] = STATE(865), - [sym_bitwise_expression] = STATE(865), - [sym_equality_expression] = STATE(865), - [sym_relational_expression] = STATE(865), - [sym_shift_expression] = STATE(865), - [sym_math_expression] = STATE(865), - [sym_cast_expression] = STATE(865), - [sym_sizeof_expression] = STATE(865), - [sym_subscript_expression] = STATE(865), - [sym_call_expression] = STATE(865), - [sym_field_expression] = STATE(865), - [sym_compound_literal_expression] = STATE(865), - [sym_parenthesized_expression] = STATE(865), - [sym_concatenated_string] = STATE(865), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(2348), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2350), - [sym_char_literal] = ACTIONS(2350), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2352), - [sym_false] = ACTIONS(2352), - [sym_null] = ACTIONS(2352), - [sym_identifier] = ACTIONS(2352), + [649] = { + [sym__expression] = STATE(882), + [sym_conditional_expression] = STATE(882), + [sym_assignment_expression] = STATE(882), + [sym_pointer_expression] = STATE(882), + [sym_logical_expression] = STATE(882), + [sym_bitwise_expression] = STATE(882), + [sym_equality_expression] = STATE(882), + [sym_relational_expression] = STATE(882), + [sym_shift_expression] = STATE(882), + [sym_math_expression] = STATE(882), + [sym_cast_expression] = STATE(882), + [sym_sizeof_expression] = STATE(882), + [sym_subscript_expression] = STATE(882), + [sym_call_expression] = STATE(882), + [sym_field_expression] = STATE(882), + [sym_compound_literal_expression] = STATE(882), + [sym_parenthesized_expression] = STATE(882), + [sym_concatenated_string] = STATE(882), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2371), + [sym_char_literal] = ACTIONS(2371), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2373), + [sym_false] = ACTIONS(2373), + [sym_null] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2373), [sym_comment] = ACTIONS(39), }, - [635] = { - [anon_sym_SEMI] = ACTIONS(2354), + [650] = { + [anon_sym_SEMI] = ACTIONS(2375), [sym_comment] = ACTIONS(39), }, - [636] = { - [anon_sym_SEMI] = ACTIONS(2356), + [651] = { + [anon_sym_SEMI] = ACTIONS(2377), [sym_comment] = ACTIONS(39), }, - [637] = { - [sym_identifier] = ACTIONS(2358), + [652] = { + [sym_identifier] = ACTIONS(2379), [sym_comment] = ACTIONS(39), }, - [638] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1054), + [653] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1066), [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_static] = ACTIONS(86), [anon_sym_auto] = ACTIONS(86), [anon_sym_register] = ACTIONS(86), @@ -24059,239 +24353,239 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(86), [anon_sym_volatile] = ACTIONS(86), [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(2381), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [639] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1064), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [anon_sym_struct] = ACTIONS(1062), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_switch] = ACTIONS(1062), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_goto] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1064), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_sizeof] = ACTIONS(1062), - [sym_number_literal] = ACTIONS(1064), - [sym_char_literal] = ACTIONS(1064), - [sym_string_literal] = ACTIONS(1064), - [sym_true] = ACTIONS(1062), - [sym_false] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1062), + [654] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_case] = ACTIONS(1074), + [anon_sym_default] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_sizeof] = ACTIONS(1074), + [sym_number_literal] = ACTIONS(1076), + [sym_char_literal] = ACTIONS(1076), + [sym_string_literal] = ACTIONS(1076), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1074), [sym_comment] = ACTIONS(39), }, - [640] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1068), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1066), - [sym_preproc_directive] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_typedef] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_static] = ACTIONS(1066), - [anon_sym_auto] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_inline] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [anon_sym_restrict] = ACTIONS(1066), - [anon_sym_volatile] = ACTIONS(1066), - [anon_sym__Atomic] = ACTIONS(1066), - [anon_sym_unsigned] = ACTIONS(1066), - [anon_sym_long] = ACTIONS(1066), - [anon_sym_short] = ACTIONS(1066), - [sym_primitive_type] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1066), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_switch] = ACTIONS(1066), - [anon_sym_case] = ACTIONS(1066), - [anon_sym_default] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_goto] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1068), - [anon_sym_sizeof] = ACTIONS(1066), - [sym_number_literal] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1068), - [sym_string_literal] = ACTIONS(1068), - [sym_true] = ACTIONS(1066), - [sym_false] = ACTIONS(1066), - [sym_null] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1066), + [655] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1080), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [sym_char_literal] = ACTIONS(1080), + [sym_string_literal] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1078), [sym_comment] = ACTIONS(39), }, - [641] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2362), + [656] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2383), [sym_comment] = ACTIONS(39), }, - [642] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2364), + [657] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2385), [sym_comment] = ACTIONS(39), }, - [643] = { - [sym__declarator] = STATE(872), - [sym_pointer_declarator] = STATE(872), - [sym_function_declarator] = STATE(872), - [sym_array_declarator] = STATE(872), - [sym_init_declarator] = STATE(160), + [658] = { + [sym__declarator] = STATE(889), + [sym_pointer_declarator] = STATE(889), + [sym_function_declarator] = STATE(889), + [sym_array_declarator] = STATE(889), + [sym_init_declarator] = STATE(161), [anon_sym_LPAREN] = ACTIONS(90), [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_STAR] = ACTIONS(520), - [sym_identifier] = ACTIONS(2366), + [anon_sym_STAR] = ACTIONS(524), + [sym_identifier] = ACTIONS(2387), [sym_comment] = ACTIONS(39), }, - [644] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_STAR_EQ] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1086), - [anon_sym_PERCENT_EQ] = ACTIONS(1086), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - [anon_sym_LT_LT_EQ] = ACTIONS(1086), - [anon_sym_GT_GT_EQ] = ACTIONS(1086), - [anon_sym_AMP_EQ] = ACTIONS(1086), - [anon_sym_CARET_EQ] = ACTIONS(1086), - [anon_sym_PIPE_EQ] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [659] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1096), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [645] = { - [anon_sym_SEMI] = ACTIONS(2368), + [660] = { + [anon_sym_SEMI] = ACTIONS(2389), [sym_comment] = ACTIONS(39), }, - [646] = { - [sym_preproc_include] = STATE(877), - [sym_preproc_def] = STATE(877), - [sym_preproc_function_def] = STATE(877), - [sym_preproc_call] = STATE(877), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(875), - [sym_preproc_elif_in_compound_statement] = STATE(876), - [sym_declaration] = STATE(877), - [sym_type_definition] = STATE(877), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(877), + [661] = { + [sym_preproc_include] = STATE(894), + [sym_preproc_def] = STATE(894), + [sym_preproc_function_def] = STATE(894), + [sym_preproc_call] = STATE(894), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(892), + [sym_preproc_elif_in_compound_statement] = STATE(893), + [sym_declaration] = STATE(894), + [sym_type_definition] = STATE(894), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(894), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -24299,57 +24593,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(877), + [sym_labeled_statement] = STATE(894), + [sym_expression_statement] = STATE(894), + [sym_if_statement] = STATE(894), + [sym_switch_statement] = STATE(894), + [sym_case_statement] = STATE(894), + [sym_while_statement] = STATE(894), + [sym_do_statement] = STATE(894), + [sym_for_statement] = STATE(894), + [sym_return_statement] = STATE(894), + [sym_break_statement] = STATE(894), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(894), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(894), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(877), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(894), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2370), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2391), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -24365,112 +24659,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [647] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2372), - [anon_sym_LPAREN] = ACTIONS(2374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2372), - [sym_preproc_directive] = ACTIONS(2372), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_typedef] = ACTIONS(2372), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2372), - [anon_sym_auto] = ACTIONS(2372), - [anon_sym_register] = ACTIONS(2372), - [anon_sym_inline] = ACTIONS(2372), - [anon_sym_const] = ACTIONS(2372), - [anon_sym_restrict] = ACTIONS(2372), - [anon_sym_volatile] = ACTIONS(2372), - [anon_sym__Atomic] = ACTIONS(2372), - [anon_sym_unsigned] = ACTIONS(2372), - [anon_sym_long] = ACTIONS(2372), - [anon_sym_short] = ACTIONS(2372), - [sym_primitive_type] = ACTIONS(2372), - [anon_sym_enum] = ACTIONS(2372), - [anon_sym_struct] = ACTIONS(2372), - [anon_sym_union] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_switch] = ACTIONS(2372), - [anon_sym_case] = ACTIONS(2372), - [anon_sym_default] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_do] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2372), - [anon_sym_AMP] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_sizeof] = ACTIONS(2372), - [sym_number_literal] = ACTIONS(2374), - [sym_char_literal] = ACTIONS(2374), - [sym_string_literal] = ACTIONS(2374), - [sym_true] = ACTIONS(2372), - [sym_false] = ACTIONS(2372), - [sym_null] = ACTIONS(2372), - [sym_identifier] = ACTIONS(2372), + [662] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2393), + [sym_preproc_directive] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_typedef] = ACTIONS(2393), + [anon_sym_extern] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_RBRACE] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_auto] = ACTIONS(2393), + [anon_sym_register] = ACTIONS(2393), + [anon_sym_inline] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_restrict] = ACTIONS(2393), + [anon_sym_volatile] = ACTIONS(2393), + [anon_sym__Atomic] = ACTIONS(2393), + [anon_sym_unsigned] = ACTIONS(2393), + [anon_sym_long] = ACTIONS(2393), + [anon_sym_short] = ACTIONS(2393), + [sym_primitive_type] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_switch] = ACTIONS(2393), + [anon_sym_case] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_goto] = ACTIONS(2393), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_sizeof] = ACTIONS(2393), + [sym_number_literal] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [sym_string_literal] = ACTIONS(2395), + [sym_true] = ACTIONS(2393), + [sym_false] = ACTIONS(2393), + [sym_null] = ACTIONS(2393), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(39), }, - [648] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2376), + [663] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2397), [sym_comment] = ACTIONS(39), }, - [649] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2378), + [664] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2399), [sym_comment] = ACTIONS(39), }, - [650] = { - [sym_preproc_include] = STATE(877), - [sym_preproc_def] = STATE(877), - [sym_preproc_function_def] = STATE(877), - [sym_preproc_call] = STATE(877), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(881), - [sym_preproc_elif_in_compound_statement] = STATE(882), - [sym_declaration] = STATE(877), - [sym_type_definition] = STATE(877), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(877), + [665] = { + [sym_preproc_include] = STATE(894), + [sym_preproc_def] = STATE(894), + [sym_preproc_function_def] = STATE(894), + [sym_preproc_call] = STATE(894), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(898), + [sym_preproc_elif_in_compound_statement] = STATE(899), + [sym_declaration] = STATE(894), + [sym_type_definition] = STATE(894), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(894), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -24478,57 +24772,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(877), + [sym_labeled_statement] = STATE(894), + [sym_expression_statement] = STATE(894), + [sym_if_statement] = STATE(894), + [sym_switch_statement] = STATE(894), + [sym_case_statement] = STATE(894), + [sym_while_statement] = STATE(894), + [sym_do_statement] = STATE(894), + [sym_for_statement] = STATE(894), + [sym_return_statement] = STATE(894), + [sym_break_statement] = STATE(894), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(894), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(894), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(877), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(894), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2380), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -24544,112 +24838,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [651] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2384), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2382), - [sym_preproc_directive] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_typedef] = ACTIONS(2382), - [anon_sym_extern] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_auto] = ACTIONS(2382), - [anon_sym_register] = ACTIONS(2382), - [anon_sym_inline] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_restrict] = ACTIONS(2382), - [anon_sym_volatile] = ACTIONS(2382), - [anon_sym__Atomic] = ACTIONS(2382), - [anon_sym_unsigned] = ACTIONS(2382), - [anon_sym_long] = ACTIONS(2382), - [anon_sym_short] = ACTIONS(2382), - [sym_primitive_type] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(2382), - [anon_sym_union] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_case] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_goto] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_TILDE] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2384), - [anon_sym_PLUS_PLUS] = ACTIONS(2384), - [anon_sym_sizeof] = ACTIONS(2382), - [sym_number_literal] = ACTIONS(2384), - [sym_char_literal] = ACTIONS(2384), - [sym_string_literal] = ACTIONS(2384), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_identifier] = ACTIONS(2382), + [666] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2403), + [sym_preproc_directive] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_typedef] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_auto] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_restrict] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym__Atomic] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [sym_primitive_type] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_case] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_goto] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_sizeof] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2405), + [sym_char_literal] = ACTIONS(2405), + [sym_string_literal] = ACTIONS(2405), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), + [sym_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(39), }, - [652] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2386), + [667] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2407), [sym_comment] = ACTIONS(39), }, - [653] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2388), + [668] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2409), [sym_comment] = ACTIONS(39), }, - [654] = { - [sym_preproc_include] = STATE(877), - [sym_preproc_def] = STATE(877), - [sym_preproc_function_def] = STATE(877), - [sym_preproc_call] = STATE(877), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(886), - [sym_preproc_elif_in_compound_statement] = STATE(887), - [sym_declaration] = STATE(877), - [sym_type_definition] = STATE(877), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(877), + [669] = { + [sym_preproc_include] = STATE(894), + [sym_preproc_def] = STATE(894), + [sym_preproc_function_def] = STATE(894), + [sym_preproc_call] = STATE(894), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(903), + [sym_preproc_elif_in_compound_statement] = STATE(904), + [sym_declaration] = STATE(894), + [sym_type_definition] = STATE(894), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(894), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -24657,57 +24951,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(877), + [sym_labeled_statement] = STATE(894), + [sym_expression_statement] = STATE(894), + [sym_if_statement] = STATE(894), + [sym_switch_statement] = STATE(894), + [sym_case_statement] = STATE(894), + [sym_while_statement] = STATE(894), + [sym_do_statement] = STATE(894), + [sym_for_statement] = STATE(894), + [sym_return_statement] = STATE(894), + [sym_break_statement] = STATE(894), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(894), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(894), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(877), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(894), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2390), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2411), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -24723,66 +25017,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [655] = { + [670] = { [sym_type_qualifier] = STATE(115), [sym__type_specifier] = STATE(113), [sym_sized_type_specifier] = STATE(113), [sym_enum_specifier] = STATE(113), [sym_struct_specifier] = STATE(113), [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(888), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(905), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), [sym_macro_type_specifier] = STATE(113), [aux_sym_type_definition_repeat1] = STATE(115), [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -24794,373 +25088,373 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [656] = { - [sym__expression] = STATE(400), - [sym_conditional_expression] = STATE(400), - [sym_assignment_expression] = STATE(400), - [sym_pointer_expression] = STATE(400), - [sym_logical_expression] = STATE(400), - [sym_bitwise_expression] = STATE(400), - [sym_equality_expression] = STATE(400), - [sym_relational_expression] = STATE(400), - [sym_shift_expression] = STATE(400), - [sym_math_expression] = STATE(400), - [sym_cast_expression] = STATE(400), - [sym_sizeof_expression] = STATE(400), - [sym_subscript_expression] = STATE(400), - [sym_call_expression] = STATE(400), - [sym_field_expression] = STATE(400), - [sym_compound_literal_expression] = STATE(400), - [sym_parenthesized_expression] = STATE(400), - [sym_concatenated_string] = STATE(400), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(966), - [sym_char_literal] = ACTIONS(966), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(968), - [sym_false] = ACTIONS(968), - [sym_null] = ACTIONS(968), - [sym_identifier] = ACTIONS(968), + [671] = { + [sym__expression] = STATE(410), + [sym_conditional_expression] = STATE(410), + [sym_assignment_expression] = STATE(410), + [sym_pointer_expression] = STATE(410), + [sym_logical_expression] = STATE(410), + [sym_bitwise_expression] = STATE(410), + [sym_equality_expression] = STATE(410), + [sym_relational_expression] = STATE(410), + [sym_shift_expression] = STATE(410), + [sym_math_expression] = STATE(410), + [sym_cast_expression] = STATE(410), + [sym_sizeof_expression] = STATE(410), + [sym_subscript_expression] = STATE(410), + [sym_call_expression] = STATE(410), + [sym_field_expression] = STATE(410), + [sym_compound_literal_expression] = STATE(410), + [sym_parenthesized_expression] = STATE(410), + [sym_concatenated_string] = STATE(410), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(978), + [sym_char_literal] = ACTIONS(978), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(980), + [sym_false] = ACTIONS(980), + [sym_null] = ACTIONS(980), + [sym_identifier] = ACTIONS(980), [sym_comment] = ACTIONS(39), }, - [657] = { - [sym__expression] = STATE(427), - [sym_conditional_expression] = STATE(427), - [sym_assignment_expression] = STATE(427), - [sym_pointer_expression] = STATE(427), - [sym_logical_expression] = STATE(427), - [sym_bitwise_expression] = STATE(427), - [sym_equality_expression] = STATE(427), - [sym_relational_expression] = STATE(427), - [sym_shift_expression] = STATE(427), - [sym_math_expression] = STATE(427), - [sym_cast_expression] = STATE(427), - [sym_sizeof_expression] = STATE(427), - [sym_subscript_expression] = STATE(427), - [sym_call_expression] = STATE(427), - [sym_field_expression] = STATE(427), - [sym_compound_literal_expression] = STATE(427), - [sym_parenthesized_expression] = STATE(427), - [sym_concatenated_string] = STATE(427), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1026), - [sym_char_literal] = ACTIONS(1026), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(1028), - [sym_false] = ACTIONS(1028), - [sym_null] = ACTIONS(1028), - [sym_identifier] = ACTIONS(1028), + [672] = { + [sym__expression] = STATE(437), + [sym_conditional_expression] = STATE(437), + [sym_assignment_expression] = STATE(437), + [sym_pointer_expression] = STATE(437), + [sym_logical_expression] = STATE(437), + [sym_bitwise_expression] = STATE(437), + [sym_equality_expression] = STATE(437), + [sym_relational_expression] = STATE(437), + [sym_shift_expression] = STATE(437), + [sym_math_expression] = STATE(437), + [sym_cast_expression] = STATE(437), + [sym_sizeof_expression] = STATE(437), + [sym_subscript_expression] = STATE(437), + [sym_call_expression] = STATE(437), + [sym_field_expression] = STATE(437), + [sym_compound_literal_expression] = STATE(437), + [sym_parenthesized_expression] = STATE(437), + [sym_concatenated_string] = STATE(437), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(1038), + [sym_char_literal] = ACTIONS(1038), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(1040), + [sym_false] = ACTIONS(1040), + [sym_null] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1040), [sym_comment] = ACTIONS(39), }, - [658] = { - [sym__expression] = STATE(428), - [sym_conditional_expression] = STATE(428), - [sym_assignment_expression] = STATE(428), - [sym_pointer_expression] = STATE(428), - [sym_logical_expression] = STATE(428), - [sym_bitwise_expression] = STATE(428), - [sym_equality_expression] = STATE(428), - [sym_relational_expression] = STATE(428), - [sym_shift_expression] = STATE(428), - [sym_math_expression] = STATE(428), - [sym_cast_expression] = STATE(428), - [sym_sizeof_expression] = STATE(428), - [sym_subscript_expression] = STATE(428), - [sym_call_expression] = STATE(428), - [sym_field_expression] = STATE(428), - [sym_compound_literal_expression] = STATE(428), - [sym_parenthesized_expression] = STATE(428), - [sym_concatenated_string] = STATE(428), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1030), - [sym_char_literal] = ACTIONS(1030), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_identifier] = ACTIONS(1032), + [673] = { + [sym__expression] = STATE(438), + [sym_conditional_expression] = STATE(438), + [sym_assignment_expression] = STATE(438), + [sym_pointer_expression] = STATE(438), + [sym_logical_expression] = STATE(438), + [sym_bitwise_expression] = STATE(438), + [sym_equality_expression] = STATE(438), + [sym_relational_expression] = STATE(438), + [sym_shift_expression] = STATE(438), + [sym_math_expression] = STATE(438), + [sym_cast_expression] = STATE(438), + [sym_sizeof_expression] = STATE(438), + [sym_subscript_expression] = STATE(438), + [sym_call_expression] = STATE(438), + [sym_field_expression] = STATE(438), + [sym_compound_literal_expression] = STATE(438), + [sym_parenthesized_expression] = STATE(438), + [sym_concatenated_string] = STATE(438), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(1042), + [sym_char_literal] = ACTIONS(1042), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(1044), + [sym_false] = ACTIONS(1044), + [sym_null] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1044), [sym_comment] = ACTIONS(39), }, - [659] = { - [sym__expression] = STATE(429), - [sym_conditional_expression] = STATE(429), - [sym_assignment_expression] = STATE(429), - [sym_pointer_expression] = STATE(429), - [sym_logical_expression] = STATE(429), - [sym_bitwise_expression] = STATE(429), - [sym_equality_expression] = STATE(429), - [sym_relational_expression] = STATE(429), - [sym_shift_expression] = STATE(429), - [sym_math_expression] = STATE(429), - [sym_cast_expression] = STATE(429), - [sym_sizeof_expression] = STATE(429), - [sym_subscript_expression] = STATE(429), - [sym_call_expression] = STATE(429), - [sym_field_expression] = STATE(429), - [sym_compound_literal_expression] = STATE(429), - [sym_parenthesized_expression] = STATE(429), - [sym_concatenated_string] = STATE(429), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1034), - [sym_char_literal] = ACTIONS(1034), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(1036), - [sym_false] = ACTIONS(1036), - [sym_null] = ACTIONS(1036), - [sym_identifier] = ACTIONS(1036), + [674] = { + [sym__expression] = STATE(439), + [sym_conditional_expression] = STATE(439), + [sym_assignment_expression] = STATE(439), + [sym_pointer_expression] = STATE(439), + [sym_logical_expression] = STATE(439), + [sym_bitwise_expression] = STATE(439), + [sym_equality_expression] = STATE(439), + [sym_relational_expression] = STATE(439), + [sym_shift_expression] = STATE(439), + [sym_math_expression] = STATE(439), + [sym_cast_expression] = STATE(439), + [sym_sizeof_expression] = STATE(439), + [sym_subscript_expression] = STATE(439), + [sym_call_expression] = STATE(439), + [sym_field_expression] = STATE(439), + [sym_compound_literal_expression] = STATE(439), + [sym_parenthesized_expression] = STATE(439), + [sym_concatenated_string] = STATE(439), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(1046), + [sym_char_literal] = ACTIONS(1046), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(1048), + [sym_false] = ACTIONS(1048), + [sym_null] = ACTIONS(1048), + [sym_identifier] = ACTIONS(1048), [sym_comment] = ACTIONS(39), }, - [660] = { - [sym__expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_assignment_expression] = STATE(890), - [sym_pointer_expression] = STATE(890), - [sym_logical_expression] = STATE(890), - [sym_bitwise_expression] = STATE(890), - [sym_equality_expression] = STATE(890), - [sym_relational_expression] = STATE(890), - [sym_shift_expression] = STATE(890), - [sym_math_expression] = STATE(890), - [sym_cast_expression] = STATE(890), - [sym_sizeof_expression] = STATE(890), - [sym_subscript_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_field_expression] = STATE(890), - [sym_compound_literal_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_concatenated_string] = STATE(890), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2394), - [sym_char_literal] = ACTIONS(2394), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2396), - [sym_false] = ACTIONS(2396), - [sym_null] = ACTIONS(2396), - [sym_identifier] = ACTIONS(2396), + [675] = { + [sym__expression] = STATE(907), + [sym_conditional_expression] = STATE(907), + [sym_assignment_expression] = STATE(907), + [sym_pointer_expression] = STATE(907), + [sym_logical_expression] = STATE(907), + [sym_bitwise_expression] = STATE(907), + [sym_equality_expression] = STATE(907), + [sym_relational_expression] = STATE(907), + [sym_shift_expression] = STATE(907), + [sym_math_expression] = STATE(907), + [sym_cast_expression] = STATE(907), + [sym_sizeof_expression] = STATE(907), + [sym_subscript_expression] = STATE(907), + [sym_call_expression] = STATE(907), + [sym_field_expression] = STATE(907), + [sym_compound_literal_expression] = STATE(907), + [sym_parenthesized_expression] = STATE(907), + [sym_concatenated_string] = STATE(907), + [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2415), + [sym_char_literal] = ACTIONS(2415), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2417), + [sym_false] = ACTIONS(2417), + [sym_null] = ACTIONS(2417), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(39), }, - [661] = { - [aux_sym_concatenated_string_repeat1] = STATE(891), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_string_literal] = ACTIONS(2398), + [676] = { + [aux_sym_concatenated_string_repeat1] = STATE(908), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), + [sym_string_literal] = ACTIONS(2419), [sym_comment] = ACTIONS(39), }, - [662] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [677] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2421), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [663] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2430), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [678] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2451), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [664] = { - [anon_sym_RPAREN] = ACTIONS(2432), + [679] = { + [anon_sym_RPAREN] = ACTIONS(2453), [sym_comment] = ACTIONS(39), }, - [665] = { + [680] = { [sym_type_qualifier] = STATE(115), [sym__type_specifier] = STATE(113), [sym_sized_type_specifier] = STATE(113), [sym_enum_specifier] = STATE(113), [sym_struct_specifier] = STATE(113), [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(907), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(924), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), [sym_macro_type_specifier] = STATE(113), [aux_sym_type_definition_repeat1] = STATE(115), [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), [anon_sym_const] = ACTIONS(25), [anon_sym_restrict] = ACTIONS(25), [anon_sym_volatile] = ACTIONS(25), @@ -25172,187 +25466,187 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, - [666] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1693), - [anon_sym_COLON] = ACTIONS(1691), - [anon_sym_QMARK] = ACTIONS(1691), - [anon_sym_STAR_EQ] = ACTIONS(1691), - [anon_sym_SLASH_EQ] = ACTIONS(1691), - [anon_sym_PERCENT_EQ] = ACTIONS(1691), - [anon_sym_PLUS_EQ] = ACTIONS(1691), - [anon_sym_DASH_EQ] = ACTIONS(1691), - [anon_sym_LT_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_GT_EQ] = ACTIONS(1691), - [anon_sym_AMP_EQ] = ACTIONS(1691), - [anon_sym_CARET_EQ] = ACTIONS(1691), - [anon_sym_PIPE_EQ] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1693), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(1693), - [anon_sym_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_EQ] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [681] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1707), + [anon_sym_COLON] = ACTIONS(1705), + [anon_sym_QMARK] = ACTIONS(1705), + [anon_sym_STAR_EQ] = ACTIONS(1705), + [anon_sym_SLASH_EQ] = ACTIONS(1705), + [anon_sym_PERCENT_EQ] = ACTIONS(1705), + [anon_sym_PLUS_EQ] = ACTIONS(1705), + [anon_sym_DASH_EQ] = ACTIONS(1705), + [anon_sym_LT_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_GT_EQ] = ACTIONS(1705), + [anon_sym_AMP_EQ] = ACTIONS(1705), + [anon_sym_CARET_EQ] = ACTIONS(1705), + [anon_sym_PIPE_EQ] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_EQ_EQ] = ACTIONS(1705), + [anon_sym_BANG_EQ] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_EQ] = ACTIONS(1705), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [667] = { - [aux_sym_concatenated_string_repeat1] = STATE(908), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_EQ] = ACTIONS(1697), - [anon_sym_COLON] = ACTIONS(1695), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_STAR_EQ] = ACTIONS(1695), - [anon_sym_SLASH_EQ] = ACTIONS(1695), - [anon_sym_PERCENT_EQ] = ACTIONS(1695), - [anon_sym_PLUS_EQ] = ACTIONS(1695), - [anon_sym_DASH_EQ] = ACTIONS(1695), - [anon_sym_LT_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_GT_EQ] = ACTIONS(1695), - [anon_sym_AMP_EQ] = ACTIONS(1695), - [anon_sym_CARET_EQ] = ACTIONS(1695), - [anon_sym_PIPE_EQ] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_PIPE_PIPE] = ACTIONS(1695), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_GT] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1697), - [anon_sym_PERCENT] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_DOT] = ACTIONS(1695), - [anon_sym_DASH_GT] = ACTIONS(1695), - [sym_string_literal] = ACTIONS(2434), + [682] = { + [aux_sym_concatenated_string_repeat1] = STATE(925), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1711), + [anon_sym_COLON] = ACTIONS(1709), + [anon_sym_QMARK] = ACTIONS(1709), + [anon_sym_STAR_EQ] = ACTIONS(1709), + [anon_sym_SLASH_EQ] = ACTIONS(1709), + [anon_sym_PERCENT_EQ] = ACTIONS(1709), + [anon_sym_PLUS_EQ] = ACTIONS(1709), + [anon_sym_DASH_EQ] = ACTIONS(1709), + [anon_sym_LT_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_GT_EQ] = ACTIONS(1709), + [anon_sym_AMP_EQ] = ACTIONS(1709), + [anon_sym_CARET_EQ] = ACTIONS(1709), + [anon_sym_PIPE_EQ] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PIPE_PIPE] = ACTIONS(1709), + [anon_sym_AMP_AMP] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1709), + [anon_sym_LT_LT] = ACTIONS(1711), + [anon_sym_GT_GT] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_PERCENT] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_DASH_GT] = ACTIONS(1709), + [sym_string_literal] = ACTIONS(2455), [sym_comment] = ACTIONS(39), }, - [668] = { - [sym__expression] = STATE(706), - [sym_conditional_expression] = STATE(706), - [sym_assignment_expression] = STATE(706), - [sym_pointer_expression] = STATE(706), - [sym_logical_expression] = STATE(706), - [sym_bitwise_expression] = STATE(706), - [sym_equality_expression] = STATE(706), - [sym_relational_expression] = STATE(706), - [sym_shift_expression] = STATE(706), - [sym_math_expression] = STATE(706), - [sym_cast_expression] = STATE(706), - [sym_sizeof_expression] = STATE(706), - [sym_subscript_expression] = STATE(706), - [sym_call_expression] = STATE(706), - [sym_field_expression] = STATE(706), - [sym_compound_literal_expression] = STATE(706), - [sym_parenthesized_expression] = STATE(706), - [sym_concatenated_string] = STATE(706), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(1717), - [sym_char_literal] = ACTIONS(1717), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1719), + [683] = { + [sym__expression] = STATE(721), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(721), + [sym_logical_expression] = STATE(721), + [sym_bitwise_expression] = STATE(721), + [sym_equality_expression] = STATE(721), + [sym_relational_expression] = STATE(721), + [sym_shift_expression] = STATE(721), + [sym_math_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(721), + [sym_call_expression] = STATE(721), + [sym_field_expression] = STATE(721), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(721), + [sym_concatenated_string] = STATE(721), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(1731), + [sym_char_literal] = ACTIONS(1731), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_null] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1733), [sym_comment] = ACTIONS(39), }, - [669] = { - [sym__expression] = STATE(909), - [sym_conditional_expression] = STATE(909), - [sym_assignment_expression] = STATE(909), - [sym_pointer_expression] = STATE(909), - [sym_logical_expression] = STATE(909), - [sym_bitwise_expression] = STATE(909), - [sym_equality_expression] = STATE(909), - [sym_relational_expression] = STATE(909), - [sym_shift_expression] = STATE(909), - [sym_math_expression] = STATE(909), - [sym_cast_expression] = STATE(909), - [sym_sizeof_expression] = STATE(909), - [sym_subscript_expression] = STATE(909), - [sym_call_expression] = STATE(909), - [sym_field_expression] = STATE(909), - [sym_compound_literal_expression] = STATE(909), - [sym_parenthesized_expression] = STATE(909), - [sym_concatenated_string] = STATE(909), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2436), - [sym_char_literal] = ACTIONS(2436), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2438), - [sym_false] = ACTIONS(2438), - [sym_null] = ACTIONS(2438), - [sym_identifier] = ACTIONS(2438), + [684] = { + [sym__expression] = STATE(926), + [sym_conditional_expression] = STATE(926), + [sym_assignment_expression] = STATE(926), + [sym_pointer_expression] = STATE(926), + [sym_logical_expression] = STATE(926), + [sym_bitwise_expression] = STATE(926), + [sym_equality_expression] = STATE(926), + [sym_relational_expression] = STATE(926), + [sym_shift_expression] = STATE(926), + [sym_math_expression] = STATE(926), + [sym_cast_expression] = STATE(926), + [sym_sizeof_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_call_expression] = STATE(926), + [sym_field_expression] = STATE(926), + [sym_compound_literal_expression] = STATE(926), + [sym_parenthesized_expression] = STATE(926), + [sym_concatenated_string] = STATE(926), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2457), + [sym_char_literal] = ACTIONS(2457), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2459), + [sym_false] = ACTIONS(2459), + [sym_null] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2459), [sym_comment] = ACTIONS(39), }, - [670] = { - [sym_declaration] = STATE(910), - [sym_type_definition] = STATE(910), - [sym__declaration_specifiers] = STATE(683), - [sym_compound_statement] = STATE(910), + [685] = { + [sym_declaration] = STATE(927), + [sym_type_definition] = STATE(927), + [sym__declaration_specifiers] = STATE(698), + [sym_compound_statement] = STATE(927), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -25360,46 +25654,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(910), - [sym_expression_statement] = STATE(910), - [sym_if_statement] = STATE(910), - [sym_switch_statement] = STATE(910), - [sym_case_statement] = STATE(910), - [sym_while_statement] = STATE(910), - [sym_do_statement] = STATE(910), - [sym_for_statement] = STATE(910), - [sym_return_statement] = STATE(910), - [sym_break_statement] = STATE(910), - [sym_continue_statement] = STATE(910), - [sym_goto_statement] = STATE(910), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), + [sym_labeled_statement] = STATE(927), + [sym_expression_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_switch_statement] = STATE(927), + [sym_case_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_do_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_return_statement] = STATE(927), + [sym_break_statement] = STATE(927), + [sym_continue_statement] = STATE(927), + [sym_goto_statement] = STATE(927), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -25415,422 +25709,422 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1645), [sym_comment] = ACTIONS(39), }, - [671] = { - [sym__expression] = STATE(911), - [sym_conditional_expression] = STATE(911), - [sym_assignment_expression] = STATE(911), - [sym_pointer_expression] = STATE(911), - [sym_logical_expression] = STATE(911), - [sym_bitwise_expression] = STATE(911), - [sym_equality_expression] = STATE(911), - [sym_relational_expression] = STATE(911), - [sym_shift_expression] = STATE(911), - [sym_math_expression] = STATE(911), - [sym_cast_expression] = STATE(911), - [sym_sizeof_expression] = STATE(911), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(911), - [sym_parenthesized_expression] = STATE(911), - [sym_concatenated_string] = STATE(911), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2440), - [sym_char_literal] = ACTIONS(2440), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_identifier] = ACTIONS(2442), + [686] = { + [sym__expression] = STATE(928), + [sym_conditional_expression] = STATE(928), + [sym_assignment_expression] = STATE(928), + [sym_pointer_expression] = STATE(928), + [sym_logical_expression] = STATE(928), + [sym_bitwise_expression] = STATE(928), + [sym_equality_expression] = STATE(928), + [sym_relational_expression] = STATE(928), + [sym_shift_expression] = STATE(928), + [sym_math_expression] = STATE(928), + [sym_cast_expression] = STATE(928), + [sym_sizeof_expression] = STATE(928), + [sym_subscript_expression] = STATE(928), + [sym_call_expression] = STATE(928), + [sym_field_expression] = STATE(928), + [sym_compound_literal_expression] = STATE(928), + [sym_parenthesized_expression] = STATE(928), + [sym_concatenated_string] = STATE(928), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2461), + [sym_char_literal] = ACTIONS(2461), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2463), + [sym_false] = ACTIONS(2463), + [sym_null] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2463), [sym_comment] = ACTIONS(39), }, - [672] = { - [sym__expression] = STATE(912), - [sym_conditional_expression] = STATE(912), - [sym_assignment_expression] = STATE(912), - [sym_pointer_expression] = STATE(912), - [sym_logical_expression] = STATE(912), - [sym_bitwise_expression] = STATE(912), - [sym_equality_expression] = STATE(912), - [sym_relational_expression] = STATE(912), - [sym_shift_expression] = STATE(912), - [sym_math_expression] = STATE(912), - [sym_cast_expression] = STATE(912), - [sym_sizeof_expression] = STATE(912), - [sym_subscript_expression] = STATE(912), - [sym_call_expression] = STATE(912), - [sym_field_expression] = STATE(912), - [sym_compound_literal_expression] = STATE(912), - [sym_parenthesized_expression] = STATE(912), - [sym_concatenated_string] = STATE(912), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2444), - [sym_char_literal] = ACTIONS(2444), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2446), - [sym_false] = ACTIONS(2446), - [sym_null] = ACTIONS(2446), - [sym_identifier] = ACTIONS(2446), + [687] = { + [sym__expression] = STATE(929), + [sym_conditional_expression] = STATE(929), + [sym_assignment_expression] = STATE(929), + [sym_pointer_expression] = STATE(929), + [sym_logical_expression] = STATE(929), + [sym_bitwise_expression] = STATE(929), + [sym_equality_expression] = STATE(929), + [sym_relational_expression] = STATE(929), + [sym_shift_expression] = STATE(929), + [sym_math_expression] = STATE(929), + [sym_cast_expression] = STATE(929), + [sym_sizeof_expression] = STATE(929), + [sym_subscript_expression] = STATE(929), + [sym_call_expression] = STATE(929), + [sym_field_expression] = STATE(929), + [sym_compound_literal_expression] = STATE(929), + [sym_parenthesized_expression] = STATE(929), + [sym_concatenated_string] = STATE(929), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2465), + [sym_char_literal] = ACTIONS(2465), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2467), + [sym_false] = ACTIONS(2467), + [sym_null] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2467), [sym_comment] = ACTIONS(39), }, - [673] = { - [sym__expression] = STATE(913), - [sym_conditional_expression] = STATE(913), - [sym_assignment_expression] = STATE(913), - [sym_pointer_expression] = STATE(913), - [sym_logical_expression] = STATE(913), - [sym_bitwise_expression] = STATE(913), - [sym_equality_expression] = STATE(913), - [sym_relational_expression] = STATE(913), - [sym_shift_expression] = STATE(913), - [sym_math_expression] = STATE(913), - [sym_cast_expression] = STATE(913), - [sym_sizeof_expression] = STATE(913), - [sym_subscript_expression] = STATE(913), - [sym_call_expression] = STATE(913), - [sym_field_expression] = STATE(913), - [sym_compound_literal_expression] = STATE(913), - [sym_parenthesized_expression] = STATE(913), - [sym_concatenated_string] = STATE(913), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2448), - [sym_char_literal] = ACTIONS(2448), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2450), - [sym_false] = ACTIONS(2450), - [sym_null] = ACTIONS(2450), - [sym_identifier] = ACTIONS(2450), + [688] = { + [sym__expression] = STATE(930), + [sym_conditional_expression] = STATE(930), + [sym_assignment_expression] = STATE(930), + [sym_pointer_expression] = STATE(930), + [sym_logical_expression] = STATE(930), + [sym_bitwise_expression] = STATE(930), + [sym_equality_expression] = STATE(930), + [sym_relational_expression] = STATE(930), + [sym_shift_expression] = STATE(930), + [sym_math_expression] = STATE(930), + [sym_cast_expression] = STATE(930), + [sym_sizeof_expression] = STATE(930), + [sym_subscript_expression] = STATE(930), + [sym_call_expression] = STATE(930), + [sym_field_expression] = STATE(930), + [sym_compound_literal_expression] = STATE(930), + [sym_parenthesized_expression] = STATE(930), + [sym_concatenated_string] = STATE(930), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2469), + [sym_char_literal] = ACTIONS(2469), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2471), + [sym_false] = ACTIONS(2471), + [sym_null] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2471), [sym_comment] = ACTIONS(39), }, - [674] = { - [sym__expression] = STATE(914), - [sym_conditional_expression] = STATE(914), - [sym_assignment_expression] = STATE(914), - [sym_pointer_expression] = STATE(914), - [sym_logical_expression] = STATE(914), - [sym_bitwise_expression] = STATE(914), - [sym_equality_expression] = STATE(914), - [sym_relational_expression] = STATE(914), - [sym_shift_expression] = STATE(914), - [sym_math_expression] = STATE(914), - [sym_cast_expression] = STATE(914), - [sym_sizeof_expression] = STATE(914), - [sym_subscript_expression] = STATE(914), - [sym_call_expression] = STATE(914), - [sym_field_expression] = STATE(914), - [sym_compound_literal_expression] = STATE(914), - [sym_parenthesized_expression] = STATE(914), - [sym_concatenated_string] = STATE(914), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2452), - [sym_char_literal] = ACTIONS(2452), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2454), - [sym_false] = ACTIONS(2454), - [sym_null] = ACTIONS(2454), - [sym_identifier] = ACTIONS(2454), + [689] = { + [sym__expression] = STATE(931), + [sym_conditional_expression] = STATE(931), + [sym_assignment_expression] = STATE(931), + [sym_pointer_expression] = STATE(931), + [sym_logical_expression] = STATE(931), + [sym_bitwise_expression] = STATE(931), + [sym_equality_expression] = STATE(931), + [sym_relational_expression] = STATE(931), + [sym_shift_expression] = STATE(931), + [sym_math_expression] = STATE(931), + [sym_cast_expression] = STATE(931), + [sym_sizeof_expression] = STATE(931), + [sym_subscript_expression] = STATE(931), + [sym_call_expression] = STATE(931), + [sym_field_expression] = STATE(931), + [sym_compound_literal_expression] = STATE(931), + [sym_parenthesized_expression] = STATE(931), + [sym_concatenated_string] = STATE(931), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2473), + [sym_char_literal] = ACTIONS(2473), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2475), + [sym_false] = ACTIONS(2475), + [sym_null] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2475), [sym_comment] = ACTIONS(39), }, - [675] = { - [sym__expression] = STATE(915), - [sym_conditional_expression] = STATE(915), - [sym_assignment_expression] = STATE(915), - [sym_pointer_expression] = STATE(915), - [sym_logical_expression] = STATE(915), - [sym_bitwise_expression] = STATE(915), - [sym_equality_expression] = STATE(915), - [sym_relational_expression] = STATE(915), - [sym_shift_expression] = STATE(915), - [sym_math_expression] = STATE(915), - [sym_cast_expression] = STATE(915), - [sym_sizeof_expression] = STATE(915), - [sym_subscript_expression] = STATE(915), - [sym_call_expression] = STATE(915), - [sym_field_expression] = STATE(915), - [sym_compound_literal_expression] = STATE(915), - [sym_parenthesized_expression] = STATE(915), - [sym_concatenated_string] = STATE(915), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2456), - [sym_char_literal] = ACTIONS(2456), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2458), - [sym_false] = ACTIONS(2458), - [sym_null] = ACTIONS(2458), - [sym_identifier] = ACTIONS(2458), + [690] = { + [sym__expression] = STATE(932), + [sym_conditional_expression] = STATE(932), + [sym_assignment_expression] = STATE(932), + [sym_pointer_expression] = STATE(932), + [sym_logical_expression] = STATE(932), + [sym_bitwise_expression] = STATE(932), + [sym_equality_expression] = STATE(932), + [sym_relational_expression] = STATE(932), + [sym_shift_expression] = STATE(932), + [sym_math_expression] = STATE(932), + [sym_cast_expression] = STATE(932), + [sym_sizeof_expression] = STATE(932), + [sym_subscript_expression] = STATE(932), + [sym_call_expression] = STATE(932), + [sym_field_expression] = STATE(932), + [sym_compound_literal_expression] = STATE(932), + [sym_parenthesized_expression] = STATE(932), + [sym_concatenated_string] = STATE(932), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2477), + [sym_char_literal] = ACTIONS(2477), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2479), + [sym_false] = ACTIONS(2479), + [sym_null] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2479), [sym_comment] = ACTIONS(39), }, - [676] = { - [sym__expression] = STATE(916), - [sym_conditional_expression] = STATE(916), - [sym_assignment_expression] = STATE(916), - [sym_pointer_expression] = STATE(916), - [sym_logical_expression] = STATE(916), - [sym_bitwise_expression] = STATE(916), - [sym_equality_expression] = STATE(916), - [sym_relational_expression] = STATE(916), - [sym_shift_expression] = STATE(916), - [sym_math_expression] = STATE(916), - [sym_cast_expression] = STATE(916), - [sym_sizeof_expression] = STATE(916), - [sym_subscript_expression] = STATE(916), - [sym_call_expression] = STATE(916), - [sym_field_expression] = STATE(916), - [sym_compound_literal_expression] = STATE(916), - [sym_parenthesized_expression] = STATE(916), - [sym_concatenated_string] = STATE(916), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2460), - [sym_char_literal] = ACTIONS(2460), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_identifier] = ACTIONS(2462), + [691] = { + [sym__expression] = STATE(933), + [sym_conditional_expression] = STATE(933), + [sym_assignment_expression] = STATE(933), + [sym_pointer_expression] = STATE(933), + [sym_logical_expression] = STATE(933), + [sym_bitwise_expression] = STATE(933), + [sym_equality_expression] = STATE(933), + [sym_relational_expression] = STATE(933), + [sym_shift_expression] = STATE(933), + [sym_math_expression] = STATE(933), + [sym_cast_expression] = STATE(933), + [sym_sizeof_expression] = STATE(933), + [sym_subscript_expression] = STATE(933), + [sym_call_expression] = STATE(933), + [sym_field_expression] = STATE(933), + [sym_compound_literal_expression] = STATE(933), + [sym_parenthesized_expression] = STATE(933), + [sym_concatenated_string] = STATE(933), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2481), + [sym_char_literal] = ACTIONS(2481), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2483), + [sym_false] = ACTIONS(2483), + [sym_null] = ACTIONS(2483), + [sym_identifier] = ACTIONS(2483), [sym_comment] = ACTIONS(39), }, - [677] = { - [sym__expression] = STATE(917), - [sym_conditional_expression] = STATE(917), - [sym_assignment_expression] = STATE(917), - [sym_pointer_expression] = STATE(917), - [sym_logical_expression] = STATE(917), - [sym_bitwise_expression] = STATE(917), - [sym_equality_expression] = STATE(917), - [sym_relational_expression] = STATE(917), - [sym_shift_expression] = STATE(917), - [sym_math_expression] = STATE(917), - [sym_cast_expression] = STATE(917), - [sym_sizeof_expression] = STATE(917), - [sym_subscript_expression] = STATE(917), - [sym_call_expression] = STATE(917), - [sym_field_expression] = STATE(917), - [sym_compound_literal_expression] = STATE(917), - [sym_parenthesized_expression] = STATE(917), - [sym_concatenated_string] = STATE(917), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2464), - [sym_char_literal] = ACTIONS(2464), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_identifier] = ACTIONS(2466), + [692] = { + [sym__expression] = STATE(934), + [sym_conditional_expression] = STATE(934), + [sym_assignment_expression] = STATE(934), + [sym_pointer_expression] = STATE(934), + [sym_logical_expression] = STATE(934), + [sym_bitwise_expression] = STATE(934), + [sym_equality_expression] = STATE(934), + [sym_relational_expression] = STATE(934), + [sym_shift_expression] = STATE(934), + [sym_math_expression] = STATE(934), + [sym_cast_expression] = STATE(934), + [sym_sizeof_expression] = STATE(934), + [sym_subscript_expression] = STATE(934), + [sym_call_expression] = STATE(934), + [sym_field_expression] = STATE(934), + [sym_compound_literal_expression] = STATE(934), + [sym_parenthesized_expression] = STATE(934), + [sym_concatenated_string] = STATE(934), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2485), + [sym_char_literal] = ACTIONS(2485), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2487), + [sym_false] = ACTIONS(2487), + [sym_null] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2487), [sym_comment] = ACTIONS(39), }, - [678] = { - [sym__expression] = STATE(918), - [sym_conditional_expression] = STATE(918), - [sym_assignment_expression] = STATE(918), - [sym_pointer_expression] = STATE(918), - [sym_logical_expression] = STATE(918), - [sym_bitwise_expression] = STATE(918), - [sym_equality_expression] = STATE(918), - [sym_relational_expression] = STATE(918), - [sym_shift_expression] = STATE(918), - [sym_math_expression] = STATE(918), - [sym_cast_expression] = STATE(918), - [sym_sizeof_expression] = STATE(918), - [sym_subscript_expression] = STATE(918), - [sym_call_expression] = STATE(918), - [sym_field_expression] = STATE(918), - [sym_compound_literal_expression] = STATE(918), - [sym_parenthesized_expression] = STATE(918), - [sym_concatenated_string] = STATE(918), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2468), - [sym_char_literal] = ACTIONS(2468), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_identifier] = ACTIONS(2470), + [693] = { + [sym__expression] = STATE(935), + [sym_conditional_expression] = STATE(935), + [sym_assignment_expression] = STATE(935), + [sym_pointer_expression] = STATE(935), + [sym_logical_expression] = STATE(935), + [sym_bitwise_expression] = STATE(935), + [sym_equality_expression] = STATE(935), + [sym_relational_expression] = STATE(935), + [sym_shift_expression] = STATE(935), + [sym_math_expression] = STATE(935), + [sym_cast_expression] = STATE(935), + [sym_sizeof_expression] = STATE(935), + [sym_subscript_expression] = STATE(935), + [sym_call_expression] = STATE(935), + [sym_field_expression] = STATE(935), + [sym_compound_literal_expression] = STATE(935), + [sym_parenthesized_expression] = STATE(935), + [sym_concatenated_string] = STATE(935), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2489), + [sym_char_literal] = ACTIONS(2489), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_null] = ACTIONS(2491), + [sym_identifier] = ACTIONS(2491), [sym_comment] = ACTIONS(39), }, - [679] = { - [sym__expression] = STATE(919), - [sym_conditional_expression] = STATE(919), - [sym_assignment_expression] = STATE(919), - [sym_pointer_expression] = STATE(919), - [sym_logical_expression] = STATE(919), - [sym_bitwise_expression] = STATE(919), - [sym_equality_expression] = STATE(919), - [sym_relational_expression] = STATE(919), - [sym_shift_expression] = STATE(919), - [sym_math_expression] = STATE(919), - [sym_cast_expression] = STATE(919), - [sym_sizeof_expression] = STATE(919), - [sym_subscript_expression] = STATE(919), - [sym_call_expression] = STATE(919), - [sym_field_expression] = STATE(919), - [sym_compound_literal_expression] = STATE(919), - [sym_parenthesized_expression] = STATE(919), - [sym_concatenated_string] = STATE(919), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2472), - [sym_char_literal] = ACTIONS(2472), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_identifier] = ACTIONS(2474), + [694] = { + [sym__expression] = STATE(936), + [sym_conditional_expression] = STATE(936), + [sym_assignment_expression] = STATE(936), + [sym_pointer_expression] = STATE(936), + [sym_logical_expression] = STATE(936), + [sym_bitwise_expression] = STATE(936), + [sym_equality_expression] = STATE(936), + [sym_relational_expression] = STATE(936), + [sym_shift_expression] = STATE(936), + [sym_math_expression] = STATE(936), + [sym_cast_expression] = STATE(936), + [sym_sizeof_expression] = STATE(936), + [sym_subscript_expression] = STATE(936), + [sym_call_expression] = STATE(936), + [sym_field_expression] = STATE(936), + [sym_compound_literal_expression] = STATE(936), + [sym_parenthesized_expression] = STATE(936), + [sym_concatenated_string] = STATE(936), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2493), + [sym_char_literal] = ACTIONS(2493), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2495), [sym_comment] = ACTIONS(39), }, - [680] = { - [sym__expression] = STATE(920), - [sym_conditional_expression] = STATE(920), - [sym_assignment_expression] = STATE(920), - [sym_pointer_expression] = STATE(920), - [sym_logical_expression] = STATE(920), - [sym_bitwise_expression] = STATE(920), - [sym_equality_expression] = STATE(920), - [sym_relational_expression] = STATE(920), - [sym_shift_expression] = STATE(920), - [sym_math_expression] = STATE(920), - [sym_cast_expression] = STATE(920), - [sym_sizeof_expression] = STATE(920), - [sym_subscript_expression] = STATE(920), - [sym_call_expression] = STATE(920), - [sym_field_expression] = STATE(920), - [sym_compound_literal_expression] = STATE(920), - [sym_parenthesized_expression] = STATE(920), - [sym_concatenated_string] = STATE(920), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2476), - [sym_char_literal] = ACTIONS(2476), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2478), + [695] = { + [sym__expression] = STATE(937), + [sym_conditional_expression] = STATE(937), + [sym_assignment_expression] = STATE(937), + [sym_pointer_expression] = STATE(937), + [sym_logical_expression] = STATE(937), + [sym_bitwise_expression] = STATE(937), + [sym_equality_expression] = STATE(937), + [sym_relational_expression] = STATE(937), + [sym_shift_expression] = STATE(937), + [sym_math_expression] = STATE(937), + [sym_cast_expression] = STATE(937), + [sym_sizeof_expression] = STATE(937), + [sym_subscript_expression] = STATE(937), + [sym_call_expression] = STATE(937), + [sym_field_expression] = STATE(937), + [sym_compound_literal_expression] = STATE(937), + [sym_parenthesized_expression] = STATE(937), + [sym_concatenated_string] = STATE(937), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2497), + [sym_char_literal] = ACTIONS(2497), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2499), [sym_comment] = ACTIONS(39), }, - [681] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), + [696] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_static] = ACTIONS(86), [anon_sym_auto] = ACTIONS(86), [anon_sym_register] = ACTIONS(86), @@ -25839,274 +26133,274 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(86), [anon_sym_volatile] = ACTIONS(86), [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1060), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(1072), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [682] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), - [sym_preproc_directive] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_typedef] = ACTIONS(2480), - [anon_sym_extern] = ACTIONS(2480), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_RBRACE] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2480), - [anon_sym_auto] = ACTIONS(2480), - [anon_sym_register] = ACTIONS(2480), - [anon_sym_inline] = ACTIONS(2480), - [anon_sym_const] = ACTIONS(2480), - [anon_sym_restrict] = ACTIONS(2480), - [anon_sym_volatile] = ACTIONS(2480), - [anon_sym__Atomic] = ACTIONS(2480), - [anon_sym_unsigned] = ACTIONS(2480), - [anon_sym_long] = ACTIONS(2480), - [anon_sym_short] = ACTIONS(2480), - [sym_primitive_type] = ACTIONS(2480), - [anon_sym_enum] = ACTIONS(2480), - [anon_sym_struct] = ACTIONS(2480), - [anon_sym_union] = ACTIONS(2480), - [anon_sym_if] = ACTIONS(2480), - [anon_sym_else] = ACTIONS(2480), - [anon_sym_switch] = ACTIONS(2480), - [anon_sym_case] = ACTIONS(2480), - [anon_sym_default] = ACTIONS(2480), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(2480), - [anon_sym_for] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2480), - [anon_sym_break] = ACTIONS(2480), - [anon_sym_continue] = ACTIONS(2480), - [anon_sym_goto] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(2482), - [anon_sym_TILDE] = ACTIONS(2482), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2482), - [anon_sym_PLUS_PLUS] = ACTIONS(2482), - [anon_sym_sizeof] = ACTIONS(2480), - [sym_number_literal] = ACTIONS(2482), - [sym_char_literal] = ACTIONS(2482), - [sym_string_literal] = ACTIONS(2482), - [sym_true] = ACTIONS(2480), - [sym_false] = ACTIONS(2480), - [sym_null] = ACTIONS(2480), - [sym_identifier] = ACTIONS(2480), + [697] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2501), + [sym_preproc_directive] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_typedef] = ACTIONS(2501), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_auto] = ACTIONS(2501), + [anon_sym_register] = ACTIONS(2501), + [anon_sym_inline] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_restrict] = ACTIONS(2501), + [anon_sym_volatile] = ACTIONS(2501), + [anon_sym__Atomic] = ACTIONS(2501), + [anon_sym_unsigned] = ACTIONS(2501), + [anon_sym_long] = ACTIONS(2501), + [anon_sym_short] = ACTIONS(2501), + [sym_primitive_type] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_struct] = ACTIONS(2501), + [anon_sym_union] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_case] = ACTIONS(2501), + [anon_sym_default] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_goto] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_DASH_DASH] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_sizeof] = ACTIONS(2501), + [sym_number_literal] = ACTIONS(2503), + [sym_char_literal] = ACTIONS(2503), + [sym_string_literal] = ACTIONS(2503), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_null] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2501), [sym_comment] = ACTIONS(39), }, - [683] = { - [sym__declarator] = STATE(434), - [sym_pointer_declarator] = STATE(434), - [sym_function_declarator] = STATE(434), - [sym_array_declarator] = STATE(434), + [698] = { + [sym__declarator] = STATE(444), + [sym_pointer_declarator] = STATE(444), + [sym_function_declarator] = STATE(444), + [sym_array_declarator] = STATE(444), [sym_init_declarator] = STATE(46), [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(520), - [sym_identifier] = ACTIONS(1070), - [sym_comment] = ACTIONS(39), - }, - [684] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2484), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(524), + [sym_identifier] = ACTIONS(1082), [sym_comment] = ACTIONS(39), }, - [685] = { - [sym__expression] = STATE(922), - [sym_conditional_expression] = STATE(922), - [sym_assignment_expression] = STATE(922), - [sym_pointer_expression] = STATE(922), - [sym_logical_expression] = STATE(922), - [sym_bitwise_expression] = STATE(922), - [sym_equality_expression] = STATE(922), - [sym_relational_expression] = STATE(922), - [sym_shift_expression] = STATE(922), - [sym_math_expression] = STATE(922), - [sym_cast_expression] = STATE(922), - [sym_sizeof_expression] = STATE(922), - [sym_subscript_expression] = STATE(922), - [sym_call_expression] = STATE(922), - [sym_field_expression] = STATE(922), - [sym_compound_literal_expression] = STATE(922), - [sym_parenthesized_expression] = STATE(922), - [sym_concatenated_string] = STATE(922), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2486), - [sym_char_literal] = ACTIONS(2486), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2488), - [sym_false] = ACTIONS(2488), - [sym_null] = ACTIONS(2488), - [sym_identifier] = ACTIONS(2488), + [699] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [686] = { - [sym__expression] = STATE(923), - [sym_conditional_expression] = STATE(923), - [sym_assignment_expression] = STATE(923), - [sym_pointer_expression] = STATE(923), - [sym_logical_expression] = STATE(923), - [sym_bitwise_expression] = STATE(923), - [sym_equality_expression] = STATE(923), - [sym_relational_expression] = STATE(923), - [sym_shift_expression] = STATE(923), - [sym_math_expression] = STATE(923), - [sym_cast_expression] = STATE(923), - [sym_sizeof_expression] = STATE(923), - [sym_subscript_expression] = STATE(923), - [sym_call_expression] = STATE(923), - [sym_field_expression] = STATE(923), - [sym_compound_literal_expression] = STATE(923), - [sym_parenthesized_expression] = STATE(923), - [sym_concatenated_string] = STATE(923), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2490), - [sym_char_literal] = ACTIONS(2490), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2492), - [sym_false] = ACTIONS(2492), - [sym_null] = ACTIONS(2492), - [sym_identifier] = ACTIONS(2492), + [700] = { + [sym__expression] = STATE(939), + [sym_conditional_expression] = STATE(939), + [sym_assignment_expression] = STATE(939), + [sym_pointer_expression] = STATE(939), + [sym_logical_expression] = STATE(939), + [sym_bitwise_expression] = STATE(939), + [sym_equality_expression] = STATE(939), + [sym_relational_expression] = STATE(939), + [sym_shift_expression] = STATE(939), + [sym_math_expression] = STATE(939), + [sym_cast_expression] = STATE(939), + [sym_sizeof_expression] = STATE(939), + [sym_subscript_expression] = STATE(939), + [sym_call_expression] = STATE(939), + [sym_field_expression] = STATE(939), + [sym_compound_literal_expression] = STATE(939), + [sym_parenthesized_expression] = STATE(939), + [sym_concatenated_string] = STATE(939), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2507), + [sym_char_literal] = ACTIONS(2507), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2509), [sym_comment] = ACTIONS(39), }, - [687] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(2494), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [701] = { + [sym__expression] = STATE(940), + [sym_conditional_expression] = STATE(940), + [sym_assignment_expression] = STATE(940), + [sym_pointer_expression] = STATE(940), + [sym_logical_expression] = STATE(940), + [sym_bitwise_expression] = STATE(940), + [sym_equality_expression] = STATE(940), + [sym_relational_expression] = STATE(940), + [sym_shift_expression] = STATE(940), + [sym_math_expression] = STATE(940), + [sym_cast_expression] = STATE(940), + [sym_sizeof_expression] = STATE(940), + [sym_subscript_expression] = STATE(940), + [sym_call_expression] = STATE(940), + [sym_field_expression] = STATE(940), + [sym_compound_literal_expression] = STATE(940), + [sym_parenthesized_expression] = STATE(940), + [sym_concatenated_string] = STATE(940), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2511), + [sym_char_literal] = ACTIONS(2511), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_identifier] = ACTIONS(2513), [sym_comment] = ACTIONS(39), }, - [688] = { - [sym_declaration] = STATE(682), - [sym_type_definition] = STATE(682), - [sym__declaration_specifiers] = STATE(683), - [sym_compound_statement] = STATE(682), + [702] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(2515), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [703] = { + [sym_declaration] = STATE(697), + [sym_type_definition] = STATE(697), + [sym__declaration_specifiers] = STATE(698), + [sym_compound_statement] = STATE(697), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -26114,46 +26408,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(682), - [sym_expression_statement] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_switch_statement] = STATE(682), - [sym_case_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_do_statement] = STATE(682), - [sym_for_statement] = STATE(682), - [sym_return_statement] = STATE(682), - [sym_break_statement] = STATE(682), - [sym_continue_statement] = STATE(682), - [sym_goto_statement] = STATE(682), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), + [sym_labeled_statement] = STATE(697), + [sym_expression_statement] = STATE(697), + [sym_if_statement] = STATE(697), + [sym_switch_statement] = STATE(697), + [sym_case_statement] = STATE(697), + [sym_while_statement] = STATE(697), + [sym_do_statement] = STATE(697), + [sym_for_statement] = STATE(697), + [sym_return_statement] = STATE(697), + [sym_break_statement] = STATE(697), + [sym_continue_statement] = STATE(697), + [sym_goto_statement] = STATE(697), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -26169,75 +26463,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2517), [sym_comment] = ACTIONS(39), }, - [689] = { - [sym__expression] = STATE(926), - [sym_conditional_expression] = STATE(926), - [sym_assignment_expression] = STATE(926), - [sym_pointer_expression] = STATE(926), - [sym_logical_expression] = STATE(926), - [sym_bitwise_expression] = STATE(926), - [sym_equality_expression] = STATE(926), - [sym_relational_expression] = STATE(926), - [sym_shift_expression] = STATE(926), - [sym_math_expression] = STATE(926), - [sym_cast_expression] = STATE(926), - [sym_sizeof_expression] = STATE(926), - [sym_subscript_expression] = STATE(926), - [sym_call_expression] = STATE(926), - [sym_field_expression] = STATE(926), - [sym_compound_literal_expression] = STATE(926), - [sym_parenthesized_expression] = STATE(926), - [sym_concatenated_string] = STATE(926), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2498), - [sym_char_literal] = ACTIONS(2498), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_identifier] = ACTIONS(2500), + [704] = { + [sym__expression] = STATE(943), + [sym_conditional_expression] = STATE(943), + [sym_assignment_expression] = STATE(943), + [sym_pointer_expression] = STATE(943), + [sym_logical_expression] = STATE(943), + [sym_bitwise_expression] = STATE(943), + [sym_equality_expression] = STATE(943), + [sym_relational_expression] = STATE(943), + [sym_shift_expression] = STATE(943), + [sym_math_expression] = STATE(943), + [sym_cast_expression] = STATE(943), + [sym_sizeof_expression] = STATE(943), + [sym_subscript_expression] = STATE(943), + [sym_call_expression] = STATE(943), + [sym_field_expression] = STATE(943), + [sym_compound_literal_expression] = STATE(943), + [sym_parenthesized_expression] = STATE(943), + [sym_concatenated_string] = STATE(943), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2519), + [sym_char_literal] = ACTIONS(2519), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2521), + [sym_false] = ACTIONS(2521), + [sym_null] = ACTIONS(2521), + [sym_identifier] = ACTIONS(2521), [sym_comment] = ACTIONS(39), }, - [690] = { - [sym_declaration] = STATE(927), - [sym__declaration_specifiers] = STATE(683), + [705] = { + [sym_declaration] = STATE(944), + [sym__declaration_specifiers] = STATE(698), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -26245,31 +26539,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym__expression] = STATE(928), - [sym_conditional_expression] = STATE(928), - [sym_assignment_expression] = STATE(928), - [sym_pointer_expression] = STATE(928), - [sym_logical_expression] = STATE(928), - [sym_bitwise_expression] = STATE(928), - [sym_equality_expression] = STATE(928), - [sym_relational_expression] = STATE(928), - [sym_shift_expression] = STATE(928), - [sym_math_expression] = STATE(928), - [sym_cast_expression] = STATE(928), - [sym_sizeof_expression] = STATE(928), - [sym_subscript_expression] = STATE(928), - [sym_call_expression] = STATE(928), - [sym_field_expression] = STATE(928), - [sym_compound_literal_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(928), - [sym_concatenated_string] = STATE(928), + [sym__expression] = STATE(945), + [sym_conditional_expression] = STATE(945), + [sym_assignment_expression] = STATE(945), + [sym_pointer_expression] = STATE(945), + [sym_logical_expression] = STATE(945), + [sym_bitwise_expression] = STATE(945), + [sym_equality_expression] = STATE(945), + [sym_relational_expression] = STATE(945), + [sym_shift_expression] = STATE(945), + [sym_math_expression] = STATE(945), + [sym_cast_expression] = STATE(945), + [sym_sizeof_expression] = STATE(945), + [sym_subscript_expression] = STATE(945), + [sym_call_expression] = STATE(945), + [sym_field_expression] = STATE(945), + [sym_compound_literal_expression] = STATE(945), + [sym_parenthesized_expression] = STATE(945), + [sym_concatenated_string] = STATE(945), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(2523), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -26285,138 +26579,138 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2504), - [sym_char_literal] = ACTIONS(2504), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2506), - [sym_false] = ACTIONS(2506), - [sym_null] = ACTIONS(2506), - [sym_identifier] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2525), + [sym_char_literal] = ACTIONS(2525), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [sym_null] = ACTIONS(2527), + [sym_identifier] = ACTIONS(1675), [sym_comment] = ACTIONS(39), }, - [691] = { - [sym_compound_statement] = STATE(701), - [sym_labeled_statement] = STATE(701), - [sym_expression_statement] = STATE(701), - [sym_if_statement] = STATE(701), - [sym_switch_statement] = STATE(701), - [sym_case_statement] = STATE(701), - [sym_while_statement] = STATE(701), - [sym_do_statement] = STATE(701), - [sym_for_statement] = STATE(701), - [sym_return_statement] = STATE(701), - [sym_break_statement] = STATE(701), - [sym_continue_statement] = STATE(701), - [sym_goto_statement] = STATE(701), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [706] = { + [sym_compound_statement] = STATE(716), + [sym_labeled_statement] = STATE(716), + [sym_expression_statement] = STATE(716), + [sym_if_statement] = STATE(716), + [sym_switch_statement] = STATE(716), + [sym_case_statement] = STATE(716), + [sym_while_statement] = STATE(716), + [sym_do_statement] = STATE(716), + [sym_for_statement] = STATE(716), + [sym_return_statement] = STATE(716), + [sym_break_statement] = STATE(716), + [sym_continue_statement] = STATE(716), + [sym_goto_statement] = STATE(716), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, - [692] = { - [anon_sym_LPAREN] = ACTIONS(2508), + [707] = { + [anon_sym_LPAREN] = ACTIONS(2529), [sym_comment] = ACTIONS(39), }, - [693] = { - [sym__expression] = STATE(931), - [sym_conditional_expression] = STATE(931), - [sym_assignment_expression] = STATE(931), - [sym_pointer_expression] = STATE(931), - [sym_logical_expression] = STATE(931), - [sym_bitwise_expression] = STATE(931), - [sym_equality_expression] = STATE(931), - [sym_relational_expression] = STATE(931), - [sym_shift_expression] = STATE(931), - [sym_math_expression] = STATE(931), - [sym_cast_expression] = STATE(931), - [sym_sizeof_expression] = STATE(931), - [sym_subscript_expression] = STATE(931), - [sym_call_expression] = STATE(931), - [sym_field_expression] = STATE(931), - [sym_compound_literal_expression] = STATE(931), - [sym_parenthesized_expression] = STATE(931), - [sym_concatenated_string] = STATE(931), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2512), - [sym_char_literal] = ACTIONS(2512), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2514), - [sym_false] = ACTIONS(2514), - [sym_null] = ACTIONS(2514), - [sym_identifier] = ACTIONS(2514), + [708] = { + [sym__expression] = STATE(948), + [sym_conditional_expression] = STATE(948), + [sym_assignment_expression] = STATE(948), + [sym_pointer_expression] = STATE(948), + [sym_logical_expression] = STATE(948), + [sym_bitwise_expression] = STATE(948), + [sym_equality_expression] = STATE(948), + [sym_relational_expression] = STATE(948), + [sym_shift_expression] = STATE(948), + [sym_math_expression] = STATE(948), + [sym_cast_expression] = STATE(948), + [sym_sizeof_expression] = STATE(948), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(948), + [sym_parenthesized_expression] = STATE(948), + [sym_concatenated_string] = STATE(948), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2533), + [sym_char_literal] = ACTIONS(2533), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2535), + [sym_false] = ACTIONS(2535), + [sym_null] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2535), [sym_comment] = ACTIONS(39), }, - [694] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1044), + [709] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1056), [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_static] = ACTIONS(86), [anon_sym_auto] = ACTIONS(86), [anon_sym_register] = ACTIONS(86), @@ -26425,492 +26719,210 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(86), [anon_sym_volatile] = ACTIONS(86), [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [695] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [696] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2518), - [sym_preproc_directive] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_typedef] = ACTIONS(2518), - [anon_sym_extern] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_auto] = ACTIONS(2518), - [anon_sym_register] = ACTIONS(2518), - [anon_sym_inline] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_restrict] = ACTIONS(2518), - [anon_sym_volatile] = ACTIONS(2518), - [anon_sym__Atomic] = ACTIONS(2518), - [anon_sym_unsigned] = ACTIONS(2518), - [anon_sym_long] = ACTIONS(2518), - [anon_sym_short] = ACTIONS(2518), - [sym_primitive_type] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - [anon_sym_struct] = ACTIONS(2518), - [anon_sym_union] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_case] = ACTIONS(2518), - [anon_sym_default] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_goto] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_sizeof] = ACTIONS(2518), - [sym_number_literal] = ACTIONS(2520), - [sym_char_literal] = ACTIONS(2520), - [sym_string_literal] = ACTIONS(2520), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2518), - [sym_comment] = ACTIONS(39), - }, - [697] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2524), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2522), - [sym_preproc_directive] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_typedef] = ACTIONS(2522), - [anon_sym_extern] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_auto] = ACTIONS(2522), - [anon_sym_register] = ACTIONS(2522), - [anon_sym_inline] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_restrict] = ACTIONS(2522), - [anon_sym_volatile] = ACTIONS(2522), - [anon_sym__Atomic] = ACTIONS(2522), - [anon_sym_unsigned] = ACTIONS(2522), - [anon_sym_long] = ACTIONS(2522), - [anon_sym_short] = ACTIONS(2522), - [sym_primitive_type] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_union] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_goto] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_sizeof] = ACTIONS(2522), - [sym_number_literal] = ACTIONS(2524), - [sym_char_literal] = ACTIONS(2524), - [sym_string_literal] = ACTIONS(2524), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2522), - [sym_comment] = ACTIONS(39), - }, - [698] = { - [anon_sym_RPAREN] = ACTIONS(2526), - [sym_comment] = ACTIONS(39), - }, - [699] = { - [aux_sym_concatenated_string_repeat1] = STATE(699), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2530), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_STAR_EQ] = ACTIONS(2528), - [anon_sym_SLASH_EQ] = ACTIONS(2528), - [anon_sym_PERCENT_EQ] = ACTIONS(2528), - [anon_sym_PLUS_EQ] = ACTIONS(2528), - [anon_sym_DASH_EQ] = ACTIONS(2528), - [anon_sym_LT_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_GT_EQ] = ACTIONS(2528), - [anon_sym_AMP_EQ] = ACTIONS(2528), - [anon_sym_CARET_EQ] = ACTIONS(2528), - [anon_sym_PIPE_EQ] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2530), - [anon_sym_EQ_EQ] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_GT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2530), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2530), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_DASH_GT] = ACTIONS(2528), - [sym_string_literal] = ACTIONS(2532), - [sym_comment] = ACTIONS(39), - }, - [700] = { - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(1060), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_comment] = ACTIONS(39), - }, - [701] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2535), - [sym_preproc_directive] = ACTIONS(2535), + [710] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_typedef] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_auto] = ACTIONS(2535), - [anon_sym_register] = ACTIONS(2535), - [anon_sym_inline] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_restrict] = ACTIONS(2535), - [anon_sym_volatile] = ACTIONS(2535), - [anon_sym__Atomic] = ACTIONS(2535), - [anon_sym_unsigned] = ACTIONS(2535), - [anon_sym_long] = ACTIONS(2535), - [anon_sym_short] = ACTIONS(2535), - [sym_primitive_type] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_else] = ACTIONS(2535), - [anon_sym_switch] = ACTIONS(2535), - [anon_sym_case] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_do] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_goto] = ACTIONS(2535), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2537), - [anon_sym_TILDE] = ACTIONS(2537), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2537), - [anon_sym_PLUS_PLUS] = ACTIONS(2537), - [anon_sym_sizeof] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2537), - [sym_char_literal] = ACTIONS(2537), - [sym_string_literal] = ACTIONS(2537), - [sym_true] = ACTIONS(2535), - [sym_false] = ACTIONS(2535), - [sym_null] = ACTIONS(2535), - [sym_identifier] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [702] = { - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_COMMA] = ACTIONS(2539), - [anon_sym_RPAREN] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2539), + [711] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2539), + [sym_preproc_directive] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2541), [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2539), - [anon_sym_RBRACK] = ACTIONS(2539), - [anon_sym_EQ] = ACTIONS(2541), - [anon_sym_COLON] = ACTIONS(2539), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_STAR_EQ] = ACTIONS(2539), - [anon_sym_SLASH_EQ] = ACTIONS(2539), - [anon_sym_PERCENT_EQ] = ACTIONS(2539), - [anon_sym_PLUS_EQ] = ACTIONS(2539), - [anon_sym_DASH_EQ] = ACTIONS(2539), - [anon_sym_LT_LT_EQ] = ACTIONS(2539), - [anon_sym_GT_GT_EQ] = ACTIONS(2539), - [anon_sym_AMP_EQ] = ACTIONS(2539), - [anon_sym_CARET_EQ] = ACTIONS(2539), - [anon_sym_PIPE_EQ] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_auto] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_inline] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_restrict] = ACTIONS(2539), + [anon_sym_volatile] = ACTIONS(2539), + [anon_sym__Atomic] = ACTIONS(2539), + [anon_sym_unsigned] = ACTIONS(2539), + [anon_sym_long] = ACTIONS(2539), + [anon_sym_short] = ACTIONS(2539), + [sym_primitive_type] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_goto] = ACTIONS(2539), [anon_sym_AMP] = ACTIONS(2541), - [anon_sym_PIPE_PIPE] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(2539), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_CARET] = ACTIONS(2541), - [anon_sym_EQ_EQ] = ACTIONS(2539), - [anon_sym_BANG_EQ] = ACTIONS(2539), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_GT] = ACTIONS(2541), - [anon_sym_LT_EQ] = ACTIONS(2539), - [anon_sym_GT_EQ] = ACTIONS(2539), - [anon_sym_LT_LT] = ACTIONS(2541), - [anon_sym_GT_GT] = ACTIONS(2541), - [anon_sym_PLUS] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_SLASH] = ACTIONS(2541), - [anon_sym_PERCENT] = ACTIONS(2541), - [anon_sym_DASH_DASH] = ACTIONS(2539), - [anon_sym_PLUS_PLUS] = ACTIONS(2539), - [anon_sym_DOT] = ACTIONS(2539), - [anon_sym_DASH_GT] = ACTIONS(2539), - [sym_comment] = ACTIONS(39), - }, - [703] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(936), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(2545), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_number_literal] = ACTIONS(2541), + [sym_char_literal] = ACTIONS(2541), + [sym_string_literal] = ACTIONS(2541), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2539), [sym_comment] = ACTIONS(39), }, - [704] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_STAR_EQ] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1086), - [anon_sym_PERCENT_EQ] = ACTIONS(1086), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - [anon_sym_LT_LT_EQ] = ACTIONS(1086), - [anon_sym_GT_GT_EQ] = ACTIONS(1086), - [anon_sym_AMP_EQ] = ACTIONS(1086), - [anon_sym_CARET_EQ] = ACTIONS(1086), - [anon_sym_PIPE_EQ] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [712] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2543), + [sym_preproc_directive] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_typedef] = ACTIONS(2543), + [anon_sym_extern] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_auto] = ACTIONS(2543), + [anon_sym_register] = ACTIONS(2543), + [anon_sym_inline] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_restrict] = ACTIONS(2543), + [anon_sym_volatile] = ACTIONS(2543), + [anon_sym__Atomic] = ACTIONS(2543), + [anon_sym_unsigned] = ACTIONS(2543), + [anon_sym_long] = ACTIONS(2543), + [anon_sym_short] = ACTIONS(2543), + [sym_primitive_type] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_else] = ACTIONS(2543), + [anon_sym_switch] = ACTIONS(2543), + [anon_sym_case] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_do] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_goto] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2545), + [anon_sym_TILDE] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(2545), + [anon_sym_PLUS_PLUS] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2543), + [sym_number_literal] = ACTIONS(2545), + [sym_char_literal] = ACTIONS(2545), + [sym_string_literal] = ACTIONS(2545), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_null] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2543), [sym_comment] = ACTIONS(39), }, - [705] = { + [713] = { [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2547), [sym_comment] = ACTIONS(39), }, - [706] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), + [714] = { + [aux_sym_concatenated_string_repeat1] = STATE(714), + [anon_sym_LPAREN] = ACTIONS(2549), [anon_sym_COMMA] = ACTIONS(2549), - [anon_sym_RPAREN] = ACTIONS(2549), [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_RBRACE] = ACTIONS(2549), [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2549), [anon_sym_EQ] = ACTIONS(2551), - [anon_sym_COLON] = ACTIONS(2549), [anon_sym_QMARK] = ACTIONS(2549), [anon_sym_STAR_EQ] = ACTIONS(2549), [anon_sym_SLASH_EQ] = ACTIONS(2549), @@ -26939,1103 +26951,890 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2551), [anon_sym_SLASH] = ACTIONS(2551), [anon_sym_PERCENT] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [707] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2553), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [708] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1086), - [anon_sym_PERCENT_EQ] = ACTIONS(1086), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - [anon_sym_LT_LT_EQ] = ACTIONS(1086), - [anon_sym_GT_GT_EQ] = ACTIONS(1086), - [anon_sym_AMP_EQ] = ACTIONS(1086), - [anon_sym_CARET_EQ] = ACTIONS(1086), - [anon_sym_PIPE_EQ] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [709] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(2557), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [710] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [711] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [712] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [713] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [714] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_DOT] = ACTIONS(2549), + [anon_sym_DASH_GT] = ACTIONS(2549), + [sym_string_literal] = ACTIONS(2553), [sym_comment] = ACTIONS(39), }, [715] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_STAR_EQ] = ACTIONS(2567), - [anon_sym_SLASH_EQ] = ACTIONS(2567), - [anon_sym_PERCENT_EQ] = ACTIONS(2567), - [anon_sym_PLUS_EQ] = ACTIONS(2567), - [anon_sym_DASH_EQ] = ACTIONS(2567), - [anon_sym_LT_LT_EQ] = ACTIONS(2567), - [anon_sym_GT_GT_EQ] = ACTIONS(2567), - [anon_sym_AMP_EQ] = ACTIONS(2567), - [anon_sym_CARET_EQ] = ACTIONS(2567), - [anon_sym_PIPE_EQ] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2569), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_EQ_EQ] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_COLON] = ACTIONS(1072), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, [716] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_STAR_EQ] = ACTIONS(2571), - [anon_sym_SLASH_EQ] = ACTIONS(2571), - [anon_sym_PERCENT_EQ] = ACTIONS(2571), - [anon_sym_PLUS_EQ] = ACTIONS(2571), - [anon_sym_DASH_EQ] = ACTIONS(2571), - [anon_sym_LT_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_GT_EQ] = ACTIONS(2571), - [anon_sym_AMP_EQ] = ACTIONS(2571), - [anon_sym_CARET_EQ] = ACTIONS(2571), - [anon_sym_PIPE_EQ] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2558), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2556), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_RBRACE] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_auto] = ACTIONS(2556), + [anon_sym_register] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_restrict] = ACTIONS(2556), + [anon_sym_volatile] = ACTIONS(2556), + [anon_sym__Atomic] = ACTIONS(2556), + [anon_sym_unsigned] = ACTIONS(2556), + [anon_sym_long] = ACTIONS(2556), + [anon_sym_short] = ACTIONS(2556), + [sym_primitive_type] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_goto] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_sizeof] = ACTIONS(2556), + [sym_number_literal] = ACTIONS(2558), + [sym_char_literal] = ACTIONS(2558), + [sym_string_literal] = ACTIONS(2558), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [sym_null] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2556), [sym_comment] = ACTIONS(39), }, [717] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_STAR_EQ] = ACTIONS(2575), - [anon_sym_SLASH_EQ] = ACTIONS(2575), - [anon_sym_PERCENT_EQ] = ACTIONS(2575), - [anon_sym_PLUS_EQ] = ACTIONS(2575), - [anon_sym_DASH_EQ] = ACTIONS(2575), - [anon_sym_LT_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_GT_EQ] = ACTIONS(2575), - [anon_sym_AMP_EQ] = ACTIONS(2575), - [anon_sym_CARET_EQ] = ACTIONS(2575), - [anon_sym_PIPE_EQ] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2577), - [anon_sym_CARET] = ACTIONS(2577), - [anon_sym_EQ_EQ] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), - [anon_sym_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_EQ] = ACTIONS(2575), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_GT_GT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(2560), + [anon_sym_COMMA] = ACTIONS(2560), + [anon_sym_RPAREN] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2560), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2560), + [anon_sym_RBRACK] = ACTIONS(2560), + [anon_sym_EQ] = ACTIONS(2562), + [anon_sym_COLON] = ACTIONS(2560), + [anon_sym_QMARK] = ACTIONS(2560), + [anon_sym_STAR_EQ] = ACTIONS(2560), + [anon_sym_SLASH_EQ] = ACTIONS(2560), + [anon_sym_PERCENT_EQ] = ACTIONS(2560), + [anon_sym_PLUS_EQ] = ACTIONS(2560), + [anon_sym_DASH_EQ] = ACTIONS(2560), + [anon_sym_LT_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_GT_EQ] = ACTIONS(2560), + [anon_sym_AMP_EQ] = ACTIONS(2560), + [anon_sym_CARET_EQ] = ACTIONS(2560), + [anon_sym_PIPE_EQ] = ACTIONS(2560), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2560), + [anon_sym_AMP_AMP] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_EQ_EQ] = ACTIONS(2560), + [anon_sym_BANG_EQ] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2562), + [anon_sym_LT_EQ] = ACTIONS(2560), + [anon_sym_GT_EQ] = ACTIONS(2560), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2562), + [anon_sym_PLUS] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2562), + [anon_sym_SLASH] = ACTIONS(2562), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_DASH_DASH] = ACTIONS(2560), + [anon_sym_PLUS_PLUS] = ACTIONS(2560), + [anon_sym_DOT] = ACTIONS(2560), + [anon_sym_DASH_GT] = ACTIONS(2560), [sym_comment] = ACTIONS(39), }, [718] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2549), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2551), - [anon_sym_QMARK] = ACTIONS(2549), - [anon_sym_STAR_EQ] = ACTIONS(2549), - [anon_sym_SLASH_EQ] = ACTIONS(2549), - [anon_sym_PERCENT_EQ] = ACTIONS(2549), - [anon_sym_PLUS_EQ] = ACTIONS(2549), - [anon_sym_DASH_EQ] = ACTIONS(2549), - [anon_sym_LT_LT_EQ] = ACTIONS(2549), - [anon_sym_GT_GT_EQ] = ACTIONS(2549), - [anon_sym_AMP_EQ] = ACTIONS(2549), - [anon_sym_CARET_EQ] = ACTIONS(2549), - [anon_sym_PIPE_EQ] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE_PIPE] = ACTIONS(2549), - [anon_sym_AMP_AMP] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_CARET] = ACTIONS(2551), - [anon_sym_EQ_EQ] = ACTIONS(2549), - [anon_sym_BANG_EQ] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_GT] = ACTIONS(2551), - [anon_sym_LT_EQ] = ACTIONS(2549), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2551), - [anon_sym_GT_GT] = ACTIONS(2551), - [anon_sym_PLUS] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(953), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [719] = { - [anon_sym_LPAREN] = ACTIONS(2579), - [anon_sym_COMMA] = ACTIONS(2579), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_RBRACK] = ACTIONS(2579), - [anon_sym_EQ] = ACTIONS(2581), - [anon_sym_COLON] = ACTIONS(2579), - [anon_sym_QMARK] = ACTIONS(2579), - [anon_sym_STAR_EQ] = ACTIONS(2579), - [anon_sym_SLASH_EQ] = ACTIONS(2579), - [anon_sym_PERCENT_EQ] = ACTIONS(2579), - [anon_sym_PLUS_EQ] = ACTIONS(2579), - [anon_sym_DASH_EQ] = ACTIONS(2579), - [anon_sym_LT_LT_EQ] = ACTIONS(2579), - [anon_sym_GT_GT_EQ] = ACTIONS(2579), - [anon_sym_AMP_EQ] = ACTIONS(2579), - [anon_sym_CARET_EQ] = ACTIONS(2579), - [anon_sym_PIPE_EQ] = ACTIONS(2579), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_PIPE_PIPE] = ACTIONS(2579), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_CARET] = ACTIONS(2581), - [anon_sym_EQ_EQ] = ACTIONS(2579), - [anon_sym_BANG_EQ] = ACTIONS(2579), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_GT] = ACTIONS(2581), - [anon_sym_LT_EQ] = ACTIONS(2579), - [anon_sym_GT_EQ] = ACTIONS(2579), - [anon_sym_LT_LT] = ACTIONS(2581), - [anon_sym_GT_GT] = ACTIONS(2581), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_SLASH] = ACTIONS(2581), - [anon_sym_PERCENT] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_DOT] = ACTIONS(2579), - [anon_sym_DASH_GT] = ACTIONS(2579), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1096), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [720] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [anon_sym_RPAREN] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2568), [sym_comment] = ACTIONS(39), }, [721] = { - [anon_sym_RPAREN] = ACTIONS(2583), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2570), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_COLON] = ACTIONS(2570), + [anon_sym_QMARK] = ACTIONS(2570), + [anon_sym_STAR_EQ] = ACTIONS(2570), + [anon_sym_SLASH_EQ] = ACTIONS(2570), + [anon_sym_PERCENT_EQ] = ACTIONS(2570), + [anon_sym_PLUS_EQ] = ACTIONS(2570), + [anon_sym_DASH_EQ] = ACTIONS(2570), + [anon_sym_LT_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_GT_EQ] = ACTIONS(2570), + [anon_sym_AMP_EQ] = ACTIONS(2570), + [anon_sym_CARET_EQ] = ACTIONS(2570), + [anon_sym_PIPE_EQ] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [722] = { - [aux_sym_concatenated_string_repeat1] = STATE(722), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_RBRACK] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2530), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_STAR_EQ] = ACTIONS(2528), - [anon_sym_SLASH_EQ] = ACTIONS(2528), - [anon_sym_PERCENT_EQ] = ACTIONS(2528), - [anon_sym_PLUS_EQ] = ACTIONS(2528), - [anon_sym_DASH_EQ] = ACTIONS(2528), - [anon_sym_LT_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_GT_EQ] = ACTIONS(2528), - [anon_sym_AMP_EQ] = ACTIONS(2528), - [anon_sym_CARET_EQ] = ACTIONS(2528), - [anon_sym_PIPE_EQ] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2530), - [anon_sym_EQ_EQ] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_GT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2530), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2530), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_DASH_GT] = ACTIONS(2528), - [sym_string_literal] = ACTIONS(2585), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2574), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [723] = { - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_COMMA] = ACTIONS(2588), - [anon_sym_RPAREN] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_EQ] = ACTIONS(2588), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(2576), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [724] = { - [sym_storage_class_specifier] = STATE(724), - [sym_type_qualifier] = STATE(724), - [aux_sym__declaration_specifiers_repeat1] = STATE(724), - [anon_sym_LPAREN] = ACTIONS(624), - [anon_sym_extern] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(624), - [anon_sym_RBRACK] = ACTIONS(624), - [anon_sym_static] = ACTIONS(297), - [anon_sym_auto] = ACTIONS(297), - [anon_sym_register] = ACTIONS(297), - [anon_sym_inline] = ACTIONS(297), - [anon_sym_const] = ACTIONS(300), - [anon_sym_restrict] = ACTIONS(300), - [anon_sym_volatile] = ACTIONS(300), - [anon_sym__Atomic] = ACTIONS(300), - [anon_sym_AMP] = ACTIONS(624), - [anon_sym_BANG] = ACTIONS(624), - [anon_sym_TILDE] = ACTIONS(624), - [anon_sym_PLUS] = ACTIONS(303), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_DASH_DASH] = ACTIONS(624), - [anon_sym_PLUS_PLUS] = ACTIONS(624), - [anon_sym_sizeof] = ACTIONS(303), - [sym_number_literal] = ACTIONS(624), - [sym_char_literal] = ACTIONS(624), - [sym_string_literal] = ACTIONS(624), - [sym_true] = ACTIONS(303), - [sym_false] = ACTIONS(303), - [sym_null] = ACTIONS(303), - [sym_identifier] = ACTIONS(303), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(2578), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [725] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2555), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [726] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(2590), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [727] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2559), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [728] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2563), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [729] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2563), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [730] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2559), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_STAR_EQ] = ACTIONS(2588), + [anon_sym_SLASH_EQ] = ACTIONS(2588), + [anon_sym_PERCENT_EQ] = ACTIONS(2588), + [anon_sym_PLUS_EQ] = ACTIONS(2588), + [anon_sym_DASH_EQ] = ACTIONS(2588), + [anon_sym_LT_LT_EQ] = ACTIONS(2588), + [anon_sym_GT_GT_EQ] = ACTIONS(2588), + [anon_sym_AMP_EQ] = ACTIONS(2588), + [anon_sym_CARET_EQ] = ACTIONS(2588), + [anon_sym_PIPE_EQ] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_CARET] = ACTIONS(2590), + [anon_sym_EQ_EQ] = ACTIONS(2588), + [anon_sym_BANG_EQ] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [731] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2559), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2592), + [anon_sym_STAR_EQ] = ACTIONS(2592), + [anon_sym_SLASH_EQ] = ACTIONS(2592), + [anon_sym_PERCENT_EQ] = ACTIONS(2592), + [anon_sym_PLUS_EQ] = ACTIONS(2592), + [anon_sym_DASH_EQ] = ACTIONS(2592), + [anon_sym_LT_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_GT_EQ] = ACTIONS(2592), + [anon_sym_AMP_EQ] = ACTIONS(2592), + [anon_sym_CARET_EQ] = ACTIONS(2592), + [anon_sym_PIPE_EQ] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_EQ] = ACTIONS(2592), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [732] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2567), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_STAR_EQ] = ACTIONS(2567), - [anon_sym_SLASH_EQ] = ACTIONS(2567), - [anon_sym_PERCENT_EQ] = ACTIONS(2567), - [anon_sym_PLUS_EQ] = ACTIONS(2567), - [anon_sym_DASH_EQ] = ACTIONS(2567), - [anon_sym_LT_LT_EQ] = ACTIONS(2567), - [anon_sym_GT_GT_EQ] = ACTIONS(2567), - [anon_sym_AMP_EQ] = ACTIONS(2567), - [anon_sym_CARET_EQ] = ACTIONS(2567), - [anon_sym_PIPE_EQ] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2569), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_EQ_EQ] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2596), + [anon_sym_STAR_EQ] = ACTIONS(2596), + [anon_sym_SLASH_EQ] = ACTIONS(2596), + [anon_sym_PERCENT_EQ] = ACTIONS(2596), + [anon_sym_PLUS_EQ] = ACTIONS(2596), + [anon_sym_DASH_EQ] = ACTIONS(2596), + [anon_sym_LT_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_GT_EQ] = ACTIONS(2596), + [anon_sym_AMP_EQ] = ACTIONS(2596), + [anon_sym_CARET_EQ] = ACTIONS(2596), + [anon_sym_PIPE_EQ] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2598), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2598), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_GT] = ACTIONS(2598), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2598), + [anon_sym_GT_GT] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [733] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2571), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_STAR_EQ] = ACTIONS(2571), - [anon_sym_SLASH_EQ] = ACTIONS(2571), - [anon_sym_PERCENT_EQ] = ACTIONS(2571), - [anon_sym_PLUS_EQ] = ACTIONS(2571), - [anon_sym_DASH_EQ] = ACTIONS(2571), - [anon_sym_LT_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_GT_EQ] = ACTIONS(2571), - [anon_sym_AMP_EQ] = ACTIONS(2571), - [anon_sym_CARET_EQ] = ACTIONS(2571), - [anon_sym_PIPE_EQ] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2570), + [anon_sym_STAR_EQ] = ACTIONS(2570), + [anon_sym_SLASH_EQ] = ACTIONS(2570), + [anon_sym_PERCENT_EQ] = ACTIONS(2570), + [anon_sym_PLUS_EQ] = ACTIONS(2570), + [anon_sym_DASH_EQ] = ACTIONS(2570), + [anon_sym_LT_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_GT_EQ] = ACTIONS(2570), + [anon_sym_AMP_EQ] = ACTIONS(2570), + [anon_sym_CARET_EQ] = ACTIONS(2570), + [anon_sym_PIPE_EQ] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [734] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2575), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_STAR_EQ] = ACTIONS(2575), - [anon_sym_SLASH_EQ] = ACTIONS(2575), - [anon_sym_PERCENT_EQ] = ACTIONS(2575), - [anon_sym_PLUS_EQ] = ACTIONS(2575), - [anon_sym_DASH_EQ] = ACTIONS(2575), - [anon_sym_LT_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_GT_EQ] = ACTIONS(2575), - [anon_sym_AMP_EQ] = ACTIONS(2575), - [anon_sym_CARET_EQ] = ACTIONS(2575), - [anon_sym_PIPE_EQ] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2577), - [anon_sym_CARET] = ACTIONS(2577), - [anon_sym_EQ_EQ] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), - [anon_sym_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_EQ] = ACTIONS(2575), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_GT_GT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_COMMA] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2600), + [anon_sym_RBRACE] = ACTIONS(2600), + [anon_sym_STAR] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2600), + [anon_sym_RBRACK] = ACTIONS(2600), + [anon_sym_EQ] = ACTIONS(2602), + [anon_sym_COLON] = ACTIONS(2600), + [anon_sym_QMARK] = ACTIONS(2600), + [anon_sym_STAR_EQ] = ACTIONS(2600), + [anon_sym_SLASH_EQ] = ACTIONS(2600), + [anon_sym_PERCENT_EQ] = ACTIONS(2600), + [anon_sym_PLUS_EQ] = ACTIONS(2600), + [anon_sym_DASH_EQ] = ACTIONS(2600), + [anon_sym_LT_LT_EQ] = ACTIONS(2600), + [anon_sym_GT_GT_EQ] = ACTIONS(2600), + [anon_sym_AMP_EQ] = ACTIONS(2600), + [anon_sym_CARET_EQ] = ACTIONS(2600), + [anon_sym_PIPE_EQ] = ACTIONS(2600), + [anon_sym_AMP] = ACTIONS(2602), + [anon_sym_PIPE_PIPE] = ACTIONS(2600), + [anon_sym_AMP_AMP] = ACTIONS(2600), + [anon_sym_PIPE] = ACTIONS(2602), + [anon_sym_CARET] = ACTIONS(2602), + [anon_sym_EQ_EQ] = ACTIONS(2600), + [anon_sym_BANG_EQ] = ACTIONS(2600), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_GT] = ACTIONS(2602), + [anon_sym_LT_EQ] = ACTIONS(2600), + [anon_sym_GT_EQ] = ACTIONS(2600), + [anon_sym_LT_LT] = ACTIONS(2602), + [anon_sym_GT_GT] = ACTIONS(2602), + [anon_sym_PLUS] = ACTIONS(2602), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_SLASH] = ACTIONS(2602), + [anon_sym_PERCENT] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2600), + [anon_sym_PLUS_PLUS] = ACTIONS(2600), + [anon_sym_DOT] = ACTIONS(2600), + [anon_sym_DASH_GT] = ACTIONS(2600), [sym_comment] = ACTIONS(39), }, [735] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), + [sym_comment] = ACTIONS(39), + }, + [736] = { + [anon_sym_RPAREN] = ACTIONS(2604), + [sym_comment] = ACTIONS(39), + }, + [737] = { + [aux_sym_concatenated_string_repeat1] = STATE(737), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), [anon_sym_RBRACK] = ACTIONS(2549), [anon_sym_EQ] = ACTIONS(2551), [anon_sym_QMARK] = ACTIONS(2549), @@ -28064,58 +27863,393 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2551), [anon_sym_PLUS] = ACTIONS(2551), [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_DOT] = ACTIONS(2549), + [anon_sym_DASH_GT] = ACTIONS(2549), + [sym_string_literal] = ACTIONS(2606), [sym_comment] = ACTIONS(39), }, - [736] = { - [sym_storage_class_specifier] = STATE(724), - [sym_type_qualifier] = STATE(724), - [aux_sym__declaration_specifiers_repeat1] = STATE(724), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_RBRACK] = ACTIONS(626), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_BANG] = ACTIONS(626), - [anon_sym_TILDE] = ACTIONS(626), - [anon_sym_PLUS] = ACTIONS(628), - [anon_sym_DASH] = ACTIONS(628), - [anon_sym_DASH_DASH] = ACTIONS(626), - [anon_sym_PLUS_PLUS] = ACTIONS(626), - [anon_sym_sizeof] = ACTIONS(628), - [sym_number_literal] = ACTIONS(626), - [sym_char_literal] = ACTIONS(626), - [sym_string_literal] = ACTIONS(626), - [sym_true] = ACTIONS(628), - [sym_false] = ACTIONS(628), - [sym_null] = ACTIONS(628), - [sym_identifier] = ACTIONS(628), + [738] = { + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_COMMA] = ACTIONS(2609), + [anon_sym_RPAREN] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2609), [sym_comment] = ACTIONS(39), }, - [737] = { - [anon_sym_LPAREN] = ACTIONS(2592), - [anon_sym_COMMA] = ACTIONS(2592), - [anon_sym_RPAREN] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2592), + [739] = { + [sym_storage_class_specifier] = STATE(739), + [sym_type_qualifier] = STATE(739), + [aux_sym__declaration_specifiers_repeat1] = STATE(739), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_extern] = ACTIONS(297), + [anon_sym_STAR] = ACTIONS(628), + [anon_sym_RBRACK] = ACTIONS(628), + [anon_sym_static] = ACTIONS(297), + [anon_sym_auto] = ACTIONS(297), + [anon_sym_register] = ACTIONS(297), + [anon_sym_inline] = ACTIONS(297), + [anon_sym_const] = ACTIONS(300), + [anon_sym_restrict] = ACTIONS(300), + [anon_sym_volatile] = ACTIONS(300), + [anon_sym__Atomic] = ACTIONS(300), + [anon_sym_AMP] = ACTIONS(628), + [anon_sym_BANG] = ACTIONS(628), + [anon_sym_TILDE] = ACTIONS(628), + [anon_sym_PLUS] = ACTIONS(303), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_DASH_DASH] = ACTIONS(628), + [anon_sym_PLUS_PLUS] = ACTIONS(628), + [anon_sym_sizeof] = ACTIONS(303), + [sym_number_literal] = ACTIONS(628), + [sym_char_literal] = ACTIONS(628), + [sym_string_literal] = ACTIONS(628), + [sym_true] = ACTIONS(303), + [sym_false] = ACTIONS(303), + [sym_null] = ACTIONS(303), + [sym_identifier] = ACTIONS(303), + [sym_comment] = ACTIONS(39), + }, + [740] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2576), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(2576), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [741] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(2611), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [742] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2580), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [743] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2584), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [744] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2584), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [745] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2580), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [746] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2580), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [747] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_STAR_EQ] = ACTIONS(2588), + [anon_sym_SLASH_EQ] = ACTIONS(2588), + [anon_sym_PERCENT_EQ] = ACTIONS(2588), + [anon_sym_PLUS_EQ] = ACTIONS(2588), + [anon_sym_DASH_EQ] = ACTIONS(2588), + [anon_sym_LT_LT_EQ] = ACTIONS(2588), + [anon_sym_GT_GT_EQ] = ACTIONS(2588), + [anon_sym_AMP_EQ] = ACTIONS(2588), + [anon_sym_CARET_EQ] = ACTIONS(2588), + [anon_sym_PIPE_EQ] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_CARET] = ACTIONS(2590), + [anon_sym_EQ_EQ] = ACTIONS(2588), + [anon_sym_BANG_EQ] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [748] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), [anon_sym_RBRACK] = ACTIONS(2592), [anon_sym_EQ] = ACTIONS(2594), - [anon_sym_COLON] = ACTIONS(2592), [anon_sym_QMARK] = ACTIONS(2592), [anon_sym_STAR_EQ] = ACTIONS(2592), [anon_sym_SLASH_EQ] = ACTIONS(2592), @@ -28138,698 +28272,858 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(2594), [anon_sym_LT_EQ] = ACTIONS(2592), [anon_sym_GT_EQ] = ACTIONS(2592), - [anon_sym_LT_LT] = ACTIONS(2594), - [anon_sym_GT_GT] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(2594), - [anon_sym_PERCENT] = ACTIONS(2594), - [anon_sym_DASH_DASH] = ACTIONS(2592), - [anon_sym_PLUS_PLUS] = ACTIONS(2592), - [anon_sym_DOT] = ACTIONS(2592), - [anon_sym_DASH_GT] = ACTIONS(2592), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [738] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), + [749] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), [anon_sym_RBRACK] = ACTIONS(2596), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_EQ] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2596), + [anon_sym_STAR_EQ] = ACTIONS(2596), + [anon_sym_SLASH_EQ] = ACTIONS(2596), + [anon_sym_PERCENT_EQ] = ACTIONS(2596), + [anon_sym_PLUS_EQ] = ACTIONS(2596), + [anon_sym_DASH_EQ] = ACTIONS(2596), + [anon_sym_LT_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_GT_EQ] = ACTIONS(2596), + [anon_sym_AMP_EQ] = ACTIONS(2596), + [anon_sym_CARET_EQ] = ACTIONS(2596), + [anon_sym_PIPE_EQ] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2598), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2598), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_GT] = ACTIONS(2598), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2598), + [anon_sym_GT_GT] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [739] = { - [anon_sym_LBRACK] = ACTIONS(2598), - [anon_sym_EQ] = ACTIONS(2598), - [anon_sym_DOT] = ACTIONS(2598), + [750] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2570), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2570), + [anon_sym_STAR_EQ] = ACTIONS(2570), + [anon_sym_SLASH_EQ] = ACTIONS(2570), + [anon_sym_PERCENT_EQ] = ACTIONS(2570), + [anon_sym_PLUS_EQ] = ACTIONS(2570), + [anon_sym_DASH_EQ] = ACTIONS(2570), + [anon_sym_LT_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_GT_EQ] = ACTIONS(2570), + [anon_sym_AMP_EQ] = ACTIONS(2570), + [anon_sym_CARET_EQ] = ACTIONS(2570), + [anon_sym_PIPE_EQ] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [740] = { - [sym__expression] = STATE(943), - [sym_conditional_expression] = STATE(943), - [sym_assignment_expression] = STATE(943), - [sym_pointer_expression] = STATE(943), - [sym_logical_expression] = STATE(943), - [sym_bitwise_expression] = STATE(943), - [sym_equality_expression] = STATE(943), - [sym_relational_expression] = STATE(943), - [sym_shift_expression] = STATE(943), - [sym_math_expression] = STATE(943), - [sym_cast_expression] = STATE(943), - [sym_sizeof_expression] = STATE(943), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(943), - [sym_parenthesized_expression] = STATE(943), - [sym_initializer_list] = STATE(944), - [sym_initializer_pair] = STATE(944), - [sym_subscript_designator] = STATE(483), - [sym_field_designator] = STATE(483), - [sym_concatenated_string] = STATE(943), - [aux_sym_initializer_pair_repeat1] = STATE(483), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(2602), - [sym_char_literal] = ACTIONS(2602), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2604), - [sym_false] = ACTIONS(2604), - [sym_null] = ACTIONS(2604), - [sym_identifier] = ACTIONS(2604), + [751] = { + [sym_storage_class_specifier] = STATE(739), + [sym_type_qualifier] = STATE(739), + [aux_sym__declaration_specifiers_repeat1] = STATE(739), + [anon_sym_LPAREN] = ACTIONS(630), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(630), + [anon_sym_BANG] = ACTIONS(630), + [anon_sym_TILDE] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(632), + [anon_sym_DASH_DASH] = ACTIONS(630), + [anon_sym_PLUS_PLUS] = ACTIONS(630), + [anon_sym_sizeof] = ACTIONS(632), + [sym_number_literal] = ACTIONS(630), + [sym_char_literal] = ACTIONS(630), + [sym_string_literal] = ACTIONS(630), + [sym_true] = ACTIONS(632), + [sym_false] = ACTIONS(632), + [sym_null] = ACTIONS(632), + [sym_identifier] = ACTIONS(632), [sym_comment] = ACTIONS(39), }, - [741] = { - [aux_sym_initializer_list_repeat1] = STATE(946), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2600), + [752] = { + [anon_sym_LPAREN] = ACTIONS(2613), + [anon_sym_COMMA] = ACTIONS(2613), + [anon_sym_RPAREN] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2613), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2613), + [anon_sym_RBRACK] = ACTIONS(2613), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_COLON] = ACTIONS(2613), + [anon_sym_QMARK] = ACTIONS(2613), + [anon_sym_STAR_EQ] = ACTIONS(2613), + [anon_sym_SLASH_EQ] = ACTIONS(2613), + [anon_sym_PERCENT_EQ] = ACTIONS(2613), + [anon_sym_PLUS_EQ] = ACTIONS(2613), + [anon_sym_DASH_EQ] = ACTIONS(2613), + [anon_sym_LT_LT_EQ] = ACTIONS(2613), + [anon_sym_GT_GT_EQ] = ACTIONS(2613), + [anon_sym_AMP_EQ] = ACTIONS(2613), + [anon_sym_CARET_EQ] = ACTIONS(2613), + [anon_sym_PIPE_EQ] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2613), + [anon_sym_BANG_EQ] = ACTIONS(2613), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2613), + [anon_sym_GT_EQ] = ACTIONS(2613), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_DOT] = ACTIONS(2613), + [anon_sym_DASH_GT] = ACTIONS(2613), [sym_comment] = ACTIONS(39), }, - [742] = { - [sym__expression] = STATE(947), - [sym_conditional_expression] = STATE(947), - [sym_assignment_expression] = STATE(947), - [sym_pointer_expression] = STATE(947), - [sym_logical_expression] = STATE(947), - [sym_bitwise_expression] = STATE(947), - [sym_equality_expression] = STATE(947), - [sym_relational_expression] = STATE(947), - [sym_shift_expression] = STATE(947), - [sym_math_expression] = STATE(947), - [sym_cast_expression] = STATE(947), - [sym_sizeof_expression] = STATE(947), - [sym_subscript_expression] = STATE(947), - [sym_call_expression] = STATE(947), - [sym_field_expression] = STATE(947), - [sym_compound_literal_expression] = STATE(947), - [sym_parenthesized_expression] = STATE(947), - [sym_initializer_list] = STATE(948), - [sym_concatenated_string] = STATE(947), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2608), - [sym_char_literal] = ACTIONS(2608), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_identifier] = ACTIONS(2610), + [753] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2617), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [743] = { - [sym_subscript_designator] = STATE(743), - [sym_field_designator] = STATE(743), - [aux_sym_initializer_pair_repeat1] = STATE(743), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_EQ] = ACTIONS(2615), - [anon_sym_DOT] = ACTIONS(2617), + [754] = { + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2619), + [anon_sym_DOT] = ACTIONS(2619), [sym_comment] = ACTIONS(39), }, - [744] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1183), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1183), - [sym_char_literal] = ACTIONS(1183), - [sym_string_literal] = ACTIONS(1183), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [sym_null] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1185), + [755] = { + [sym__expression] = STATE(960), + [sym_conditional_expression] = STATE(960), + [sym_assignment_expression] = STATE(960), + [sym_pointer_expression] = STATE(960), + [sym_logical_expression] = STATE(960), + [sym_bitwise_expression] = STATE(960), + [sym_equality_expression] = STATE(960), + [sym_relational_expression] = STATE(960), + [sym_shift_expression] = STATE(960), + [sym_math_expression] = STATE(960), + [sym_cast_expression] = STATE(960), + [sym_sizeof_expression] = STATE(960), + [sym_subscript_expression] = STATE(960), + [sym_call_expression] = STATE(960), + [sym_field_expression] = STATE(960), + [sym_compound_literal_expression] = STATE(960), + [sym_parenthesized_expression] = STATE(960), + [sym_initializer_list] = STATE(961), + [sym_initializer_pair] = STATE(961), + [sym_subscript_designator] = STATE(493), + [sym_field_designator] = STATE(493), + [sym_concatenated_string] = STATE(960), + [aux_sym_initializer_pair_repeat1] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1180), + [sym_number_literal] = ACTIONS(2623), + [sym_char_literal] = ACTIONS(2623), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2625), + [sym_false] = ACTIONS(2625), + [sym_null] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2625), [sym_comment] = ACTIONS(39), }, - [745] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1195), - [sym_preproc_directive] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1195), - [anon_sym_extern] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_auto] = ACTIONS(1195), - [anon_sym_register] = ACTIONS(1195), - [anon_sym_inline] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(1195), - [anon_sym_restrict] = ACTIONS(1195), - [anon_sym_volatile] = ACTIONS(1195), - [anon_sym__Atomic] = ACTIONS(1195), - [anon_sym_unsigned] = ACTIONS(1195), - [anon_sym_long] = ACTIONS(1195), - [anon_sym_short] = ACTIONS(1195), - [sym_primitive_type] = ACTIONS(1195), - [anon_sym_enum] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_union] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_goto] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_sizeof] = ACTIONS(1195), - [sym_number_literal] = ACTIONS(1193), - [sym_char_literal] = ACTIONS(1193), - [sym_string_literal] = ACTIONS(1193), - [sym_true] = ACTIONS(1195), - [sym_false] = ACTIONS(1195), - [sym_null] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1195), + [756] = { + [aux_sym_initializer_list_repeat1] = STATE(963), + [anon_sym_COMMA] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2621), [sym_comment] = ACTIONS(39), }, - [746] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1275), - [sym_preproc_directive] = ACTIONS(1275), - [anon_sym_typedef] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_auto] = ACTIONS(1275), - [anon_sym_register] = ACTIONS(1275), - [anon_sym_inline] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_restrict] = ACTIONS(1275), - [anon_sym_volatile] = ACTIONS(1275), - [anon_sym__Atomic] = ACTIONS(1275), - [anon_sym_unsigned] = ACTIONS(1275), - [anon_sym_long] = ACTIONS(1275), - [anon_sym_short] = ACTIONS(1275), - [sym_primitive_type] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [sym_identifier] = ACTIONS(1275), + [757] = { + [sym__expression] = STATE(964), + [sym_conditional_expression] = STATE(964), + [sym_assignment_expression] = STATE(964), + [sym_pointer_expression] = STATE(964), + [sym_logical_expression] = STATE(964), + [sym_bitwise_expression] = STATE(964), + [sym_equality_expression] = STATE(964), + [sym_relational_expression] = STATE(964), + [sym_shift_expression] = STATE(964), + [sym_math_expression] = STATE(964), + [sym_cast_expression] = STATE(964), + [sym_sizeof_expression] = STATE(964), + [sym_subscript_expression] = STATE(964), + [sym_call_expression] = STATE(964), + [sym_field_expression] = STATE(964), + [sym_compound_literal_expression] = STATE(964), + [sym_parenthesized_expression] = STATE(964), + [sym_initializer_list] = STATE(965), + [sym_concatenated_string] = STATE(964), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2629), + [sym_char_literal] = ACTIONS(2629), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_identifier] = ACTIONS(2631), [sym_comment] = ACTIONS(39), }, - [747] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1279), - [sym_preproc_directive] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_auto] = ACTIONS(1279), - [anon_sym_register] = ACTIONS(1279), - [anon_sym_inline] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_restrict] = ACTIONS(1279), - [anon_sym_volatile] = ACTIONS(1279), - [anon_sym__Atomic] = ACTIONS(1279), - [anon_sym_unsigned] = ACTIONS(1279), - [anon_sym_long] = ACTIONS(1279), - [anon_sym_short] = ACTIONS(1279), - [sym_primitive_type] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [anon_sym_struct] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [sym_identifier] = ACTIONS(1279), + [758] = { + [sym_subscript_designator] = STATE(758), + [sym_field_designator] = STATE(758), + [aux_sym_initializer_pair_repeat1] = STATE(758), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_EQ] = ACTIONS(2636), + [anon_sym_DOT] = ACTIONS(2638), [sym_comment] = ACTIONS(39), }, - [748] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1283), - [sym_preproc_directive] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1283), - [anon_sym_auto] = ACTIONS(1283), - [anon_sym_register] = ACTIONS(1283), - [anon_sym_inline] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_restrict] = ACTIONS(1283), - [anon_sym_volatile] = ACTIONS(1283), - [anon_sym__Atomic] = ACTIONS(1283), - [anon_sym_unsigned] = ACTIONS(1283), - [anon_sym_long] = ACTIONS(1283), - [anon_sym_short] = ACTIONS(1283), - [sym_primitive_type] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [anon_sym_struct] = ACTIONS(1283), - [anon_sym_union] = ACTIONS(1283), - [sym_identifier] = ACTIONS(1283), + [759] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1195), + [sym_char_literal] = ACTIONS(1195), + [sym_string_literal] = ACTIONS(1195), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [sym_null] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1197), [sym_comment] = ACTIONS(39), }, - [749] = { - [anon_sym_LF] = ACTIONS(2620), + [760] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1205), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1205), + [sym_char_literal] = ACTIONS(1205), + [sym_string_literal] = ACTIONS(1205), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [sym_null] = ACTIONS(1207), + [sym_identifier] = ACTIONS(1207), + [sym_comment] = ACTIONS(39), + }, + [761] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1287), + [sym_comment] = ACTIONS(39), + }, + [762] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1291), + [sym_comment] = ACTIONS(39), + }, + [763] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [sym_identifier] = ACTIONS(1295), + [sym_comment] = ACTIONS(39), + }, + [764] = { + [anon_sym_LF] = ACTIONS(2641), [sym_comment] = ACTIONS(47), }, - [750] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(638), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(640), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(640), - [sym_preproc_directive] = ACTIONS(640), - [anon_sym_SEMI] = ACTIONS(638), - [anon_sym_typedef] = ACTIONS(640), - [anon_sym_extern] = ACTIONS(640), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_STAR] = ACTIONS(638), - [anon_sym_static] = ACTIONS(640), - [anon_sym_auto] = ACTIONS(640), - [anon_sym_register] = ACTIONS(640), - [anon_sym_inline] = ACTIONS(640), - [anon_sym_const] = ACTIONS(640), - [anon_sym_restrict] = ACTIONS(640), - [anon_sym_volatile] = ACTIONS(640), - [anon_sym__Atomic] = ACTIONS(640), - [anon_sym_unsigned] = ACTIONS(640), - [anon_sym_long] = ACTIONS(640), - [anon_sym_short] = ACTIONS(640), - [sym_primitive_type] = ACTIONS(640), - [anon_sym_enum] = ACTIONS(640), - [anon_sym_struct] = ACTIONS(640), - [anon_sym_union] = ACTIONS(640), - [anon_sym_if] = ACTIONS(640), - [anon_sym_switch] = ACTIONS(640), - [anon_sym_case] = ACTIONS(640), - [anon_sym_default] = ACTIONS(640), - [anon_sym_while] = ACTIONS(640), - [anon_sym_do] = ACTIONS(640), - [anon_sym_for] = ACTIONS(640), - [anon_sym_return] = ACTIONS(640), - [anon_sym_break] = ACTIONS(640), - [anon_sym_continue] = ACTIONS(640), - [anon_sym_goto] = ACTIONS(640), - [anon_sym_AMP] = ACTIONS(638), - [anon_sym_BANG] = ACTIONS(638), - [anon_sym_TILDE] = ACTIONS(638), - [anon_sym_PLUS] = ACTIONS(640), - [anon_sym_DASH] = ACTIONS(640), - [anon_sym_DASH_DASH] = ACTIONS(638), - [anon_sym_PLUS_PLUS] = ACTIONS(638), - [anon_sym_sizeof] = ACTIONS(640), - [sym_number_literal] = ACTIONS(638), - [sym_char_literal] = ACTIONS(638), - [sym_string_literal] = ACTIONS(638), - [sym_true] = ACTIONS(640), - [sym_false] = ACTIONS(640), - [sym_null] = ACTIONS(640), - [sym_identifier] = ACTIONS(640), + [765] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(644), + [anon_sym_LPAREN] = ACTIONS(642), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(644), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(644), + [sym_preproc_directive] = ACTIONS(644), + [anon_sym_SEMI] = ACTIONS(642), + [anon_sym_typedef] = ACTIONS(644), + [anon_sym_extern] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(642), + [anon_sym_static] = ACTIONS(644), + [anon_sym_auto] = ACTIONS(644), + [anon_sym_register] = ACTIONS(644), + [anon_sym_inline] = ACTIONS(644), + [anon_sym_const] = ACTIONS(644), + [anon_sym_restrict] = ACTIONS(644), + [anon_sym_volatile] = ACTIONS(644), + [anon_sym__Atomic] = ACTIONS(644), + [anon_sym_unsigned] = ACTIONS(644), + [anon_sym_long] = ACTIONS(644), + [anon_sym_short] = ACTIONS(644), + [sym_primitive_type] = ACTIONS(644), + [anon_sym_enum] = ACTIONS(644), + [anon_sym_struct] = ACTIONS(644), + [anon_sym_union] = ACTIONS(644), + [anon_sym_if] = ACTIONS(644), + [anon_sym_switch] = ACTIONS(644), + [anon_sym_case] = ACTIONS(644), + [anon_sym_default] = ACTIONS(644), + [anon_sym_while] = ACTIONS(644), + [anon_sym_do] = ACTIONS(644), + [anon_sym_for] = ACTIONS(644), + [anon_sym_return] = ACTIONS(644), + [anon_sym_break] = ACTIONS(644), + [anon_sym_continue] = ACTIONS(644), + [anon_sym_goto] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(642), + [anon_sym_BANG] = ACTIONS(642), + [anon_sym_TILDE] = ACTIONS(642), + [anon_sym_PLUS] = ACTIONS(644), + [anon_sym_DASH] = ACTIONS(644), + [anon_sym_DASH_DASH] = ACTIONS(642), + [anon_sym_PLUS_PLUS] = ACTIONS(642), + [anon_sym_sizeof] = ACTIONS(644), + [sym_number_literal] = ACTIONS(642), + [sym_char_literal] = ACTIONS(642), + [sym_string_literal] = ACTIONS(642), + [sym_true] = ACTIONS(644), + [sym_false] = ACTIONS(644), + [sym_null] = ACTIONS(644), + [sym_identifier] = ACTIONS(644), [sym_comment] = ACTIONS(39), }, - [751] = { - [anon_sym_LF] = ACTIONS(2622), + [766] = { + [anon_sym_LF] = ACTIONS(2643), [sym_comment] = ACTIONS(47), }, - [752] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(688), - [sym_preproc_directive] = ACTIONS(688), - [anon_sym_typedef] = ACTIONS(688), - [anon_sym_extern] = ACTIONS(688), - [anon_sym_static] = ACTIONS(688), - [anon_sym_auto] = ACTIONS(688), - [anon_sym_register] = ACTIONS(688), - [anon_sym_inline] = ACTIONS(688), - [anon_sym_const] = ACTIONS(688), - [anon_sym_restrict] = ACTIONS(688), - [anon_sym_volatile] = ACTIONS(688), - [anon_sym__Atomic] = ACTIONS(688), - [anon_sym_unsigned] = ACTIONS(688), - [anon_sym_long] = ACTIONS(688), - [anon_sym_short] = ACTIONS(688), - [sym_primitive_type] = ACTIONS(688), - [anon_sym_enum] = ACTIONS(688), - [anon_sym_struct] = ACTIONS(688), - [anon_sym_union] = ACTIONS(688), - [sym_identifier] = ACTIONS(688), + [767] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(692), + [sym_preproc_directive] = ACTIONS(692), + [anon_sym_typedef] = ACTIONS(692), + [anon_sym_extern] = ACTIONS(692), + [anon_sym_static] = ACTIONS(692), + [anon_sym_auto] = ACTIONS(692), + [anon_sym_register] = ACTIONS(692), + [anon_sym_inline] = ACTIONS(692), + [anon_sym_const] = ACTIONS(692), + [anon_sym_restrict] = ACTIONS(692), + [anon_sym_volatile] = ACTIONS(692), + [anon_sym__Atomic] = ACTIONS(692), + [anon_sym_unsigned] = ACTIONS(692), + [anon_sym_long] = ACTIONS(692), + [anon_sym_short] = ACTIONS(692), + [sym_primitive_type] = ACTIONS(692), + [anon_sym_enum] = ACTIONS(692), + [anon_sym_struct] = ACTIONS(692), + [anon_sym_union] = ACTIONS(692), + [sym_identifier] = ACTIONS(692), [sym_comment] = ACTIONS(39), }, - [753] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2624), + [768] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2645), [sym_comment] = ACTIONS(39), }, - [754] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(724), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(724), - [sym_preproc_directive] = ACTIONS(724), - [anon_sym_typedef] = ACTIONS(724), - [anon_sym_extern] = ACTIONS(724), - [anon_sym_static] = ACTIONS(724), - [anon_sym_auto] = ACTIONS(724), - [anon_sym_register] = ACTIONS(724), - [anon_sym_inline] = ACTIONS(724), - [anon_sym_const] = ACTIONS(724), - [anon_sym_restrict] = ACTIONS(724), - [anon_sym_volatile] = ACTIONS(724), - [anon_sym__Atomic] = ACTIONS(724), - [anon_sym_unsigned] = ACTIONS(724), - [anon_sym_long] = ACTIONS(724), - [anon_sym_short] = ACTIONS(724), - [sym_primitive_type] = ACTIONS(724), - [anon_sym_enum] = ACTIONS(724), - [anon_sym_struct] = ACTIONS(724), - [anon_sym_union] = ACTIONS(724), - [sym_identifier] = ACTIONS(724), + [769] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(728), + [sym_preproc_directive] = ACTIONS(728), + [anon_sym_typedef] = ACTIONS(728), + [anon_sym_extern] = ACTIONS(728), + [anon_sym_static] = ACTIONS(728), + [anon_sym_auto] = ACTIONS(728), + [anon_sym_register] = ACTIONS(728), + [anon_sym_inline] = ACTIONS(728), + [anon_sym_const] = ACTIONS(728), + [anon_sym_restrict] = ACTIONS(728), + [anon_sym_volatile] = ACTIONS(728), + [anon_sym__Atomic] = ACTIONS(728), + [anon_sym_unsigned] = ACTIONS(728), + [anon_sym_long] = ACTIONS(728), + [anon_sym_short] = ACTIONS(728), + [sym_primitive_type] = ACTIONS(728), + [anon_sym_enum] = ACTIONS(728), + [anon_sym_struct] = ACTIONS(728), + [anon_sym_union] = ACTIONS(728), + [sym_identifier] = ACTIONS(728), [sym_comment] = ACTIONS(39), }, - [755] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2626), + [770] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2647), [sym_comment] = ACTIONS(39), }, - [756] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(730), - [sym_preproc_directive] = ACTIONS(730), - [anon_sym_typedef] = ACTIONS(730), - [anon_sym_extern] = ACTIONS(730), - [anon_sym_static] = ACTIONS(730), - [anon_sym_auto] = ACTIONS(730), - [anon_sym_register] = ACTIONS(730), - [anon_sym_inline] = ACTIONS(730), - [anon_sym_const] = ACTIONS(730), - [anon_sym_restrict] = ACTIONS(730), - [anon_sym_volatile] = ACTIONS(730), - [anon_sym__Atomic] = ACTIONS(730), - [anon_sym_unsigned] = ACTIONS(730), - [anon_sym_long] = ACTIONS(730), - [anon_sym_short] = ACTIONS(730), - [sym_primitive_type] = ACTIONS(730), - [anon_sym_enum] = ACTIONS(730), - [anon_sym_struct] = ACTIONS(730), - [anon_sym_union] = ACTIONS(730), - [sym_identifier] = ACTIONS(730), + [771] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(734), + [sym_preproc_directive] = ACTIONS(734), + [anon_sym_typedef] = ACTIONS(734), + [anon_sym_extern] = ACTIONS(734), + [anon_sym_static] = ACTIONS(734), + [anon_sym_auto] = ACTIONS(734), + [anon_sym_register] = ACTIONS(734), + [anon_sym_inline] = ACTIONS(734), + [anon_sym_const] = ACTIONS(734), + [anon_sym_restrict] = ACTIONS(734), + [anon_sym_volatile] = ACTIONS(734), + [anon_sym__Atomic] = ACTIONS(734), + [anon_sym_unsigned] = ACTIONS(734), + [anon_sym_long] = ACTIONS(734), + [anon_sym_short] = ACTIONS(734), + [sym_primitive_type] = ACTIONS(734), + [anon_sym_enum] = ACTIONS(734), + [anon_sym_struct] = ACTIONS(734), + [anon_sym_union] = ACTIONS(734), + [sym_identifier] = ACTIONS(734), [sym_comment] = ACTIONS(39), }, - [757] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2628), + [772] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2649), [sym_comment] = ACTIONS(39), }, - [758] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(736), - [anon_sym_LPAREN] = ACTIONS(734), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(736), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(736), - [sym_preproc_directive] = ACTIONS(736), - [anon_sym_SEMI] = ACTIONS(734), - [anon_sym_typedef] = ACTIONS(736), - [anon_sym_extern] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_STAR] = ACTIONS(734), - [anon_sym_static] = ACTIONS(736), - [anon_sym_auto] = ACTIONS(736), - [anon_sym_register] = ACTIONS(736), - [anon_sym_inline] = ACTIONS(736), - [anon_sym_const] = ACTIONS(736), - [anon_sym_restrict] = ACTIONS(736), - [anon_sym_volatile] = ACTIONS(736), - [anon_sym__Atomic] = ACTIONS(736), - [anon_sym_unsigned] = ACTIONS(736), - [anon_sym_long] = ACTIONS(736), - [anon_sym_short] = ACTIONS(736), - [sym_primitive_type] = ACTIONS(736), - [anon_sym_enum] = ACTIONS(736), - [anon_sym_struct] = ACTIONS(736), - [anon_sym_union] = ACTIONS(736), - [anon_sym_if] = ACTIONS(736), - [anon_sym_switch] = ACTIONS(736), - [anon_sym_case] = ACTIONS(736), - [anon_sym_default] = ACTIONS(736), - [anon_sym_while] = ACTIONS(736), - [anon_sym_do] = ACTIONS(736), - [anon_sym_for] = ACTIONS(736), - [anon_sym_return] = ACTIONS(736), - [anon_sym_break] = ACTIONS(736), - [anon_sym_continue] = ACTIONS(736), - [anon_sym_goto] = ACTIONS(736), - [anon_sym_AMP] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_TILDE] = ACTIONS(734), - [anon_sym_PLUS] = ACTIONS(736), - [anon_sym_DASH] = ACTIONS(736), - [anon_sym_DASH_DASH] = ACTIONS(734), - [anon_sym_PLUS_PLUS] = ACTIONS(734), - [anon_sym_sizeof] = ACTIONS(736), - [sym_number_literal] = ACTIONS(734), - [sym_char_literal] = ACTIONS(734), - [sym_string_literal] = ACTIONS(734), - [sym_true] = ACTIONS(736), - [sym_false] = ACTIONS(736), - [sym_null] = ACTIONS(736), - [sym_identifier] = ACTIONS(736), + [773] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(740), + [sym_preproc_directive] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_typedef] = ACTIONS(740), + [anon_sym_extern] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_static] = ACTIONS(740), + [anon_sym_auto] = ACTIONS(740), + [anon_sym_register] = ACTIONS(740), + [anon_sym_inline] = ACTIONS(740), + [anon_sym_const] = ACTIONS(740), + [anon_sym_restrict] = ACTIONS(740), + [anon_sym_volatile] = ACTIONS(740), + [anon_sym__Atomic] = ACTIONS(740), + [anon_sym_unsigned] = ACTIONS(740), + [anon_sym_long] = ACTIONS(740), + [anon_sym_short] = ACTIONS(740), + [sym_primitive_type] = ACTIONS(740), + [anon_sym_enum] = ACTIONS(740), + [anon_sym_struct] = ACTIONS(740), + [anon_sym_union] = ACTIONS(740), + [anon_sym_if] = ACTIONS(740), + [anon_sym_switch] = ACTIONS(740), + [anon_sym_case] = ACTIONS(740), + [anon_sym_default] = ACTIONS(740), + [anon_sym_while] = ACTIONS(740), + [anon_sym_do] = ACTIONS(740), + [anon_sym_for] = ACTIONS(740), + [anon_sym_return] = ACTIONS(740), + [anon_sym_break] = ACTIONS(740), + [anon_sym_continue] = ACTIONS(740), + [anon_sym_goto] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_TILDE] = ACTIONS(738), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(738), + [anon_sym_PLUS_PLUS] = ACTIONS(738), + [anon_sym_sizeof] = ACTIONS(740), + [sym_number_literal] = ACTIONS(738), + [sym_char_literal] = ACTIONS(738), + [sym_string_literal] = ACTIONS(738), + [sym_true] = ACTIONS(740), + [sym_false] = ACTIONS(740), + [sym_null] = ACTIONS(740), + [sym_identifier] = ACTIONS(740), [sym_comment] = ACTIONS(39), }, - [759] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(742), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(744), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(744), - [sym_preproc_directive] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(742), - [anon_sym_typedef] = ACTIONS(744), - [anon_sym_extern] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_static] = ACTIONS(744), - [anon_sym_auto] = ACTIONS(744), - [anon_sym_register] = ACTIONS(744), - [anon_sym_inline] = ACTIONS(744), - [anon_sym_const] = ACTIONS(744), - [anon_sym_restrict] = ACTIONS(744), - [anon_sym_volatile] = ACTIONS(744), - [anon_sym__Atomic] = ACTIONS(744), - [anon_sym_unsigned] = ACTIONS(744), - [anon_sym_long] = ACTIONS(744), - [anon_sym_short] = ACTIONS(744), - [sym_primitive_type] = ACTIONS(744), - [anon_sym_enum] = ACTIONS(744), - [anon_sym_struct] = ACTIONS(744), - [anon_sym_union] = ACTIONS(744), - [anon_sym_if] = ACTIONS(744), - [anon_sym_else] = ACTIONS(744), - [anon_sym_switch] = ACTIONS(744), - [anon_sym_case] = ACTIONS(744), - [anon_sym_default] = ACTIONS(744), - [anon_sym_while] = ACTIONS(744), - [anon_sym_do] = ACTIONS(744), - [anon_sym_for] = ACTIONS(744), - [anon_sym_return] = ACTIONS(744), - [anon_sym_break] = ACTIONS(744), - [anon_sym_continue] = ACTIONS(744), - [anon_sym_goto] = ACTIONS(744), - [anon_sym_AMP] = ACTIONS(742), - [anon_sym_BANG] = ACTIONS(742), - [anon_sym_TILDE] = ACTIONS(742), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_DASH_DASH] = ACTIONS(742), - [anon_sym_PLUS_PLUS] = ACTIONS(742), - [anon_sym_sizeof] = ACTIONS(744), - [sym_number_literal] = ACTIONS(742), - [sym_char_literal] = ACTIONS(742), - [sym_string_literal] = ACTIONS(742), - [sym_true] = ACTIONS(744), - [sym_false] = ACTIONS(744), - [sym_null] = ACTIONS(744), - [sym_identifier] = ACTIONS(744), + [774] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(746), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(748), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(748), + [sym_preproc_directive] = ACTIONS(748), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_typedef] = ACTIONS(748), + [anon_sym_extern] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_static] = ACTIONS(748), + [anon_sym_auto] = ACTIONS(748), + [anon_sym_register] = ACTIONS(748), + [anon_sym_inline] = ACTIONS(748), + [anon_sym_const] = ACTIONS(748), + [anon_sym_restrict] = ACTIONS(748), + [anon_sym_volatile] = ACTIONS(748), + [anon_sym__Atomic] = ACTIONS(748), + [anon_sym_unsigned] = ACTIONS(748), + [anon_sym_long] = ACTIONS(748), + [anon_sym_short] = ACTIONS(748), + [sym_primitive_type] = ACTIONS(748), + [anon_sym_enum] = ACTIONS(748), + [anon_sym_struct] = ACTIONS(748), + [anon_sym_union] = ACTIONS(748), + [anon_sym_if] = ACTIONS(748), + [anon_sym_else] = ACTIONS(748), + [anon_sym_switch] = ACTIONS(748), + [anon_sym_case] = ACTIONS(748), + [anon_sym_default] = ACTIONS(748), + [anon_sym_while] = ACTIONS(748), + [anon_sym_do] = ACTIONS(748), + [anon_sym_for] = ACTIONS(748), + [anon_sym_return] = ACTIONS(748), + [anon_sym_break] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(748), + [anon_sym_goto] = ACTIONS(748), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(746), + [anon_sym_sizeof] = ACTIONS(748), + [sym_number_literal] = ACTIONS(746), + [sym_char_literal] = ACTIONS(746), + [sym_string_literal] = ACTIONS(746), + [sym_true] = ACTIONS(748), + [sym_false] = ACTIONS(748), + [sym_null] = ACTIONS(748), + [sym_identifier] = ACTIONS(748), [sym_comment] = ACTIONS(39), }, - [760] = { - [sym_parameter_list] = STATE(173), + [775] = { + [sym_parameter_list] = STATE(175), [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_SEMI] = ACTIONS(2630), - [anon_sym_LBRACK] = ACTIONS(408), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(410), [sym_comment] = ACTIONS(39), }, - [761] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(758), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(758), - [sym_preproc_directive] = ACTIONS(758), - [anon_sym_typedef] = ACTIONS(758), - [anon_sym_extern] = ACTIONS(758), - [anon_sym_static] = ACTIONS(758), - [anon_sym_auto] = ACTIONS(758), - [anon_sym_register] = ACTIONS(758), - [anon_sym_inline] = ACTIONS(758), - [anon_sym_const] = ACTIONS(758), - [anon_sym_restrict] = ACTIONS(758), - [anon_sym_volatile] = ACTIONS(758), - [anon_sym__Atomic] = ACTIONS(758), - [anon_sym_unsigned] = ACTIONS(758), - [anon_sym_long] = ACTIONS(758), - [anon_sym_short] = ACTIONS(758), - [sym_primitive_type] = ACTIONS(758), - [anon_sym_enum] = ACTIONS(758), - [anon_sym_struct] = ACTIONS(758), - [anon_sym_union] = ACTIONS(758), - [sym_identifier] = ACTIONS(758), + [776] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(762), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(762), + [sym_preproc_directive] = ACTIONS(762), + [anon_sym_typedef] = ACTIONS(762), + [anon_sym_extern] = ACTIONS(762), + [anon_sym_static] = ACTIONS(762), + [anon_sym_auto] = ACTIONS(762), + [anon_sym_register] = ACTIONS(762), + [anon_sym_inline] = ACTIONS(762), + [anon_sym_const] = ACTIONS(762), + [anon_sym_restrict] = ACTIONS(762), + [anon_sym_volatile] = ACTIONS(762), + [anon_sym__Atomic] = ACTIONS(762), + [anon_sym_unsigned] = ACTIONS(762), + [anon_sym_long] = ACTIONS(762), + [anon_sym_short] = ACTIONS(762), + [sym_primitive_type] = ACTIONS(762), + [anon_sym_enum] = ACTIONS(762), + [anon_sym_struct] = ACTIONS(762), + [anon_sym_union] = ACTIONS(762), + [sym_identifier] = ACTIONS(762), [sym_comment] = ACTIONS(39), }, - [762] = { - [sym_preproc_include] = STATE(320), - [sym_preproc_def] = STATE(320), - [sym_preproc_function_def] = STATE(320), - [sym_preproc_call] = STATE(320), - [sym_preproc_if] = STATE(320), - [sym_preproc_ifdef] = STATE(320), - [sym_function_definition] = STATE(320), - [sym_declaration] = STATE(320), - [sym_type_definition] = STATE(320), + [777] = { + [sym_preproc_include] = STATE(327), + [sym_preproc_def] = STATE(327), + [sym_preproc_function_def] = STATE(327), + [sym_preproc_call] = STATE(327), + [sym_preproc_if] = STATE(327), + [sym_preproc_ifdef] = STATE(327), + [sym_function_definition] = STATE(327), + [sym_declaration] = STATE(327), + [sym_type_definition] = STATE(327), [sym__declaration_specifiers] = STATE(17), - [sym_linkage_specification] = STATE(320), + [sym_linkage_specification] = STATE(327), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -28837,9 +29131,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym__empty_declaration] = STATE(320), + [sym__empty_declaration] = STATE(327), [sym_macro_type_specifier] = STATE(18), - [aux_sym_translation_unit_repeat1] = STATE(320), + [aux_sym_translation_unit_repeat1] = STATE(327), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -28850,7 +29144,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(17), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(21), - [anon_sym_RBRACE] = ACTIONS(2632), + [anon_sym_RBRACE] = ACTIONS(2653), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -28869,75 +29163,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [763] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(962), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(964), - [sym_preproc_directive] = ACTIONS(964), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_typedef] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_static] = ACTIONS(964), - [anon_sym_auto] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_inline] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [anon_sym_restrict] = ACTIONS(964), - [anon_sym_volatile] = ACTIONS(964), - [anon_sym__Atomic] = ACTIONS(964), - [anon_sym_unsigned] = ACTIONS(964), - [anon_sym_long] = ACTIONS(964), - [anon_sym_short] = ACTIONS(964), - [sym_primitive_type] = ACTIONS(964), - [anon_sym_enum] = ACTIONS(964), - [anon_sym_struct] = ACTIONS(964), - [anon_sym_union] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_switch] = ACTIONS(964), - [anon_sym_case] = ACTIONS(964), - [anon_sym_default] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_goto] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_TILDE] = ACTIONS(962), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(962), - [anon_sym_PLUS_PLUS] = ACTIONS(962), - [anon_sym_sizeof] = ACTIONS(964), - [sym_number_literal] = ACTIONS(962), - [sym_char_literal] = ACTIONS(962), - [sym_string_literal] = ACTIONS(962), - [sym_true] = ACTIONS(964), - [sym_false] = ACTIONS(964), - [sym_null] = ACTIONS(964), - [sym_identifier] = ACTIONS(964), + [778] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(976), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(976), + [sym_preproc_directive] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_typedef] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_static] = ACTIONS(976), + [anon_sym_auto] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [anon_sym_restrict] = ACTIONS(976), + [anon_sym_volatile] = ACTIONS(976), + [anon_sym__Atomic] = ACTIONS(976), + [anon_sym_unsigned] = ACTIONS(976), + [anon_sym_long] = ACTIONS(976), + [anon_sym_short] = ACTIONS(976), + [sym_primitive_type] = ACTIONS(976), + [anon_sym_enum] = ACTIONS(976), + [anon_sym_struct] = ACTIONS(976), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_switch] = ACTIONS(976), + [anon_sym_case] = ACTIONS(976), + [anon_sym_default] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_goto] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_TILDE] = ACTIONS(974), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_PLUS_PLUS] = ACTIONS(974), + [anon_sym_sizeof] = ACTIONS(976), + [sym_number_literal] = ACTIONS(974), + [sym_char_literal] = ACTIONS(974), + [sym_string_literal] = ACTIONS(974), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), + [sym_null] = ACTIONS(976), + [sym_identifier] = ACTIONS(976), [sym_comment] = ACTIONS(39), }, - [764] = { - [sym_preproc_include] = STATE(455), - [sym_preproc_def] = STATE(455), - [sym_preproc_function_def] = STATE(455), - [sym_preproc_call] = STATE(455), - [sym_preproc_if_in_compound_statement] = STATE(243), - [sym_preproc_ifdef_in_compound_statement] = STATE(244), - [sym_declaration] = STATE(455), - [sym_type_definition] = STATE(455), - [sym__declaration_specifiers] = STATE(245), - [sym_compound_statement] = STATE(455), + [779] = { + [sym_preproc_include] = STATE(465), + [sym_preproc_def] = STATE(465), + [sym_preproc_function_def] = STATE(465), + [sym_preproc_call] = STATE(465), + [sym_preproc_if_in_compound_statement] = STATE(248), + [sym_preproc_ifdef_in_compound_statement] = STATE(249), + [sym_declaration] = STATE(465), + [sym_type_definition] = STATE(465), + [sym__declaration_specifiers] = STATE(250), + [sym_compound_statement] = STATE(465), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -28945,55 +29239,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(455), - [sym_expression_statement] = STATE(455), - [sym_if_statement] = STATE(455), - [sym_switch_statement] = STATE(455), - [sym_case_statement] = STATE(455), - [sym_while_statement] = STATE(455), - [sym_do_statement] = STATE(455), - [sym_for_statement] = STATE(455), - [sym_return_statement] = STATE(455), - [sym_break_statement] = STATE(455), - [sym_continue_statement] = STATE(455), - [sym_goto_statement] = STATE(455), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [sym__empty_declaration] = STATE(455), + [sym_labeled_statement] = STATE(465), + [sym_expression_statement] = STATE(465), + [sym_if_statement] = STATE(465), + [sym_switch_statement] = STATE(465), + [sym_case_statement] = STATE(465), + [sym_while_statement] = STATE(465), + [sym_do_statement] = STATE(465), + [sym_for_statement] = STATE(465), + [sym_return_statement] = STATE(465), + [sym_break_statement] = STATE(465), + [sym_continue_statement] = STATE(465), + [sym_goto_statement] = STATE(465), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym__empty_declaration] = STATE(465), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(455), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(465), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(530), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(532), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(534), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(536), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(538), [sym_preproc_directive] = ACTIONS(17), - [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_RBRACE] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -29009,798 +29303,798 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), [sym_comment] = ACTIONS(39), }, - [765] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1178), - [sym_preproc_directive] = ACTIONS(1178), - [anon_sym_SEMI] = ACTIONS(1176), - [anon_sym_typedef] = ACTIONS(1178), - [anon_sym_extern] = ACTIONS(1178), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_STAR] = ACTIONS(1176), - [anon_sym_static] = ACTIONS(1178), - [anon_sym_auto] = ACTIONS(1178), - [anon_sym_register] = ACTIONS(1178), - [anon_sym_inline] = ACTIONS(1178), - [anon_sym_const] = ACTIONS(1178), - [anon_sym_restrict] = ACTIONS(1178), - [anon_sym_volatile] = ACTIONS(1178), - [anon_sym__Atomic] = ACTIONS(1178), - [anon_sym_unsigned] = ACTIONS(1178), - [anon_sym_long] = ACTIONS(1178), - [anon_sym_short] = ACTIONS(1178), - [sym_primitive_type] = ACTIONS(1178), - [anon_sym_enum] = ACTIONS(1178), - [anon_sym_struct] = ACTIONS(1178), - [anon_sym_union] = ACTIONS(1178), - [anon_sym_if] = ACTIONS(1178), - [anon_sym_else] = ACTIONS(1178), - [anon_sym_switch] = ACTIONS(1178), - [anon_sym_case] = ACTIONS(1178), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_while] = ACTIONS(1178), - [anon_sym_do] = ACTIONS(1178), - [anon_sym_for] = ACTIONS(1178), - [anon_sym_return] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(1178), - [anon_sym_continue] = ACTIONS(1178), - [anon_sym_goto] = ACTIONS(1178), - [anon_sym_AMP] = ACTIONS(1176), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_PLUS] = ACTIONS(1178), - [anon_sym_DASH] = ACTIONS(1178), - [anon_sym_DASH_DASH] = ACTIONS(1176), - [anon_sym_PLUS_PLUS] = ACTIONS(1176), - [anon_sym_sizeof] = ACTIONS(1178), - [sym_number_literal] = ACTIONS(1176), - [sym_char_literal] = ACTIONS(1176), - [sym_string_literal] = ACTIONS(1176), - [sym_true] = ACTIONS(1178), - [sym_false] = ACTIONS(1178), - [sym_null] = ACTIONS(1178), - [sym_identifier] = ACTIONS(1178), + [780] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1190), + [anon_sym_LPAREN] = ACTIONS(1188), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1190), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_SEMI] = ACTIONS(1188), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1188), + [anon_sym_STAR] = ACTIONS(1188), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = 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(1190), + [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_AMP] = ACTIONS(1188), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_TILDE] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1188), + [anon_sym_sizeof] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1188), + [sym_char_literal] = ACTIONS(1188), + [sym_string_literal] = ACTIONS(1188), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [sym_null] = ACTIONS(1190), + [sym_identifier] = ACTIONS(1190), [sym_comment] = ACTIONS(39), }, - [766] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1295), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1297), - [sym_preproc_directive] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_sizeof] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1295), - [sym_char_literal] = ACTIONS(1295), - [sym_string_literal] = ACTIONS(1295), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_identifier] = ACTIONS(1297), + [781] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1309), + [sym_char_literal] = ACTIONS(1309), + [sym_string_literal] = ACTIONS(1309), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [sym_null] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1311), [sym_comment] = ACTIONS(39), }, - [767] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1301), - [sym_preproc_directive] = ACTIONS(1301), - [anon_sym_typedef] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_auto] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_inline] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_restrict] = ACTIONS(1301), - [anon_sym_volatile] = ACTIONS(1301), - [anon_sym__Atomic] = ACTIONS(1301), - [anon_sym_unsigned] = ACTIONS(1301), - [anon_sym_long] = ACTIONS(1301), - [anon_sym_short] = ACTIONS(1301), - [sym_primitive_type] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [sym_identifier] = ACTIONS(1301), + [782] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [sym_identifier] = ACTIONS(1315), [sym_comment] = ACTIONS(39), }, - [768] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1775), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1777), - [sym_preproc_directive] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_typedef] = ACTIONS(1777), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_static] = ACTIONS(1777), - [anon_sym_auto] = ACTIONS(1777), - [anon_sym_register] = ACTIONS(1777), - [anon_sym_inline] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [anon_sym_restrict] = ACTIONS(1777), - [anon_sym_volatile] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1777), - [anon_sym_unsigned] = ACTIONS(1777), - [anon_sym_long] = ACTIONS(1777), - [anon_sym_short] = ACTIONS(1777), - [sym_primitive_type] = ACTIONS(1777), - [anon_sym_enum] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1777), - [anon_sym_case] = ACTIONS(1777), - [anon_sym_default] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_do] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_goto] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_BANG] = ACTIONS(1775), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_PLUS] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_sizeof] = ACTIONS(1777), - [sym_number_literal] = ACTIONS(1775), - [sym_char_literal] = ACTIONS(1775), - [sym_string_literal] = ACTIONS(1775), - [sym_true] = ACTIONS(1777), - [sym_false] = ACTIONS(1777), - [sym_null] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1777), + [783] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1791), + [sym_preproc_directive] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_typedef] = ACTIONS(1791), + [anon_sym_extern] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_auto] = ACTIONS(1791), + [anon_sym_register] = ACTIONS(1791), + [anon_sym_inline] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_restrict] = ACTIONS(1791), + [anon_sym_volatile] = ACTIONS(1791), + [anon_sym__Atomic] = ACTIONS(1791), + [anon_sym_unsigned] = ACTIONS(1791), + [anon_sym_long] = ACTIONS(1791), + [anon_sym_short] = ACTIONS(1791), + [sym_primitive_type] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_sizeof] = ACTIONS(1791), + [sym_number_literal] = ACTIONS(1789), + [sym_char_literal] = ACTIONS(1789), + [sym_string_literal] = ACTIONS(1789), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1791), [sym_comment] = ACTIONS(39), }, - [769] = { - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_RPAREN] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2636), + [784] = { + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_RPAREN] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), [sym_comment] = ACTIONS(39), }, - [770] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [785] = { + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(39), }, - [771] = { - [anon_sym_RPAREN] = ACTIONS(2638), + [786] = { + [anon_sym_RPAREN] = ACTIONS(2659), [sym_comment] = ACTIONS(39), }, - [772] = { - [aux_sym_concatenated_string_repeat1] = STATE(772), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2530), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_STAR_EQ] = ACTIONS(2528), - [anon_sym_SLASH_EQ] = ACTIONS(2528), - [anon_sym_PERCENT_EQ] = ACTIONS(2528), - [anon_sym_PLUS_EQ] = ACTIONS(2528), - [anon_sym_DASH_EQ] = ACTIONS(2528), - [anon_sym_LT_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_GT_EQ] = ACTIONS(2528), - [anon_sym_AMP_EQ] = ACTIONS(2528), - [anon_sym_CARET_EQ] = ACTIONS(2528), - [anon_sym_PIPE_EQ] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2530), - [anon_sym_EQ_EQ] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_GT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2530), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2530), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_DASH_GT] = ACTIONS(2528), - [sym_string_literal] = ACTIONS(2640), + [787] = { + [aux_sym_concatenated_string_repeat1] = STATE(787), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_COMMA] = ACTIONS(2549), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_QMARK] = ACTIONS(2549), + [anon_sym_STAR_EQ] = ACTIONS(2549), + [anon_sym_SLASH_EQ] = ACTIONS(2549), + [anon_sym_PERCENT_EQ] = ACTIONS(2549), + [anon_sym_PLUS_EQ] = ACTIONS(2549), + [anon_sym_DASH_EQ] = ACTIONS(2549), + [anon_sym_LT_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_GT_EQ] = ACTIONS(2549), + [anon_sym_AMP_EQ] = ACTIONS(2549), + [anon_sym_CARET_EQ] = ACTIONS(2549), + [anon_sym_PIPE_EQ] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2549), + [anon_sym_BANG_EQ] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_DOT] = ACTIONS(2549), + [anon_sym_DASH_GT] = ACTIONS(2549), + [sym_string_literal] = ACTIONS(2661), [sym_comment] = ACTIONS(39), }, - [773] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2555), - [anon_sym_RBRACE] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1315), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(1319), - [anon_sym_SLASH_EQ] = ACTIONS(1319), - [anon_sym_PERCENT_EQ] = ACTIONS(1319), - [anon_sym_PLUS_EQ] = ACTIONS(1319), - [anon_sym_DASH_EQ] = ACTIONS(1319), - [anon_sym_LT_LT_EQ] = ACTIONS(1319), - [anon_sym_GT_GT_EQ] = ACTIONS(1319), - [anon_sym_AMP_EQ] = ACTIONS(1319), - [anon_sym_CARET_EQ] = ACTIONS(1319), - [anon_sym_PIPE_EQ] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(1323), - [anon_sym_AMP_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [788] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2576), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(2576), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [774] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [789] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(2664), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [775] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [790] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [776] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [791] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [777] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_RBRACE] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [792] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [778] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [793] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [779] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [794] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [780] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2567), - [anon_sym_RBRACE] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_STAR_EQ] = ACTIONS(2567), - [anon_sym_SLASH_EQ] = ACTIONS(2567), - [anon_sym_PERCENT_EQ] = ACTIONS(2567), - [anon_sym_PLUS_EQ] = ACTIONS(2567), - [anon_sym_DASH_EQ] = ACTIONS(2567), - [anon_sym_LT_LT_EQ] = ACTIONS(2567), - [anon_sym_GT_GT_EQ] = ACTIONS(2567), - [anon_sym_AMP_EQ] = ACTIONS(2567), - [anon_sym_CARET_EQ] = ACTIONS(2567), - [anon_sym_PIPE_EQ] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2569), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_EQ_EQ] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [795] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_STAR_EQ] = ACTIONS(2588), + [anon_sym_SLASH_EQ] = ACTIONS(2588), + [anon_sym_PERCENT_EQ] = ACTIONS(2588), + [anon_sym_PLUS_EQ] = ACTIONS(2588), + [anon_sym_DASH_EQ] = ACTIONS(2588), + [anon_sym_LT_LT_EQ] = ACTIONS(2588), + [anon_sym_GT_GT_EQ] = ACTIONS(2588), + [anon_sym_AMP_EQ] = ACTIONS(2588), + [anon_sym_CARET_EQ] = ACTIONS(2588), + [anon_sym_PIPE_EQ] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_CARET] = ACTIONS(2590), + [anon_sym_EQ_EQ] = ACTIONS(2588), + [anon_sym_BANG_EQ] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [781] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_RBRACE] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_STAR_EQ] = ACTIONS(2571), - [anon_sym_SLASH_EQ] = ACTIONS(2571), - [anon_sym_PERCENT_EQ] = ACTIONS(2571), - [anon_sym_PLUS_EQ] = ACTIONS(2571), - [anon_sym_DASH_EQ] = ACTIONS(2571), - [anon_sym_LT_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_GT_EQ] = ACTIONS(2571), - [anon_sym_AMP_EQ] = ACTIONS(2571), - [anon_sym_CARET_EQ] = ACTIONS(2571), - [anon_sym_PIPE_EQ] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [796] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2592), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2592), + [anon_sym_STAR_EQ] = ACTIONS(2592), + [anon_sym_SLASH_EQ] = ACTIONS(2592), + [anon_sym_PERCENT_EQ] = ACTIONS(2592), + [anon_sym_PLUS_EQ] = ACTIONS(2592), + [anon_sym_DASH_EQ] = ACTIONS(2592), + [anon_sym_LT_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_GT_EQ] = ACTIONS(2592), + [anon_sym_AMP_EQ] = ACTIONS(2592), + [anon_sym_CARET_EQ] = ACTIONS(2592), + [anon_sym_PIPE_EQ] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_EQ] = ACTIONS(2592), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [782] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2575), - [anon_sym_RBRACE] = ACTIONS(2575), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_STAR_EQ] = ACTIONS(2575), - [anon_sym_SLASH_EQ] = ACTIONS(2575), - [anon_sym_PERCENT_EQ] = ACTIONS(2575), - [anon_sym_PLUS_EQ] = ACTIONS(2575), - [anon_sym_DASH_EQ] = ACTIONS(2575), - [anon_sym_LT_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_GT_EQ] = ACTIONS(2575), - [anon_sym_AMP_EQ] = ACTIONS(2575), - [anon_sym_CARET_EQ] = ACTIONS(2575), - [anon_sym_PIPE_EQ] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2577), - [anon_sym_CARET] = ACTIONS(2577), - [anon_sym_EQ_EQ] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), - [anon_sym_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_EQ] = ACTIONS(2575), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_GT_GT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [797] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_RBRACE] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2596), + [anon_sym_STAR_EQ] = ACTIONS(2596), + [anon_sym_SLASH_EQ] = ACTIONS(2596), + [anon_sym_PERCENT_EQ] = ACTIONS(2596), + [anon_sym_PLUS_EQ] = ACTIONS(2596), + [anon_sym_DASH_EQ] = ACTIONS(2596), + [anon_sym_LT_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_GT_EQ] = ACTIONS(2596), + [anon_sym_AMP_EQ] = ACTIONS(2596), + [anon_sym_CARET_EQ] = ACTIONS(2596), + [anon_sym_PIPE_EQ] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2598), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2598), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_GT] = ACTIONS(2598), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2598), + [anon_sym_GT_GT] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [783] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2549), - [anon_sym_RBRACE] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2551), - [anon_sym_QMARK] = ACTIONS(2549), - [anon_sym_STAR_EQ] = ACTIONS(2549), - [anon_sym_SLASH_EQ] = ACTIONS(2549), - [anon_sym_PERCENT_EQ] = ACTIONS(2549), - [anon_sym_PLUS_EQ] = ACTIONS(2549), - [anon_sym_DASH_EQ] = ACTIONS(2549), - [anon_sym_LT_LT_EQ] = ACTIONS(2549), - [anon_sym_GT_GT_EQ] = ACTIONS(2549), - [anon_sym_AMP_EQ] = ACTIONS(2549), - [anon_sym_CARET_EQ] = ACTIONS(2549), - [anon_sym_PIPE_EQ] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE_PIPE] = ACTIONS(2549), - [anon_sym_AMP_AMP] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_CARET] = ACTIONS(2551), - [anon_sym_EQ_EQ] = ACTIONS(2549), - [anon_sym_BANG_EQ] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_GT] = ACTIONS(2551), - [anon_sym_LT_EQ] = ACTIONS(2549), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2551), - [anon_sym_GT_GT] = ACTIONS(2551), - [anon_sym_PLUS] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [798] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2570), + [anon_sym_RBRACE] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2570), + [anon_sym_STAR_EQ] = ACTIONS(2570), + [anon_sym_SLASH_EQ] = ACTIONS(2570), + [anon_sym_PERCENT_EQ] = ACTIONS(2570), + [anon_sym_PLUS_EQ] = ACTIONS(2570), + [anon_sym_DASH_EQ] = ACTIONS(2570), + [anon_sym_LT_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_GT_EQ] = ACTIONS(2570), + [anon_sym_AMP_EQ] = ACTIONS(2570), + [anon_sym_CARET_EQ] = ACTIONS(2570), + [anon_sym_PIPE_EQ] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [784] = { + [799] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), [sym__declaration_specifiers] = STATE(106), @@ -29811,48 +30105,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(784), - [sym_field_declaration] = STATE(784), + [sym__field_declaration_list_item] = STATE(799), + [sym_field_declaration] = STATE(799), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(784), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(799), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(849), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(861), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(855), - [anon_sym_extern] = ACTIONS(858), - [anon_sym_static] = ACTIONS(858), - [anon_sym_auto] = ACTIONS(858), - [anon_sym_register] = ACTIONS(858), - [anon_sym_inline] = ACTIONS(858), - [anon_sym_const] = ACTIONS(863), - [anon_sym_restrict] = ACTIONS(863), - [anon_sym_volatile] = ACTIONS(863), - [anon_sym__Atomic] = ACTIONS(863), - [anon_sym_unsigned] = ACTIONS(866), - [anon_sym_long] = ACTIONS(866), - [anon_sym_short] = ACTIONS(866), - [sym_primitive_type] = ACTIONS(869), - [anon_sym_enum] = ACTIONS(872), - [anon_sym_struct] = ACTIONS(875), - [anon_sym_union] = ACTIONS(878), - [sym_identifier] = ACTIONS(881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(855), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(867), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(858), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(864), + [anon_sym_static] = ACTIONS(864), + [anon_sym_auto] = ACTIONS(864), + [anon_sym_register] = ACTIONS(864), + [anon_sym_inline] = ACTIONS(864), + [anon_sym_const] = ACTIONS(869), + [anon_sym_restrict] = ACTIONS(869), + [anon_sym_volatile] = ACTIONS(869), + [anon_sym__Atomic] = ACTIONS(869), + [anon_sym_unsigned] = ACTIONS(872), + [anon_sym_long] = ACTIONS(872), + [anon_sym_short] = ACTIONS(872), + [sym_primitive_type] = ACTIONS(875), + [anon_sym_enum] = ACTIONS(878), + [anon_sym_struct] = ACTIONS(881), + [anon_sym_union] = ACTIONS(884), + [sym_identifier] = ACTIONS(887), [sym_comment] = ACTIONS(39), }, - [785] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2645), + [800] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2666), [sym_comment] = ACTIONS(39), }, - [786] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2647), + [801] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2668), [sym_comment] = ACTIONS(39), }, - [787] = { + [802] = { [sym_preproc_if_in_field_declaration_list] = STATE(104), [sym_preproc_ifdef_in_field_declaration_list] = STATE(105), - [sym_preproc_else_in_field_declaration_list] = STATE(959), - [sym_preproc_elif_in_field_declaration_list] = STATE(960), + [sym_preproc_else_in_field_declaration_list] = STATE(976), + [sym_preproc_elif_in_field_declaration_list] = STATE(977), [sym__declaration_specifiers] = STATE(106), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), @@ -29861,18 +30155,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(107), [sym_struct_specifier] = STATE(107), [sym_union_specifier] = STATE(107), - [sym__field_declaration_list_item] = STATE(554), - [sym_field_declaration] = STATE(554), + [sym__field_declaration_list_item] = STATE(564), + [sym_field_declaration] = STATE(564), [sym_macro_type_specifier] = STATE(107), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(554), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(564), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2649), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2670), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(191), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(797), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(801), [anon_sym_extern] = ACTIONS(23), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), @@ -29892,670 +30186,218 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(37), [sym_comment] = ACTIONS(39), }, - [788] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2651), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2653), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2653), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2653), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2653), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2653), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_auto] = ACTIONS(2651), - [anon_sym_register] = ACTIONS(2651), - [anon_sym_inline] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_restrict] = ACTIONS(2651), - [anon_sym_volatile] = ACTIONS(2651), - [anon_sym__Atomic] = ACTIONS(2651), - [anon_sym_unsigned] = ACTIONS(2651), - [anon_sym_long] = ACTIONS(2651), - [anon_sym_short] = ACTIONS(2651), - [sym_primitive_type] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [sym_identifier] = ACTIONS(2651), - [sym_comment] = ACTIONS(39), - }, - [789] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2655), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2657), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2657), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_auto] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [sym_identifier] = ACTIONS(2655), - [sym_comment] = ACTIONS(39), - }, - [790] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2659), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2661), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2661), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_auto] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [sym_identifier] = ACTIONS(2659), - [sym_comment] = ACTIONS(39), - }, - [791] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2665), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2665), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2665), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2665), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_auto] = ACTIONS(2663), - [anon_sym_register] = ACTIONS(2663), - [anon_sym_inline] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_restrict] = ACTIONS(2663), - [anon_sym_volatile] = ACTIONS(2663), - [anon_sym__Atomic] = ACTIONS(2663), - [anon_sym_unsigned] = ACTIONS(2663), - [anon_sym_long] = ACTIONS(2663), - [anon_sym_short] = ACTIONS(2663), - [sym_primitive_type] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [sym_identifier] = ACTIONS(2663), - [sym_comment] = ACTIONS(39), - }, - [792] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2667), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2667), - [anon_sym_auto] = ACTIONS(2667), - [anon_sym_register] = ACTIONS(2667), - [anon_sym_inline] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_restrict] = ACTIONS(2667), - [anon_sym_volatile] = ACTIONS(2667), - [anon_sym__Atomic] = ACTIONS(2667), - [anon_sym_unsigned] = ACTIONS(2667), - [anon_sym_long] = ACTIONS(2667), - [anon_sym_short] = ACTIONS(2667), - [sym_primitive_type] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2667), - [sym_comment] = ACTIONS(39), - }, - [793] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2671), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2671), - [anon_sym_auto] = ACTIONS(2671), - [anon_sym_register] = ACTIONS(2671), - [anon_sym_inline] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_restrict] = ACTIONS(2671), - [anon_sym_volatile] = ACTIONS(2671), - [anon_sym__Atomic] = ACTIONS(2671), - [anon_sym_unsigned] = ACTIONS(2671), - [anon_sym_long] = ACTIONS(2671), - [anon_sym_short] = ACTIONS(2671), - [sym_primitive_type] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2671), - [sym_comment] = ACTIONS(39), - }, - [794] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), - [sym_comment] = ACTIONS(39), - }, - [795] = { - [anon_sym_RPAREN] = ACTIONS(2675), - [sym_comment] = ACTIONS(39), - }, - [796] = { - [aux_sym_concatenated_string_repeat1] = STATE(796), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2530), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_STAR_EQ] = ACTIONS(2528), - [anon_sym_SLASH_EQ] = ACTIONS(2528), - [anon_sym_PERCENT_EQ] = ACTIONS(2528), - [anon_sym_PLUS_EQ] = ACTIONS(2528), - [anon_sym_DASH_EQ] = ACTIONS(2528), - [anon_sym_LT_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_GT_EQ] = ACTIONS(2528), - [anon_sym_AMP_EQ] = ACTIONS(2528), - [anon_sym_CARET_EQ] = ACTIONS(2528), - [anon_sym_PIPE_EQ] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2530), - [anon_sym_EQ_EQ] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_GT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2530), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2530), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_DASH_GT] = ACTIONS(2528), - [sym_string_literal] = ACTIONS(2677), - [sym_comment] = ACTIONS(39), - }, - [797] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [798] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(2680), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [799] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [803] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2672), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2674), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2674), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2674), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2674), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2674), + [anon_sym_extern] = ACTIONS(2672), + [anon_sym_RBRACE] = ACTIONS(2674), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_auto] = ACTIONS(2672), + [anon_sym_register] = ACTIONS(2672), + [anon_sym_inline] = ACTIONS(2672), + [anon_sym_const] = ACTIONS(2672), + [anon_sym_restrict] = ACTIONS(2672), + [anon_sym_volatile] = ACTIONS(2672), + [anon_sym__Atomic] = ACTIONS(2672), + [anon_sym_unsigned] = ACTIONS(2672), + [anon_sym_long] = ACTIONS(2672), + [anon_sym_short] = ACTIONS(2672), + [sym_primitive_type] = ACTIONS(2672), + [anon_sym_enum] = ACTIONS(2672), + [anon_sym_struct] = ACTIONS(2672), + [anon_sym_union] = ACTIONS(2672), + [sym_identifier] = ACTIONS(2672), [sym_comment] = ACTIONS(39), }, - [800] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [804] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2676), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2678), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2678), + [anon_sym_extern] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(2678), + [anon_sym_static] = ACTIONS(2676), + [anon_sym_auto] = ACTIONS(2676), + [anon_sym_register] = ACTIONS(2676), + [anon_sym_inline] = ACTIONS(2676), + [anon_sym_const] = ACTIONS(2676), + [anon_sym_restrict] = ACTIONS(2676), + [anon_sym_volatile] = ACTIONS(2676), + [anon_sym__Atomic] = ACTIONS(2676), + [anon_sym_unsigned] = ACTIONS(2676), + [anon_sym_long] = ACTIONS(2676), + [anon_sym_short] = ACTIONS(2676), + [sym_primitive_type] = ACTIONS(2676), + [anon_sym_enum] = ACTIONS(2676), + [anon_sym_struct] = ACTIONS(2676), + [anon_sym_union] = ACTIONS(2676), + [sym_identifier] = ACTIONS(2676), [sym_comment] = ACTIONS(39), }, - [801] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [805] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2680), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2682), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2682), + [anon_sym_extern] = ACTIONS(2680), + [anon_sym_RBRACE] = ACTIONS(2682), + [anon_sym_static] = ACTIONS(2680), + [anon_sym_auto] = ACTIONS(2680), + [anon_sym_register] = ACTIONS(2680), + [anon_sym_inline] = ACTIONS(2680), + [anon_sym_const] = ACTIONS(2680), + [anon_sym_restrict] = ACTIONS(2680), + [anon_sym_volatile] = ACTIONS(2680), + [anon_sym__Atomic] = ACTIONS(2680), + [anon_sym_unsigned] = ACTIONS(2680), + [anon_sym_long] = ACTIONS(2680), + [anon_sym_short] = ACTIONS(2680), + [sym_primitive_type] = ACTIONS(2680), + [anon_sym_enum] = ACTIONS(2680), + [anon_sym_struct] = ACTIONS(2680), + [anon_sym_union] = ACTIONS(2680), + [sym_identifier] = ACTIONS(2680), [sym_comment] = ACTIONS(39), }, - [802] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [806] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2684), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2686), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2686), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2686), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2686), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2686), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_auto] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym_const] = ACTIONS(2684), + [anon_sym_restrict] = ACTIONS(2684), + [anon_sym_volatile] = ACTIONS(2684), + [anon_sym__Atomic] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [sym_identifier] = ACTIONS(2684), [sym_comment] = ACTIONS(39), }, - [803] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [807] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2688), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2690), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2690), + [anon_sym_extern] = ACTIONS(2688), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_static] = ACTIONS(2688), + [anon_sym_auto] = ACTIONS(2688), + [anon_sym_register] = ACTIONS(2688), + [anon_sym_inline] = ACTIONS(2688), + [anon_sym_const] = ACTIONS(2688), + [anon_sym_restrict] = ACTIONS(2688), + [anon_sym_volatile] = ACTIONS(2688), + [anon_sym__Atomic] = ACTIONS(2688), + [anon_sym_unsigned] = ACTIONS(2688), + [anon_sym_long] = ACTIONS(2688), + [anon_sym_short] = ACTIONS(2688), + [sym_primitive_type] = ACTIONS(2688), + [anon_sym_enum] = ACTIONS(2688), + [anon_sym_struct] = ACTIONS(2688), + [anon_sym_union] = ACTIONS(2688), + [sym_identifier] = ACTIONS(2688), [sym_comment] = ACTIONS(39), }, - [804] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_STAR_EQ] = ACTIONS(2567), - [anon_sym_SLASH_EQ] = ACTIONS(2567), - [anon_sym_PERCENT_EQ] = ACTIONS(2567), - [anon_sym_PLUS_EQ] = ACTIONS(2567), - [anon_sym_DASH_EQ] = ACTIONS(2567), - [anon_sym_LT_LT_EQ] = ACTIONS(2567), - [anon_sym_GT_GT_EQ] = ACTIONS(2567), - [anon_sym_AMP_EQ] = ACTIONS(2567), - [anon_sym_CARET_EQ] = ACTIONS(2567), - [anon_sym_PIPE_EQ] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2569), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_EQ_EQ] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [808] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2692), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2694), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2694), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2694), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2694), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2694), + [anon_sym_extern] = ACTIONS(2692), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_static] = ACTIONS(2692), + [anon_sym_auto] = ACTIONS(2692), + [anon_sym_register] = ACTIONS(2692), + [anon_sym_inline] = ACTIONS(2692), + [anon_sym_const] = ACTIONS(2692), + [anon_sym_restrict] = ACTIONS(2692), + [anon_sym_volatile] = ACTIONS(2692), + [anon_sym__Atomic] = ACTIONS(2692), + [anon_sym_unsigned] = ACTIONS(2692), + [anon_sym_long] = ACTIONS(2692), + [anon_sym_short] = ACTIONS(2692), + [sym_primitive_type] = ACTIONS(2692), + [anon_sym_enum] = ACTIONS(2692), + [anon_sym_struct] = ACTIONS(2692), + [anon_sym_union] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2692), [sym_comment] = ACTIONS(39), }, - [805] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_STAR_EQ] = ACTIONS(2571), - [anon_sym_SLASH_EQ] = ACTIONS(2571), - [anon_sym_PERCENT_EQ] = ACTIONS(2571), - [anon_sym_PLUS_EQ] = ACTIONS(2571), - [anon_sym_DASH_EQ] = ACTIONS(2571), - [anon_sym_LT_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_GT_EQ] = ACTIONS(2571), - [anon_sym_AMP_EQ] = ACTIONS(2571), - [anon_sym_CARET_EQ] = ACTIONS(2571), - [anon_sym_PIPE_EQ] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [809] = { + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(39), }, - [806] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_STAR_EQ] = ACTIONS(2575), - [anon_sym_SLASH_EQ] = ACTIONS(2575), - [anon_sym_PERCENT_EQ] = ACTIONS(2575), - [anon_sym_PLUS_EQ] = ACTIONS(2575), - [anon_sym_DASH_EQ] = ACTIONS(2575), - [anon_sym_LT_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_GT_EQ] = ACTIONS(2575), - [anon_sym_AMP_EQ] = ACTIONS(2575), - [anon_sym_CARET_EQ] = ACTIONS(2575), - [anon_sym_PIPE_EQ] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2577), - [anon_sym_CARET] = ACTIONS(2577), - [anon_sym_EQ_EQ] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), - [anon_sym_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_EQ] = ACTIONS(2575), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_GT_GT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [810] = { + [anon_sym_RPAREN] = ACTIONS(2696), [sym_comment] = ACTIONS(39), }, - [807] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), + [811] = { + [aux_sym_concatenated_string_repeat1] = STATE(811), + [anon_sym_LPAREN] = ACTIONS(2549), [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), [anon_sym_EQ] = ACTIONS(2551), [anon_sym_QMARK] = ACTIONS(2549), [anon_sym_STAR_EQ] = ACTIONS(2549), @@ -30583,735 +30425,721 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2551), [anon_sym_PLUS] = ACTIONS(2551), [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [808] = { - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_COMMA] = ACTIONS(2682), - [anon_sym_RPAREN] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_COLON] = ACTIONS(2682), - [sym_comment] = ACTIONS(39), - }, - [809] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2684), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [810] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2686), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2688), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2688), - [anon_sym_extern] = ACTIONS(2686), - [anon_sym_RBRACE] = ACTIONS(2688), - [anon_sym_static] = ACTIONS(2686), - [anon_sym_auto] = ACTIONS(2686), - [anon_sym_register] = ACTIONS(2686), - [anon_sym_inline] = ACTIONS(2686), - [anon_sym_const] = ACTIONS(2686), - [anon_sym_restrict] = ACTIONS(2686), - [anon_sym_volatile] = ACTIONS(2686), - [anon_sym__Atomic] = ACTIONS(2686), - [anon_sym_unsigned] = ACTIONS(2686), - [anon_sym_long] = ACTIONS(2686), - [anon_sym_short] = ACTIONS(2686), - [sym_primitive_type] = ACTIONS(2686), - [anon_sym_enum] = ACTIONS(2686), - [anon_sym_struct] = ACTIONS(2686), - [anon_sym_union] = ACTIONS(2686), - [sym_identifier] = ACTIONS(2686), - [sym_comment] = ACTIONS(39), - }, - [811] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_DOT] = ACTIONS(2549), + [anon_sym_DASH_GT] = ACTIONS(2549), + [sym_string_literal] = ACTIONS(2698), [sym_comment] = ACTIONS(39), }, [812] = { - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_COMMA] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2692), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(2576), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [813] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2694), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(2701), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [814] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [815] = { - [anon_sym_RPAREN] = ACTIONS(2696), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [816] = { - [aux_sym_concatenated_string_repeat1] = STATE(816), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_COMMA] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2530), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_STAR_EQ] = ACTIONS(2528), - [anon_sym_SLASH_EQ] = ACTIONS(2528), - [anon_sym_PERCENT_EQ] = ACTIONS(2528), - [anon_sym_PLUS_EQ] = ACTIONS(2528), - [anon_sym_DASH_EQ] = ACTIONS(2528), - [anon_sym_LT_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_GT_EQ] = ACTIONS(2528), - [anon_sym_AMP_EQ] = ACTIONS(2528), - [anon_sym_CARET_EQ] = ACTIONS(2528), - [anon_sym_PIPE_EQ] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2530), - [anon_sym_EQ_EQ] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_GT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2530), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2530), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_DASH_GT] = ACTIONS(2528), - [sym_string_literal] = ACTIONS(2698), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [817] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [818] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2555), - [anon_sym_RPAREN] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [819] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(2701), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_STAR_EQ] = ACTIONS(2588), + [anon_sym_SLASH_EQ] = ACTIONS(2588), + [anon_sym_PERCENT_EQ] = ACTIONS(2588), + [anon_sym_PLUS_EQ] = ACTIONS(2588), + [anon_sym_DASH_EQ] = ACTIONS(2588), + [anon_sym_LT_LT_EQ] = ACTIONS(2588), + [anon_sym_GT_GT_EQ] = ACTIONS(2588), + [anon_sym_AMP_EQ] = ACTIONS(2588), + [anon_sym_CARET_EQ] = ACTIONS(2588), + [anon_sym_PIPE_EQ] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_CARET] = ACTIONS(2590), + [anon_sym_EQ_EQ] = ACTIONS(2588), + [anon_sym_BANG_EQ] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [820] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2559), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2592), + [anon_sym_STAR_EQ] = ACTIONS(2592), + [anon_sym_SLASH_EQ] = ACTIONS(2592), + [anon_sym_PERCENT_EQ] = ACTIONS(2592), + [anon_sym_PLUS_EQ] = ACTIONS(2592), + [anon_sym_DASH_EQ] = ACTIONS(2592), + [anon_sym_LT_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_GT_EQ] = ACTIONS(2592), + [anon_sym_AMP_EQ] = ACTIONS(2592), + [anon_sym_CARET_EQ] = ACTIONS(2592), + [anon_sym_PIPE_EQ] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_EQ] = ACTIONS(2592), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [821] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2596), + [anon_sym_STAR_EQ] = ACTIONS(2596), + [anon_sym_SLASH_EQ] = ACTIONS(2596), + [anon_sym_PERCENT_EQ] = ACTIONS(2596), + [anon_sym_PLUS_EQ] = ACTIONS(2596), + [anon_sym_DASH_EQ] = ACTIONS(2596), + [anon_sym_LT_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_GT_EQ] = ACTIONS(2596), + [anon_sym_AMP_EQ] = ACTIONS(2596), + [anon_sym_CARET_EQ] = ACTIONS(2596), + [anon_sym_PIPE_EQ] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2598), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2598), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_GT] = ACTIONS(2598), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2598), + [anon_sym_GT_GT] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [822] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2563), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2570), + [anon_sym_STAR_EQ] = ACTIONS(2570), + [anon_sym_SLASH_EQ] = ACTIONS(2570), + [anon_sym_PERCENT_EQ] = ACTIONS(2570), + [anon_sym_PLUS_EQ] = ACTIONS(2570), + [anon_sym_DASH_EQ] = ACTIONS(2570), + [anon_sym_LT_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_GT_EQ] = ACTIONS(2570), + [anon_sym_AMP_EQ] = ACTIONS(2570), + [anon_sym_CARET_EQ] = ACTIONS(2570), + [anon_sym_PIPE_EQ] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [823] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2559), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_RPAREN] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_COLON] = ACTIONS(2703), [sym_comment] = ACTIONS(39), }, [824] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2559), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2705), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [825] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2567), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_STAR_EQ] = ACTIONS(2567), - [anon_sym_SLASH_EQ] = ACTIONS(2567), - [anon_sym_PERCENT_EQ] = ACTIONS(2567), - [anon_sym_PLUS_EQ] = ACTIONS(2567), - [anon_sym_DASH_EQ] = ACTIONS(2567), - [anon_sym_LT_LT_EQ] = ACTIONS(2567), - [anon_sym_GT_GT_EQ] = ACTIONS(2567), - [anon_sym_AMP_EQ] = ACTIONS(2567), - [anon_sym_CARET_EQ] = ACTIONS(2567), - [anon_sym_PIPE_EQ] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2569), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_EQ_EQ] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2707), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2709), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2709), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2709), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2709), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2707), + [anon_sym_auto] = ACTIONS(2707), + [anon_sym_register] = ACTIONS(2707), + [anon_sym_inline] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_restrict] = ACTIONS(2707), + [anon_sym_volatile] = ACTIONS(2707), + [anon_sym__Atomic] = ACTIONS(2707), + [anon_sym_unsigned] = ACTIONS(2707), + [anon_sym_long] = ACTIONS(2707), + [anon_sym_short] = ACTIONS(2707), + [sym_primitive_type] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_union] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2707), [sym_comment] = ACTIONS(39), }, [826] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2571), - [anon_sym_RPAREN] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_STAR_EQ] = ACTIONS(2571), - [anon_sym_SLASH_EQ] = ACTIONS(2571), - [anon_sym_PERCENT_EQ] = ACTIONS(2571), - [anon_sym_PLUS_EQ] = ACTIONS(2571), - [anon_sym_DASH_EQ] = ACTIONS(2571), - [anon_sym_LT_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_GT_EQ] = ACTIONS(2571), - [anon_sym_AMP_EQ] = ACTIONS(2571), - [anon_sym_CARET_EQ] = ACTIONS(2571), - [anon_sym_PIPE_EQ] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [827] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_STAR_EQ] = ACTIONS(2575), - [anon_sym_SLASH_EQ] = ACTIONS(2575), - [anon_sym_PERCENT_EQ] = ACTIONS(2575), - [anon_sym_PLUS_EQ] = ACTIONS(2575), - [anon_sym_DASH_EQ] = ACTIONS(2575), - [anon_sym_LT_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_GT_EQ] = ACTIONS(2575), - [anon_sym_AMP_EQ] = ACTIONS(2575), - [anon_sym_CARET_EQ] = ACTIONS(2575), - [anon_sym_PIPE_EQ] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2577), - [anon_sym_CARET] = ACTIONS(2577), - [anon_sym_EQ_EQ] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), - [anon_sym_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_EQ] = ACTIONS(2575), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_GT_GT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_RPAREN] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), [sym_comment] = ACTIONS(39), }, [828] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [829] = { + [sym__declarator] = STATE(213), + [sym__abstract_declarator] = STATE(603), + [sym_pointer_declarator] = STATE(213), + [sym_abstract_pointer_declarator] = STATE(603), + [sym_function_declarator] = STATE(213), + [sym_abstract_function_declarator] = STATE(603), + [sym_array_declarator] = STATE(213), + [sym_abstract_array_declarator] = STATE(603), + [sym_type_qualifier] = STATE(983), + [sym_parameter_list] = STATE(207), + [aux_sym_type_definition_repeat1] = STATE(983), + [anon_sym_LPAREN] = ACTIONS(928), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(500), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [sym_identifier] = ACTIONS(514), + [sym_comment] = ACTIONS(39), + }, + [830] = { + [sym_type_qualifier] = STATE(830), + [aux_sym_type_definition_repeat1] = STATE(830), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_COMMA] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_const] = ACTIONS(418), + [anon_sym_restrict] = ACTIONS(418), + [anon_sym_volatile] = ACTIONS(418), + [anon_sym__Atomic] = ACTIONS(418), + [sym_identifier] = ACTIONS(421), + [sym_comment] = ACTIONS(39), + }, + [831] = { + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), + [sym_comment] = ACTIONS(39), + }, + [832] = { + [anon_sym_RPAREN] = ACTIONS(2717), + [sym_comment] = ACTIONS(39), + }, + [833] = { + [aux_sym_concatenated_string_repeat1] = STATE(833), + [anon_sym_LPAREN] = ACTIONS(2549), [anon_sym_COMMA] = ACTIONS(2549), [anon_sym_RPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), [anon_sym_EQ] = ACTIONS(2551), [anon_sym_QMARK] = ACTIONS(2549), [anon_sym_STAR_EQ] = ACTIONS(2549), @@ -31339,118 +31167,622 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2551), [anon_sym_PLUS] = ACTIONS(2551), [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_DOT] = ACTIONS(2549), + [anon_sym_DASH_GT] = ACTIONS(2549), + [sym_string_literal] = ACTIONS(2719), + [sym_comment] = ACTIONS(39), + }, + [834] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [835] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2576), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(2576), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [836] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(2722), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [837] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [838] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2584), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [839] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2584), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [840] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [841] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2580), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [842] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2588), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_STAR_EQ] = ACTIONS(2588), + [anon_sym_SLASH_EQ] = ACTIONS(2588), + [anon_sym_PERCENT_EQ] = ACTIONS(2588), + [anon_sym_PLUS_EQ] = ACTIONS(2588), + [anon_sym_DASH_EQ] = ACTIONS(2588), + [anon_sym_LT_LT_EQ] = ACTIONS(2588), + [anon_sym_GT_GT_EQ] = ACTIONS(2588), + [anon_sym_AMP_EQ] = ACTIONS(2588), + [anon_sym_CARET_EQ] = ACTIONS(2588), + [anon_sym_PIPE_EQ] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_CARET] = ACTIONS(2590), + [anon_sym_EQ_EQ] = ACTIONS(2588), + [anon_sym_BANG_EQ] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [843] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2592), + [anon_sym_STAR_EQ] = ACTIONS(2592), + [anon_sym_SLASH_EQ] = ACTIONS(2592), + [anon_sym_PERCENT_EQ] = ACTIONS(2592), + [anon_sym_PLUS_EQ] = ACTIONS(2592), + [anon_sym_DASH_EQ] = ACTIONS(2592), + [anon_sym_LT_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_GT_EQ] = ACTIONS(2592), + [anon_sym_AMP_EQ] = ACTIONS(2592), + [anon_sym_CARET_EQ] = ACTIONS(2592), + [anon_sym_PIPE_EQ] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_EQ] = ACTIONS(2592), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [844] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2596), + [anon_sym_STAR_EQ] = ACTIONS(2596), + [anon_sym_SLASH_EQ] = ACTIONS(2596), + [anon_sym_PERCENT_EQ] = ACTIONS(2596), + [anon_sym_PLUS_EQ] = ACTIONS(2596), + [anon_sym_DASH_EQ] = ACTIONS(2596), + [anon_sym_LT_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_GT_EQ] = ACTIONS(2596), + [anon_sym_AMP_EQ] = ACTIONS(2596), + [anon_sym_CARET_EQ] = ACTIONS(2596), + [anon_sym_PIPE_EQ] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2598), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2598), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_GT] = ACTIONS(2598), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2598), + [anon_sym_GT_GT] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [829] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_RPAREN] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2703), - [anon_sym_RBRACE] = ACTIONS(2703), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(2703), - [anon_sym_EQ] = ACTIONS(2705), - [anon_sym_COLON] = ACTIONS(2703), - [anon_sym_QMARK] = ACTIONS(2703), - [anon_sym_STAR_EQ] = ACTIONS(2703), - [anon_sym_SLASH_EQ] = ACTIONS(2703), - [anon_sym_PERCENT_EQ] = ACTIONS(2703), - [anon_sym_PLUS_EQ] = ACTIONS(2703), - [anon_sym_DASH_EQ] = ACTIONS(2703), - [anon_sym_LT_LT_EQ] = ACTIONS(2703), - [anon_sym_GT_GT_EQ] = ACTIONS(2703), - [anon_sym_AMP_EQ] = ACTIONS(2703), - [anon_sym_CARET_EQ] = ACTIONS(2703), - [anon_sym_PIPE_EQ] = ACTIONS(2703), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_PIPE_PIPE] = ACTIONS(2703), - [anon_sym_AMP_AMP] = ACTIONS(2703), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_CARET] = ACTIONS(2705), - [anon_sym_EQ_EQ] = ACTIONS(2703), - [anon_sym_BANG_EQ] = ACTIONS(2703), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_GT] = ACTIONS(2705), - [anon_sym_LT_EQ] = ACTIONS(2703), - [anon_sym_GT_EQ] = ACTIONS(2703), - [anon_sym_LT_LT] = ACTIONS(2705), - [anon_sym_GT_GT] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_SLASH] = ACTIONS(2705), - [anon_sym_PERCENT] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [845] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2570), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2570), + [anon_sym_STAR_EQ] = ACTIONS(2570), + [anon_sym_SLASH_EQ] = ACTIONS(2570), + [anon_sym_PERCENT_EQ] = ACTIONS(2570), + [anon_sym_PLUS_EQ] = ACTIONS(2570), + [anon_sym_DASH_EQ] = ACTIONS(2570), + [anon_sym_LT_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_GT_EQ] = ACTIONS(2570), + [anon_sym_AMP_EQ] = ACTIONS(2570), + [anon_sym_CARET_EQ] = ACTIONS(2570), + [anon_sym_PIPE_EQ] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [830] = { - [anon_sym_LPAREN] = ACTIONS(2707), - [anon_sym_COMMA] = ACTIONS(2707), - [anon_sym_RPAREN] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_RBRACK] = ACTIONS(2707), - [anon_sym_EQ] = ACTIONS(2709), - [anon_sym_COLON] = ACTIONS(2707), - [anon_sym_QMARK] = ACTIONS(2707), - [anon_sym_STAR_EQ] = ACTIONS(2707), - [anon_sym_SLASH_EQ] = ACTIONS(2707), - [anon_sym_PERCENT_EQ] = ACTIONS(2707), - [anon_sym_PLUS_EQ] = ACTIONS(2707), - [anon_sym_DASH_EQ] = ACTIONS(2707), - [anon_sym_LT_LT_EQ] = ACTIONS(2707), - [anon_sym_GT_GT_EQ] = ACTIONS(2707), - [anon_sym_AMP_EQ] = ACTIONS(2707), - [anon_sym_CARET_EQ] = ACTIONS(2707), - [anon_sym_PIPE_EQ] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_PIPE_PIPE] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_CARET] = ACTIONS(2709), - [anon_sym_EQ_EQ] = ACTIONS(2707), - [anon_sym_BANG_EQ] = ACTIONS(2707), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_GT] = ACTIONS(2709), - [anon_sym_LT_EQ] = ACTIONS(2707), - [anon_sym_GT_EQ] = ACTIONS(2707), - [anon_sym_LT_LT] = ACTIONS(2709), - [anon_sym_GT_GT] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_SLASH] = ACTIONS(2709), - [anon_sym_PERCENT] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_DOT] = ACTIONS(2707), - [anon_sym_DASH_GT] = ACTIONS(2707), + [846] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2726), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(2724), + [anon_sym_EQ] = ACTIONS(2726), + [anon_sym_COLON] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(2724), + [anon_sym_STAR_EQ] = ACTIONS(2724), + [anon_sym_SLASH_EQ] = ACTIONS(2724), + [anon_sym_PERCENT_EQ] = ACTIONS(2724), + [anon_sym_PLUS_EQ] = ACTIONS(2724), + [anon_sym_DASH_EQ] = ACTIONS(2724), + [anon_sym_LT_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_GT_EQ] = ACTIONS(2724), + [anon_sym_AMP_EQ] = ACTIONS(2724), + [anon_sym_CARET_EQ] = ACTIONS(2724), + [anon_sym_PIPE_EQ] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2726), + [anon_sym_PIPE_PIPE] = ACTIONS(2724), + [anon_sym_AMP_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2726), + [anon_sym_CARET] = ACTIONS(2726), + [anon_sym_EQ_EQ] = ACTIONS(2724), + [anon_sym_BANG_EQ] = ACTIONS(2724), + [anon_sym_LT] = ACTIONS(2726), + [anon_sym_GT] = ACTIONS(2726), + [anon_sym_LT_EQ] = ACTIONS(2724), + [anon_sym_GT_EQ] = ACTIONS(2724), + [anon_sym_LT_LT] = ACTIONS(2726), + [anon_sym_GT_GT] = ACTIONS(2726), + [anon_sym_PLUS] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(2726), + [anon_sym_PERCENT] = ACTIONS(2726), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [831] = { - [sym_preproc_include] = STATE(971), - [sym_preproc_def] = STATE(971), - [sym_preproc_function_def] = STATE(971), - [sym_preproc_call] = STATE(971), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(969), - [sym_preproc_elif_in_compound_statement] = STATE(970), - [sym_declaration] = STATE(971), - [sym_type_definition] = STATE(971), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(971), + [847] = { + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_COMMA] = ACTIONS(2728), + [anon_sym_RPAREN] = ACTIONS(2728), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2730), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_RBRACK] = ACTIONS(2728), + [anon_sym_EQ] = ACTIONS(2730), + [anon_sym_COLON] = ACTIONS(2728), + [anon_sym_QMARK] = ACTIONS(2728), + [anon_sym_STAR_EQ] = ACTIONS(2728), + [anon_sym_SLASH_EQ] = ACTIONS(2728), + [anon_sym_PERCENT_EQ] = ACTIONS(2728), + [anon_sym_PLUS_EQ] = ACTIONS(2728), + [anon_sym_DASH_EQ] = ACTIONS(2728), + [anon_sym_LT_LT_EQ] = ACTIONS(2728), + [anon_sym_GT_GT_EQ] = ACTIONS(2728), + [anon_sym_AMP_EQ] = ACTIONS(2728), + [anon_sym_CARET_EQ] = ACTIONS(2728), + [anon_sym_PIPE_EQ] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2730), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2730), + [anon_sym_CARET] = ACTIONS(2730), + [anon_sym_EQ_EQ] = ACTIONS(2728), + [anon_sym_BANG_EQ] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2730), + [anon_sym_GT] = ACTIONS(2730), + [anon_sym_LT_EQ] = ACTIONS(2728), + [anon_sym_GT_EQ] = ACTIONS(2728), + [anon_sym_LT_LT] = ACTIONS(2730), + [anon_sym_GT_GT] = ACTIONS(2730), + [anon_sym_PLUS] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_PERCENT] = ACTIONS(2730), + [anon_sym_DASH_DASH] = ACTIONS(2728), + [anon_sym_PLUS_PLUS] = ACTIONS(2728), + [anon_sym_DOT] = ACTIONS(2728), + [anon_sym_DASH_GT] = ACTIONS(2728), + [sym_comment] = ACTIONS(39), + }, + [848] = { + [sym_preproc_include] = STATE(989), + [sym_preproc_def] = STATE(989), + [sym_preproc_function_def] = STATE(989), + [sym_preproc_call] = STATE(989), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(987), + [sym_preproc_elif_in_compound_statement] = STATE(988), + [sym_declaration] = STATE(989), + [sym_type_definition] = STATE(989), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(989), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -31458,57 +31790,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(971), - [sym_expression_statement] = STATE(971), - [sym_if_statement] = STATE(971), - [sym_switch_statement] = STATE(971), - [sym_case_statement] = STATE(971), - [sym_while_statement] = STATE(971), - [sym_do_statement] = STATE(971), - [sym_for_statement] = STATE(971), - [sym_return_statement] = STATE(971), - [sym_break_statement] = STATE(971), - [sym_continue_statement] = STATE(971), - [sym_goto_statement] = STATE(971), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(971), + [sym_labeled_statement] = STATE(989), + [sym_expression_statement] = STATE(989), + [sym_if_statement] = STATE(989), + [sym_switch_statement] = STATE(989), + [sym_case_statement] = STATE(989), + [sym_while_statement] = STATE(989), + [sym_do_statement] = STATE(989), + [sym_for_statement] = STATE(989), + [sym_return_statement] = STATE(989), + [sym_break_statement] = STATE(989), + [sym_continue_statement] = STATE(989), + [sym_goto_statement] = STATE(989), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(989), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(971), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(989), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2711), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2732), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -31524,47 +31856,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [832] = { - [sym_preproc_include] = STATE(975), - [sym_preproc_def] = STATE(975), - [sym_preproc_function_def] = STATE(975), - [sym_preproc_call] = STATE(975), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(973), - [sym_preproc_elif_in_compound_statement] = STATE(974), - [sym_declaration] = STATE(975), - [sym_type_definition] = STATE(975), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(975), + [849] = { + [sym_preproc_include] = STATE(993), + [sym_preproc_def] = STATE(993), + [sym_preproc_function_def] = STATE(993), + [sym_preproc_call] = STATE(993), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(991), + [sym_preproc_elif_in_compound_statement] = STATE(992), + [sym_declaration] = STATE(993), + [sym_type_definition] = STATE(993), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(993), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -31572,57 +31904,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(975), - [sym_expression_statement] = STATE(975), - [sym_if_statement] = STATE(975), - [sym_switch_statement] = STATE(975), - [sym_case_statement] = STATE(975), - [sym_while_statement] = STATE(975), - [sym_do_statement] = STATE(975), - [sym_for_statement] = STATE(975), - [sym_return_statement] = STATE(975), - [sym_break_statement] = STATE(975), - [sym_continue_statement] = STATE(975), - [sym_goto_statement] = STATE(975), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(975), + [sym_labeled_statement] = STATE(993), + [sym_expression_statement] = STATE(993), + [sym_if_statement] = STATE(993), + [sym_switch_statement] = STATE(993), + [sym_case_statement] = STATE(993), + [sym_while_statement] = STATE(993), + [sym_do_statement] = STATE(993), + [sym_for_statement] = STATE(993), + [sym_return_statement] = STATE(993), + [sym_break_statement] = STATE(993), + [sym_continue_statement] = STATE(993), + [sym_goto_statement] = STATE(993), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(993), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(975), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(993), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -31638,47 +31970,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [833] = { - [sym_preproc_include] = STATE(979), - [sym_preproc_def] = STATE(979), - [sym_preproc_function_def] = STATE(979), - [sym_preproc_call] = STATE(979), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(977), - [sym_preproc_elif_in_compound_statement] = STATE(978), - [sym_declaration] = STATE(979), - [sym_type_definition] = STATE(979), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(979), + [850] = { + [sym_preproc_include] = STATE(997), + [sym_preproc_def] = STATE(997), + [sym_preproc_function_def] = STATE(997), + [sym_preproc_call] = STATE(997), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(995), + [sym_preproc_elif_in_compound_statement] = STATE(996), + [sym_declaration] = STATE(997), + [sym_type_definition] = STATE(997), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(997), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -31686,57 +32018,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(979), - [sym_expression_statement] = STATE(979), - [sym_if_statement] = STATE(979), - [sym_switch_statement] = STATE(979), - [sym_case_statement] = STATE(979), - [sym_while_statement] = STATE(979), - [sym_do_statement] = STATE(979), - [sym_for_statement] = STATE(979), - [sym_return_statement] = STATE(979), - [sym_break_statement] = STATE(979), - [sym_continue_statement] = STATE(979), - [sym_goto_statement] = STATE(979), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(979), + [sym_labeled_statement] = STATE(997), + [sym_expression_statement] = STATE(997), + [sym_if_statement] = STATE(997), + [sym_switch_statement] = STATE(997), + [sym_case_statement] = STATE(997), + [sym_while_statement] = STATE(997), + [sym_do_statement] = STATE(997), + [sym_for_statement] = STATE(997), + [sym_return_statement] = STATE(997), + [sym_break_statement] = STATE(997), + [sym_continue_statement] = STATE(997), + [sym_goto_statement] = STATE(997), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(997), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(997), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2715), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2736), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -31752,286 +32084,286 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [834] = { - [sym_preproc_arg] = ACTIONS(2717), + [851] = { + [sym_preproc_arg] = ACTIONS(2738), [sym_comment] = ACTIONS(47), }, - [835] = { - [sym_identifier] = ACTIONS(2719), + [852] = { + [sym_identifier] = ACTIONS(2740), [sym_comment] = ACTIONS(39), }, - [836] = { - [sym_identifier] = ACTIONS(2721), + [853] = { + [sym_identifier] = ACTIONS(2742), [sym_comment] = ACTIONS(39), }, - [837] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_typedef] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(960), - [anon_sym_static] = ACTIONS(958), - [anon_sym_auto] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_inline] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [anon_sym_restrict] = ACTIONS(958), - [anon_sym_volatile] = ACTIONS(958), - [anon_sym__Atomic] = ACTIONS(958), - [anon_sym_unsigned] = ACTIONS(958), - [anon_sym_long] = ACTIONS(958), - [anon_sym_short] = ACTIONS(958), - [sym_primitive_type] = ACTIONS(958), - [anon_sym_enum] = ACTIONS(958), - [anon_sym_struct] = ACTIONS(958), - [anon_sym_union] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(958), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_goto] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(960), - [anon_sym_TILDE] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_sizeof] = ACTIONS(958), - [sym_number_literal] = ACTIONS(960), - [sym_char_literal] = ACTIONS(960), - [sym_string_literal] = ACTIONS(960), - [sym_true] = ACTIONS(958), - [sym_false] = ACTIONS(958), - [sym_null] = ACTIONS(958), - [sym_identifier] = ACTIONS(958), + [854] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(970), + [sym_preproc_directive] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_typedef] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_STAR] = ACTIONS(972), + [anon_sym_static] = ACTIONS(970), + [anon_sym_auto] = ACTIONS(970), + [anon_sym_register] = ACTIONS(970), + [anon_sym_inline] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [anon_sym_restrict] = ACTIONS(970), + [anon_sym_volatile] = ACTIONS(970), + [anon_sym__Atomic] = ACTIONS(970), + [anon_sym_unsigned] = ACTIONS(970), + [anon_sym_long] = ACTIONS(970), + [anon_sym_short] = ACTIONS(970), + [sym_primitive_type] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_struct] = ACTIONS(970), + [anon_sym_union] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_else] = ACTIONS(970), + [anon_sym_switch] = ACTIONS(970), + [anon_sym_case] = ACTIONS(970), + [anon_sym_default] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_goto] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_TILDE] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_sizeof] = ACTIONS(970), + [sym_number_literal] = ACTIONS(972), + [sym_char_literal] = ACTIONS(972), + [sym_string_literal] = ACTIONS(972), + [sym_true] = ACTIONS(970), + [sym_false] = ACTIONS(970), + [sym_null] = ACTIONS(970), + [sym_identifier] = ACTIONS(970), [sym_comment] = ACTIONS(39), }, - [838] = { - [anon_sym_LPAREN] = ACTIONS(2723), + [855] = { + [anon_sym_LPAREN] = ACTIONS(2744), [sym_comment] = ACTIONS(39), }, - [839] = { - [anon_sym_LPAREN] = ACTIONS(2725), + [856] = { + [anon_sym_LPAREN] = ACTIONS(2746), [sym_comment] = ACTIONS(39), }, - [840] = { - [sym__expression] = STATE(985), - [sym_conditional_expression] = STATE(985), - [sym_assignment_expression] = STATE(985), - [sym_pointer_expression] = STATE(985), - [sym_logical_expression] = STATE(985), - [sym_bitwise_expression] = STATE(985), - [sym_equality_expression] = STATE(985), - [sym_relational_expression] = STATE(985), - [sym_shift_expression] = STATE(985), - [sym_math_expression] = STATE(985), - [sym_cast_expression] = STATE(985), - [sym_sizeof_expression] = STATE(985), - [sym_subscript_expression] = STATE(985), - [sym_call_expression] = STATE(985), - [sym_field_expression] = STATE(985), - [sym_compound_literal_expression] = STATE(985), - [sym_parenthesized_expression] = STATE(985), - [sym_concatenated_string] = STATE(985), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2727), - [sym_char_literal] = ACTIONS(2727), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), - [sym_identifier] = ACTIONS(2729), + [857] = { + [sym__expression] = STATE(1003), + [sym_conditional_expression] = STATE(1003), + [sym_assignment_expression] = STATE(1003), + [sym_pointer_expression] = STATE(1003), + [sym_logical_expression] = STATE(1003), + [sym_bitwise_expression] = STATE(1003), + [sym_equality_expression] = STATE(1003), + [sym_relational_expression] = STATE(1003), + [sym_shift_expression] = STATE(1003), + [sym_math_expression] = STATE(1003), + [sym_cast_expression] = STATE(1003), + [sym_sizeof_expression] = STATE(1003), + [sym_subscript_expression] = STATE(1003), + [sym_call_expression] = STATE(1003), + [sym_field_expression] = STATE(1003), + [sym_compound_literal_expression] = STATE(1003), + [sym_parenthesized_expression] = STATE(1003), + [sym_concatenated_string] = STATE(1003), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2748), + [sym_char_literal] = ACTIONS(2748), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_null] = ACTIONS(2750), + [sym_identifier] = ACTIONS(2750), [sym_comment] = ACTIONS(39), }, - [841] = { - [anon_sym_COLON] = ACTIONS(2731), + [858] = { + [anon_sym_COLON] = ACTIONS(2752), [sym_comment] = ACTIONS(39), }, - [842] = { - [anon_sym_LPAREN] = ACTIONS(2733), + [859] = { + [anon_sym_LPAREN] = ACTIONS(2754), [sym_comment] = ACTIONS(39), }, - [843] = { - [sym_compound_statement] = STATE(988), - [sym_labeled_statement] = STATE(988), - [sym_expression_statement] = STATE(988), - [sym_if_statement] = STATE(988), - [sym_switch_statement] = STATE(988), - [sym_case_statement] = STATE(988), - [sym_while_statement] = STATE(988), - [sym_do_statement] = STATE(988), - [sym_for_statement] = STATE(988), - [sym_return_statement] = STATE(988), - [sym_break_statement] = STATE(988), - [sym_continue_statement] = STATE(988), - [sym_goto_statement] = STATE(988), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [860] = { + [sym_compound_statement] = STATE(1006), + [sym_labeled_statement] = STATE(1006), + [sym_expression_statement] = STATE(1006), + [sym_if_statement] = STATE(1006), + [sym_switch_statement] = STATE(1006), + [sym_case_statement] = STATE(1006), + [sym_while_statement] = STATE(1006), + [sym_do_statement] = STATE(1006), + [sym_for_statement] = STATE(1006), + [sym_return_statement] = STATE(1006), + [sym_break_statement] = STATE(1006), + [sym_continue_statement] = STATE(1006), + [sym_goto_statement] = STATE(1006), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, - [844] = { - [anon_sym_LPAREN] = ACTIONS(2735), + [861] = { + [anon_sym_LPAREN] = ACTIONS(2756), [sym_comment] = ACTIONS(39), }, - [845] = { - [sym__expression] = STATE(991), - [sym_conditional_expression] = STATE(991), - [sym_assignment_expression] = STATE(991), - [sym_pointer_expression] = STATE(991), - [sym_logical_expression] = STATE(991), - [sym_bitwise_expression] = STATE(991), - [sym_equality_expression] = STATE(991), - [sym_relational_expression] = STATE(991), - [sym_shift_expression] = STATE(991), - [sym_math_expression] = STATE(991), - [sym_cast_expression] = STATE(991), - [sym_sizeof_expression] = STATE(991), - [sym_subscript_expression] = STATE(991), - [sym_call_expression] = STATE(991), - [sym_field_expression] = STATE(991), - [sym_compound_literal_expression] = STATE(991), - [sym_parenthesized_expression] = STATE(991), - [sym_concatenated_string] = STATE(991), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2739), - [sym_char_literal] = ACTIONS(2739), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_null] = ACTIONS(2741), - [sym_identifier] = ACTIONS(2741), + [862] = { + [sym__expression] = STATE(1009), + [sym_conditional_expression] = STATE(1009), + [sym_assignment_expression] = STATE(1009), + [sym_pointer_expression] = STATE(1009), + [sym_logical_expression] = STATE(1009), + [sym_bitwise_expression] = STATE(1009), + [sym_equality_expression] = STATE(1009), + [sym_relational_expression] = STATE(1009), + [sym_shift_expression] = STATE(1009), + [sym_math_expression] = STATE(1009), + [sym_cast_expression] = STATE(1009), + [sym_sizeof_expression] = STATE(1009), + [sym_subscript_expression] = STATE(1009), + [sym_call_expression] = STATE(1009), + [sym_field_expression] = STATE(1009), + [sym_compound_literal_expression] = STATE(1009), + [sym_parenthesized_expression] = STATE(1009), + [sym_concatenated_string] = STATE(1009), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2760), + [sym_char_literal] = ACTIONS(2760), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [sym_null] = ACTIONS(2762), + [sym_identifier] = ACTIONS(2762), [sym_comment] = ACTIONS(39), }, - [846] = { - [anon_sym_SEMI] = ACTIONS(2743), + [863] = { + [anon_sym_SEMI] = ACTIONS(2764), [sym_comment] = ACTIONS(39), }, - [847] = { - [anon_sym_SEMI] = ACTIONS(2745), + [864] = { + [anon_sym_SEMI] = ACTIONS(2766), [sym_comment] = ACTIONS(39), }, - [848] = { - [sym_identifier] = ACTIONS(2747), + [865] = { + [sym_identifier] = ACTIONS(2768), [sym_comment] = ACTIONS(39), }, - [849] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1054), + [866] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1066), [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_static] = ACTIONS(86), [anon_sym_auto] = ACTIONS(86), [anon_sym_register] = ACTIONS(86), @@ -32040,225 +32372,225 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(86), [anon_sym_volatile] = ACTIONS(86), [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2749), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(2770), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [850] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1064), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1062), - [sym_preproc_directive] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1064), - [anon_sym_typedef] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_LBRACE] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1064), - [anon_sym_static] = ACTIONS(1062), - [anon_sym_auto] = ACTIONS(1062), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_inline] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [anon_sym_restrict] = ACTIONS(1062), - [anon_sym_volatile] = ACTIONS(1062), - [anon_sym__Atomic] = ACTIONS(1062), - [anon_sym_unsigned] = ACTIONS(1062), - [anon_sym_long] = ACTIONS(1062), - [anon_sym_short] = ACTIONS(1062), - [sym_primitive_type] = ACTIONS(1062), - [anon_sym_enum] = ACTIONS(1062), - [anon_sym_struct] = ACTIONS(1062), - [anon_sym_union] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_switch] = ACTIONS(1062), - [anon_sym_case] = ACTIONS(1062), - [anon_sym_default] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_goto] = ACTIONS(1062), - [anon_sym_AMP] = ACTIONS(1064), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_TILDE] = ACTIONS(1064), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_DASH_DASH] = ACTIONS(1064), - [anon_sym_PLUS_PLUS] = ACTIONS(1064), - [anon_sym_sizeof] = ACTIONS(1062), - [sym_number_literal] = ACTIONS(1064), - [sym_char_literal] = ACTIONS(1064), - [sym_string_literal] = ACTIONS(1064), - [sym_true] = ACTIONS(1062), - [sym_false] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [sym_identifier] = ACTIONS(1062), + [867] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1074), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1074), + [sym_preproc_directive] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_typedef] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_STAR] = ACTIONS(1076), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_auto] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_inline] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_restrict] = ACTIONS(1074), + [anon_sym_volatile] = ACTIONS(1074), + [anon_sym__Atomic] = ACTIONS(1074), + [anon_sym_unsigned] = ACTIONS(1074), + [anon_sym_long] = ACTIONS(1074), + [anon_sym_short] = ACTIONS(1074), + [sym_primitive_type] = ACTIONS(1074), + [anon_sym_enum] = ACTIONS(1074), + [anon_sym_struct] = ACTIONS(1074), + [anon_sym_union] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_switch] = ACTIONS(1074), + [anon_sym_case] = ACTIONS(1074), + [anon_sym_default] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_goto] = ACTIONS(1074), + [anon_sym_AMP] = ACTIONS(1076), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_PLUS_PLUS] = ACTIONS(1076), + [anon_sym_sizeof] = ACTIONS(1074), + [sym_number_literal] = ACTIONS(1076), + [sym_char_literal] = ACTIONS(1076), + [sym_string_literal] = ACTIONS(1076), + [sym_true] = ACTIONS(1074), + [sym_false] = ACTIONS(1074), + [sym_null] = ACTIONS(1074), + [sym_identifier] = ACTIONS(1074), [sym_comment] = ACTIONS(39), }, - [851] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(1068), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1066), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1066), - [sym_preproc_directive] = ACTIONS(1066), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_typedef] = ACTIONS(1066), - [anon_sym_extern] = ACTIONS(1066), - [anon_sym_LBRACE] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1068), - [anon_sym_static] = ACTIONS(1066), - [anon_sym_auto] = ACTIONS(1066), - [anon_sym_register] = ACTIONS(1066), - [anon_sym_inline] = ACTIONS(1066), - [anon_sym_const] = ACTIONS(1066), - [anon_sym_restrict] = ACTIONS(1066), - [anon_sym_volatile] = ACTIONS(1066), - [anon_sym__Atomic] = ACTIONS(1066), - [anon_sym_unsigned] = ACTIONS(1066), - [anon_sym_long] = ACTIONS(1066), - [anon_sym_short] = ACTIONS(1066), - [sym_primitive_type] = ACTIONS(1066), - [anon_sym_enum] = ACTIONS(1066), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1066), - [anon_sym_if] = ACTIONS(1066), - [anon_sym_switch] = ACTIONS(1066), - [anon_sym_case] = ACTIONS(1066), - [anon_sym_default] = ACTIONS(1066), - [anon_sym_while] = ACTIONS(1066), - [anon_sym_do] = ACTIONS(1066), - [anon_sym_for] = ACTIONS(1066), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_break] = ACTIONS(1066), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_goto] = ACTIONS(1066), - [anon_sym_AMP] = ACTIONS(1068), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1066), - [anon_sym_DASH] = ACTIONS(1066), - [anon_sym_DASH_DASH] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1068), - [anon_sym_sizeof] = ACTIONS(1066), - [sym_number_literal] = ACTIONS(1068), - [sym_char_literal] = ACTIONS(1068), - [sym_string_literal] = ACTIONS(1068), - [sym_true] = ACTIONS(1066), - [sym_false] = ACTIONS(1066), - [sym_null] = ACTIONS(1066), - [sym_identifier] = ACTIONS(1066), + [868] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1080), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1078), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1078), + [sym_preproc_directive] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_typedef] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(1080), + [anon_sym_static] = ACTIONS(1078), + [anon_sym_auto] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_inline] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_restrict] = ACTIONS(1078), + [anon_sym_volatile] = ACTIONS(1078), + [anon_sym__Atomic] = ACTIONS(1078), + [anon_sym_unsigned] = ACTIONS(1078), + [anon_sym_long] = ACTIONS(1078), + [anon_sym_short] = ACTIONS(1078), + [sym_primitive_type] = ACTIONS(1078), + [anon_sym_enum] = ACTIONS(1078), + [anon_sym_struct] = ACTIONS(1078), + [anon_sym_union] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_switch] = ACTIONS(1078), + [anon_sym_case] = ACTIONS(1078), + [anon_sym_default] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_goto] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1080), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_TILDE] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_PLUS_PLUS] = ACTIONS(1080), + [anon_sym_sizeof] = ACTIONS(1078), + [sym_number_literal] = ACTIONS(1080), + [sym_char_literal] = ACTIONS(1080), + [sym_string_literal] = ACTIONS(1080), + [sym_true] = ACTIONS(1078), + [sym_false] = ACTIONS(1078), + [sym_null] = ACTIONS(1078), + [sym_identifier] = ACTIONS(1078), [sym_comment] = ACTIONS(39), }, - [852] = { - [sym__declarator] = STATE(996), - [sym_pointer_declarator] = STATE(996), - [sym_function_declarator] = STATE(996), - [sym_array_declarator] = STATE(996), - [sym_init_declarator] = STATE(297), + [869] = { + [sym__declarator] = STATE(1014), + [sym_pointer_declarator] = STATE(1014), + [sym_function_declarator] = STATE(1014), + [sym_array_declarator] = STATE(1014), + [sym_init_declarator] = STATE(302), [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_STAR] = ACTIONS(520), - [sym_identifier] = ACTIONS(2751), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(524), + [sym_identifier] = ACTIONS(2772), [sym_comment] = ACTIONS(39), }, - [853] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(1074), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_STAR_EQ] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1086), - [anon_sym_PERCENT_EQ] = ACTIONS(1086), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - [anon_sym_LT_LT_EQ] = ACTIONS(1086), - [anon_sym_GT_GT_EQ] = ACTIONS(1086), - [anon_sym_AMP_EQ] = ACTIONS(1086), - [anon_sym_CARET_EQ] = ACTIONS(1086), - [anon_sym_PIPE_EQ] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [870] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_SEMI] = ACTIONS(2774), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1096), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [854] = { - [anon_sym_SEMI] = ACTIONS(2753), + [871] = { + [anon_sym_SEMI] = ACTIONS(2774), [sym_comment] = ACTIONS(39), }, - [855] = { - [sym_preproc_include] = STATE(998), - [sym_preproc_def] = STATE(998), - [sym_preproc_function_def] = STATE(998), - [sym_preproc_call] = STATE(998), - [sym_preproc_if_in_compound_statement] = STATE(850), - [sym_preproc_ifdef_in_compound_statement] = STATE(851), - [sym_declaration] = STATE(998), - [sym_type_definition] = STATE(998), - [sym__declaration_specifiers] = STATE(852), - [sym_compound_statement] = STATE(998), + [872] = { + [sym_preproc_include] = STATE(1016), + [sym_preproc_def] = STATE(1016), + [sym_preproc_function_def] = STATE(1016), + [sym_preproc_call] = STATE(1016), + [sym_preproc_if_in_compound_statement] = STATE(867), + [sym_preproc_ifdef_in_compound_statement] = STATE(868), + [sym_declaration] = STATE(1016), + [sym_type_definition] = STATE(1016), + [sym__declaration_specifiers] = STATE(869), + [sym_compound_statement] = STATE(1016), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -32266,55 +32598,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(998), - [sym_expression_statement] = STATE(998), - [sym_if_statement] = STATE(998), - [sym_switch_statement] = STATE(998), - [sym_case_statement] = STATE(998), - [sym_while_statement] = STATE(998), - [sym_do_statement] = STATE(998), - [sym_for_statement] = STATE(998), - [sym_return_statement] = STATE(998), - [sym_break_statement] = STATE(998), - [sym_continue_statement] = STATE(998), - [sym_goto_statement] = STATE(998), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [sym__empty_declaration] = STATE(998), + [sym_labeled_statement] = STATE(1016), + [sym_expression_statement] = STATE(1016), + [sym_if_statement] = STATE(1016), + [sym_switch_statement] = STATE(1016), + [sym_case_statement] = STATE(1016), + [sym_while_statement] = STATE(1016), + [sym_do_statement] = STATE(1016), + [sym_for_statement] = STATE(1016), + [sym_return_statement] = STATE(1016), + [sym_break_statement] = STATE(1016), + [sym_continue_statement] = STATE(1016), + [sym_goto_statement] = STATE(1016), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [sym__empty_declaration] = STATE(1016), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(998), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1016), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(348), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(350), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2755), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2298), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2776), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2319), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2321), [sym_preproc_directive] = ACTIONS(360), - [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2323), [anon_sym_typedef] = ACTIONS(362), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -32330,47 +32662,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2330), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2351), [sym_comment] = ACTIONS(39), }, - [856] = { - [sym_preproc_include] = STATE(1001), - [sym_preproc_def] = STATE(1001), - [sym_preproc_function_def] = STATE(1001), - [sym_preproc_call] = STATE(1001), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(999), - [sym_preproc_elif_in_compound_statement] = STATE(1000), - [sym_declaration] = STATE(1001), - [sym_type_definition] = STATE(1001), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(1001), + [873] = { + [sym_preproc_include] = STATE(1019), + [sym_preproc_def] = STATE(1019), + [sym_preproc_function_def] = STATE(1019), + [sym_preproc_call] = STATE(1019), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(1017), + [sym_preproc_elif_in_compound_statement] = STATE(1018), + [sym_declaration] = STATE(1019), + [sym_type_definition] = STATE(1019), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(1019), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -32378,57 +32710,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1001), - [sym_expression_statement] = STATE(1001), - [sym_if_statement] = STATE(1001), - [sym_switch_statement] = STATE(1001), - [sym_case_statement] = STATE(1001), - [sym_while_statement] = STATE(1001), - [sym_do_statement] = STATE(1001), - [sym_for_statement] = STATE(1001), - [sym_return_statement] = STATE(1001), - [sym_break_statement] = STATE(1001), - [sym_continue_statement] = STATE(1001), - [sym_goto_statement] = STATE(1001), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(1001), + [sym_labeled_statement] = STATE(1019), + [sym_expression_statement] = STATE(1019), + [sym_if_statement] = STATE(1019), + [sym_switch_statement] = STATE(1019), + [sym_case_statement] = STATE(1019), + [sym_while_statement] = STATE(1019), + [sym_do_statement] = STATE(1019), + [sym_for_statement] = STATE(1019), + [sym_return_statement] = STATE(1019), + [sym_break_statement] = STATE(1019), + [sym_continue_statement] = STATE(1019), + [sym_goto_statement] = STATE(1019), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(1019), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1001), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1019), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2757), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2778), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -32444,156 +32776,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [857] = { - [sym__expression] = STATE(1002), - [sym_conditional_expression] = STATE(1002), - [sym_assignment_expression] = STATE(1002), - [sym_pointer_expression] = STATE(1002), - [sym_logical_expression] = STATE(1002), - [sym_bitwise_expression] = STATE(1002), - [sym_equality_expression] = STATE(1002), - [sym_relational_expression] = STATE(1002), - [sym_shift_expression] = STATE(1002), - [sym_math_expression] = STATE(1002), - [sym_cast_expression] = STATE(1002), - [sym_sizeof_expression] = STATE(1002), - [sym_subscript_expression] = STATE(1002), - [sym_call_expression] = STATE(1002), - [sym_field_expression] = STATE(1002), - [sym_compound_literal_expression] = STATE(1002), - [sym_parenthesized_expression] = STATE(1002), - [sym_concatenated_string] = STATE(1002), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2759), - [sym_char_literal] = ACTIONS(2759), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_null] = ACTIONS(2761), - [sym_identifier] = ACTIONS(2761), + [874] = { + [sym__expression] = STATE(1020), + [sym_conditional_expression] = STATE(1020), + [sym_assignment_expression] = STATE(1020), + [sym_pointer_expression] = STATE(1020), + [sym_logical_expression] = STATE(1020), + [sym_bitwise_expression] = STATE(1020), + [sym_equality_expression] = STATE(1020), + [sym_relational_expression] = STATE(1020), + [sym_shift_expression] = STATE(1020), + [sym_math_expression] = STATE(1020), + [sym_cast_expression] = STATE(1020), + [sym_sizeof_expression] = STATE(1020), + [sym_subscript_expression] = STATE(1020), + [sym_call_expression] = STATE(1020), + [sym_field_expression] = STATE(1020), + [sym_compound_literal_expression] = STATE(1020), + [sym_parenthesized_expression] = STATE(1020), + [sym_concatenated_string] = STATE(1020), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2780), + [sym_char_literal] = ACTIONS(2780), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2782), + [sym_false] = ACTIONS(2782), + [sym_null] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2782), [sym_comment] = ACTIONS(39), }, - [858] = { - [sym__expression] = STATE(1003), - [sym_conditional_expression] = STATE(1003), - [sym_assignment_expression] = STATE(1003), - [sym_pointer_expression] = STATE(1003), - [sym_logical_expression] = STATE(1003), - [sym_bitwise_expression] = STATE(1003), - [sym_equality_expression] = STATE(1003), - [sym_relational_expression] = STATE(1003), - [sym_shift_expression] = STATE(1003), - [sym_math_expression] = STATE(1003), - [sym_cast_expression] = STATE(1003), - [sym_sizeof_expression] = STATE(1003), - [sym_subscript_expression] = STATE(1003), - [sym_call_expression] = STATE(1003), - [sym_field_expression] = STATE(1003), - [sym_compound_literal_expression] = STATE(1003), - [sym_parenthesized_expression] = STATE(1003), - [sym_concatenated_string] = STATE(1003), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2763), - [sym_char_literal] = ACTIONS(2763), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2765), - [sym_false] = ACTIONS(2765), - [sym_null] = ACTIONS(2765), - [sym_identifier] = ACTIONS(2765), + [875] = { + [sym__expression] = STATE(1021), + [sym_conditional_expression] = STATE(1021), + [sym_assignment_expression] = STATE(1021), + [sym_pointer_expression] = STATE(1021), + [sym_logical_expression] = STATE(1021), + [sym_bitwise_expression] = STATE(1021), + [sym_equality_expression] = STATE(1021), + [sym_relational_expression] = STATE(1021), + [sym_shift_expression] = STATE(1021), + [sym_math_expression] = STATE(1021), + [sym_cast_expression] = STATE(1021), + [sym_sizeof_expression] = STATE(1021), + [sym_subscript_expression] = STATE(1021), + [sym_call_expression] = STATE(1021), + [sym_field_expression] = STATE(1021), + [sym_compound_literal_expression] = STATE(1021), + [sym_parenthesized_expression] = STATE(1021), + [sym_concatenated_string] = STATE(1021), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2784), + [sym_char_literal] = ACTIONS(2784), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [sym_null] = ACTIONS(2786), + [sym_identifier] = ACTIONS(2786), [sym_comment] = ACTIONS(39), }, - [859] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(2767), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [876] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(2788), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [860] = { - [sym_declaration] = STATE(1006), - [sym_type_definition] = STATE(1006), - [sym__declaration_specifiers] = STATE(1007), - [sym_compound_statement] = STATE(1006), + [877] = { + [sym_declaration] = STATE(1024), + [sym_type_definition] = STATE(1024), + [sym__declaration_specifiers] = STATE(1025), + [sym_compound_statement] = STATE(1024), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -32601,46 +32933,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(1006), - [sym_expression_statement] = STATE(1006), - [sym_if_statement] = STATE(1006), - [sym_switch_statement] = STATE(1006), - [sym_case_statement] = STATE(1006), - [sym_while_statement] = STATE(1006), - [sym_do_statement] = STATE(1006), - [sym_for_statement] = STATE(1006), - [sym_return_statement] = STATE(1006), - [sym_break_statement] = STATE(1006), - [sym_continue_statement] = STATE(1006), - [sym_goto_statement] = STATE(1006), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), + [sym_labeled_statement] = STATE(1024), + [sym_expression_statement] = STATE(1024), + [sym_if_statement] = STATE(1024), + [sym_switch_statement] = STATE(1024), + [sym_case_statement] = STATE(1024), + [sym_while_statement] = STATE(1024), + [sym_do_statement] = STATE(1024), + [sym_for_statement] = STATE(1024), + [sym_return_statement] = STATE(1024), + [sym_break_statement] = STATE(1024), + [sym_continue_statement] = STATE(1024), + [sym_goto_statement] = STATE(1024), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -32656,79 +32988,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(2790), [sym_comment] = ACTIONS(39), }, - [861] = { - [sym__expression] = STATE(1008), - [sym_conditional_expression] = STATE(1008), - [sym_assignment_expression] = STATE(1008), - [sym_pointer_expression] = STATE(1008), - [sym_logical_expression] = STATE(1008), - [sym_bitwise_expression] = STATE(1008), - [sym_equality_expression] = STATE(1008), - [sym_relational_expression] = STATE(1008), - [sym_shift_expression] = STATE(1008), - [sym_math_expression] = STATE(1008), - [sym_cast_expression] = STATE(1008), - [sym_sizeof_expression] = STATE(1008), - [sym_subscript_expression] = STATE(1008), - [sym_call_expression] = STATE(1008), - [sym_field_expression] = STATE(1008), - [sym_compound_literal_expression] = STATE(1008), - [sym_parenthesized_expression] = STATE(1008), - [sym_concatenated_string] = STATE(1008), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2771), - [sym_char_literal] = ACTIONS(2771), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_identifier] = ACTIONS(2773), + [878] = { + [sym__expression] = STATE(1026), + [sym_conditional_expression] = STATE(1026), + [sym_assignment_expression] = STATE(1026), + [sym_pointer_expression] = STATE(1026), + [sym_logical_expression] = STATE(1026), + [sym_bitwise_expression] = STATE(1026), + [sym_equality_expression] = STATE(1026), + [sym_relational_expression] = STATE(1026), + [sym_shift_expression] = STATE(1026), + [sym_math_expression] = STATE(1026), + [sym_cast_expression] = STATE(1026), + [sym_sizeof_expression] = STATE(1026), + [sym_subscript_expression] = STATE(1026), + [sym_call_expression] = STATE(1026), + [sym_field_expression] = STATE(1026), + [sym_compound_literal_expression] = STATE(1026), + [sym_parenthesized_expression] = STATE(1026), + [sym_concatenated_string] = STATE(1026), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2792), + [sym_char_literal] = ACTIONS(2792), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2794), + [sym_false] = ACTIONS(2794), + [sym_null] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2794), [sym_comment] = ACTIONS(39), }, - [862] = { - [anon_sym_while] = ACTIONS(2775), + [879] = { + [anon_sym_while] = ACTIONS(2796), [sym_comment] = ACTIONS(39), }, - [863] = { - [sym_declaration] = STATE(1010), - [sym__declaration_specifiers] = STATE(683), + [880] = { + [sym_declaration] = STATE(1028), + [sym__declaration_specifiers] = STATE(698), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -32736,2736 +33068,1361 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym__expression] = STATE(1011), - [sym_conditional_expression] = STATE(1011), - [sym_assignment_expression] = STATE(1011), - [sym_pointer_expression] = STATE(1011), - [sym_logical_expression] = STATE(1011), - [sym_bitwise_expression] = STATE(1011), - [sym_equality_expression] = STATE(1011), - [sym_relational_expression] = STATE(1011), - [sym_shift_expression] = STATE(1011), - [sym_math_expression] = STATE(1011), - [sym_cast_expression] = STATE(1011), - [sym_sizeof_expression] = STATE(1011), - [sym_subscript_expression] = STATE(1011), - [sym_call_expression] = STATE(1011), - [sym_field_expression] = STATE(1011), - [sym_compound_literal_expression] = STATE(1011), - [sym_parenthesized_expression] = STATE(1011), - [sym_concatenated_string] = STATE(1011), - [sym_macro_type_specifier] = STATE(92), - [aux_sym__declaration_specifiers_repeat1] = STATE(93), - [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(171), - [anon_sym_long] = ACTIONS(171), - [anon_sym_short] = ACTIONS(171), - [sym_primitive_type] = ACTIONS(173), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2779), - [sym_char_literal] = ACTIONS(2779), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2781), - [sym_false] = ACTIONS(2781), - [sym_null] = ACTIONS(2781), - [sym_identifier] = ACTIONS(1661), - [sym_comment] = ACTIONS(39), - }, - [864] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1665), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1663), - [sym_preproc_directive] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_typedef] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_static] = ACTIONS(1663), - [anon_sym_auto] = ACTIONS(1663), - [anon_sym_register] = ACTIONS(1663), - [anon_sym_inline] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_restrict] = ACTIONS(1663), - [anon_sym_volatile] = ACTIONS(1663), - [anon_sym__Atomic] = ACTIONS(1663), - [anon_sym_unsigned] = ACTIONS(1663), - [anon_sym_long] = ACTIONS(1663), - [anon_sym_short] = ACTIONS(1663), - [sym_primitive_type] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1663), - [anon_sym_switch] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_goto] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1665), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1665), - [anon_sym_PLUS_PLUS] = ACTIONS(1665), - [anon_sym_sizeof] = ACTIONS(1663), - [sym_number_literal] = ACTIONS(1665), - [sym_char_literal] = ACTIONS(1665), - [sym_string_literal] = ACTIONS(1665), - [sym_true] = ACTIONS(1663), - [sym_false] = ACTIONS(1663), - [sym_null] = ACTIONS(1663), - [sym_identifier] = ACTIONS(1663), - [sym_comment] = ACTIONS(39), - }, - [865] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [866] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1671), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1669), - [sym_preproc_directive] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_typedef] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_auto] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_inline] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_restrict] = ACTIONS(1669), - [anon_sym_volatile] = ACTIONS(1669), - [anon_sym__Atomic] = ACTIONS(1669), - [anon_sym_unsigned] = ACTIONS(1669), - [anon_sym_long] = ACTIONS(1669), - [anon_sym_short] = ACTIONS(1669), - [sym_primitive_type] = ACTIONS(1669), - [anon_sym_enum] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_union] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_switch] = ACTIONS(1669), - [anon_sym_case] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_goto] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1669), - [sym_number_literal] = ACTIONS(1671), - [sym_char_literal] = ACTIONS(1671), - [sym_string_literal] = ACTIONS(1671), - [sym_true] = ACTIONS(1669), - [sym_false] = ACTIONS(1669), - [sym_null] = ACTIONS(1669), - [sym_identifier] = ACTIONS(1669), - [sym_comment] = ACTIONS(39), - }, - [867] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1675), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1673), - [sym_preproc_directive] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_typedef] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_auto] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_inline] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_restrict] = ACTIONS(1673), - [anon_sym_volatile] = ACTIONS(1673), - [anon_sym__Atomic] = ACTIONS(1673), - [anon_sym_unsigned] = ACTIONS(1673), - [anon_sym_long] = ACTIONS(1673), - [anon_sym_short] = ACTIONS(1673), - [sym_primitive_type] = ACTIONS(1673), - [anon_sym_enum] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_switch] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_goto] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_sizeof] = ACTIONS(1673), - [sym_number_literal] = ACTIONS(1675), - [sym_char_literal] = ACTIONS(1675), - [sym_string_literal] = ACTIONS(1675), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [sym_null] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1673), - [sym_comment] = ACTIONS(39), - }, - [868] = { - [anon_sym_SEMI] = ACTIONS(2785), - [sym_comment] = ACTIONS(39), - }, - [869] = { - [sym_compound_statement] = STATE(1015), - [sym_labeled_statement] = STATE(1015), - [sym_expression_statement] = STATE(1015), - [sym_if_statement] = STATE(1015), - [sym_switch_statement] = STATE(1015), - [sym_case_statement] = STATE(1015), - [sym_while_statement] = STATE(1015), - [sym_do_statement] = STATE(1015), - [sym_for_statement] = STATE(1015), - [sym_return_statement] = STATE(1015), - [sym_break_statement] = STATE(1015), - [sym_continue_statement] = STATE(1015), - [sym_goto_statement] = STATE(1015), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(2787), - [sym_comment] = ACTIONS(39), - }, - [870] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2789), - [sym_preproc_directive] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_auto] = ACTIONS(2789), - [anon_sym_register] = ACTIONS(2789), - [anon_sym_inline] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_restrict] = ACTIONS(2789), - [anon_sym_volatile] = ACTIONS(2789), - [anon_sym__Atomic] = ACTIONS(2789), - [anon_sym_unsigned] = ACTIONS(2789), - [anon_sym_long] = ACTIONS(2789), - [anon_sym_short] = ACTIONS(2789), - [sym_primitive_type] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_goto] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_sizeof] = ACTIONS(2789), - [sym_number_literal] = ACTIONS(2791), - [sym_char_literal] = ACTIONS(2791), - [sym_string_literal] = ACTIONS(2791), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [sym_identifier] = ACTIONS(2789), - [sym_comment] = ACTIONS(39), - }, - [871] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2793), - [sym_preproc_directive] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_auto] = ACTIONS(2793), - [anon_sym_register] = ACTIONS(2793), - [anon_sym_inline] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_restrict] = ACTIONS(2793), - [anon_sym_volatile] = ACTIONS(2793), - [anon_sym__Atomic] = ACTIONS(2793), - [anon_sym_unsigned] = ACTIONS(2793), - [anon_sym_long] = ACTIONS(2793), - [anon_sym_short] = ACTIONS(2793), - [sym_primitive_type] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_goto] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2793), - [sym_number_literal] = ACTIONS(2795), - [sym_char_literal] = ACTIONS(2795), - [sym_string_literal] = ACTIONS(2795), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), - [sym_identifier] = ACTIONS(2793), - [sym_comment] = ACTIONS(39), - }, - [872] = { - [sym_parameter_list] = STATE(127), - [aux_sym_declaration_repeat1] = STATE(310), - [anon_sym_LPAREN] = ACTIONS(231), - [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(239), - [anon_sym_EQ] = ACTIONS(241), - [sym_comment] = ACTIONS(39), - }, - [873] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1715), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1713), - [sym_preproc_directive] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_typedef] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_auto] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1713), - [anon_sym_inline] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_restrict] = ACTIONS(1713), - [anon_sym_volatile] = ACTIONS(1713), - [anon_sym__Atomic] = ACTIONS(1713), - [anon_sym_unsigned] = ACTIONS(1713), - [anon_sym_long] = ACTIONS(1713), - [anon_sym_short] = ACTIONS(1713), - [sym_primitive_type] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_switch] = ACTIONS(1713), - [anon_sym_case] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_goto] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1713), - [sym_number_literal] = ACTIONS(1715), - [sym_char_literal] = ACTIONS(1715), - [sym_string_literal] = ACTIONS(1715), - [sym_true] = ACTIONS(1713), - [sym_false] = ACTIONS(1713), - [sym_null] = ACTIONS(1713), - [sym_identifier] = ACTIONS(1713), - [sym_comment] = ACTIONS(39), - }, - [874] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2799), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2797), - [sym_preproc_directive] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_auto] = ACTIONS(2797), - [anon_sym_register] = ACTIONS(2797), - [anon_sym_inline] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_restrict] = ACTIONS(2797), - [anon_sym_volatile] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(2797), - [anon_sym_unsigned] = ACTIONS(2797), - [anon_sym_long] = ACTIONS(2797), - [anon_sym_short] = ACTIONS(2797), - [sym_primitive_type] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_goto] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_sizeof] = ACTIONS(2797), - [sym_number_literal] = ACTIONS(2799), - [sym_char_literal] = ACTIONS(2799), - [sym_string_literal] = ACTIONS(2799), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), - [sym_identifier] = ACTIONS(2797), - [sym_comment] = ACTIONS(39), - }, - [875] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2801), - [sym_comment] = ACTIONS(39), - }, - [876] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2803), - [sym_comment] = ACTIONS(39), - }, - [877] = { - [sym_preproc_include] = STATE(877), - [sym_preproc_def] = STATE(877), - [sym_preproc_function_def] = STATE(877), - [sym_preproc_call] = STATE(877), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_declaration] = STATE(877), - [sym_type_definition] = STATE(877), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(877), - [sym_storage_class_specifier] = STATE(20), - [sym_type_qualifier] = STATE(20), - [sym__type_specifier] = STATE(18), - [sym_sized_type_specifier] = STATE(18), - [sym_enum_specifier] = STATE(18), - [sym_struct_specifier] = STATE(18), - [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(877), - [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(877), - [aux_sym__declaration_specifiers_repeat1] = STATE(20), - [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2805), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(1785), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2811), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2814), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2816), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2819), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2814), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2814), - [sym_preproc_directive] = ACTIONS(2822), - [anon_sym_SEMI] = ACTIONS(2825), - [anon_sym_typedef] = ACTIONS(2828), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_restrict] = ACTIONS(1817), - [anon_sym_volatile] = ACTIONS(1817), - [anon_sym__Atomic] = ACTIONS(1817), - [anon_sym_unsigned] = ACTIONS(1820), - [anon_sym_long] = ACTIONS(1820), - [anon_sym_short] = ACTIONS(1820), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1829), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_switch] = ACTIONS(2837), - [anon_sym_case] = ACTIONS(2840), - [anon_sym_default] = ACTIONS(2843), - [anon_sym_while] = ACTIONS(2846), - [anon_sym_do] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2858), - [anon_sym_continue] = ACTIONS(2861), - [anon_sym_goto] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), - [anon_sym_sizeof] = ACTIONS(1880), - [sym_number_literal] = ACTIONS(2867), - [sym_char_literal] = ACTIONS(2867), - [sym_string_literal] = ACTIONS(1886), - [sym_true] = ACTIONS(2870), - [sym_false] = ACTIONS(2870), - [sym_null] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2873), - [sym_comment] = ACTIONS(39), - }, - [878] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2878), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), - [sym_preproc_directive] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_auto] = ACTIONS(2876), - [anon_sym_register] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_restrict] = ACTIONS(2876), - [anon_sym_volatile] = ACTIONS(2876), - [anon_sym__Atomic] = ACTIONS(2876), - [anon_sym_unsigned] = ACTIONS(2876), - [anon_sym_long] = ACTIONS(2876), - [anon_sym_short] = ACTIONS(2876), - [sym_primitive_type] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_case] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_sizeof] = ACTIONS(2876), - [sym_number_literal] = ACTIONS(2878), - [sym_char_literal] = ACTIONS(2878), - [sym_string_literal] = ACTIONS(2878), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_null] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2876), - [sym_comment] = ACTIONS(39), - }, - [879] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2880), - [sym_preproc_directive] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_typedef] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_auto] = ACTIONS(2880), - [anon_sym_register] = ACTIONS(2880), - [anon_sym_inline] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_restrict] = ACTIONS(2880), - [anon_sym_volatile] = ACTIONS(2880), - [anon_sym__Atomic] = ACTIONS(2880), - [anon_sym_unsigned] = ACTIONS(2880), - [anon_sym_long] = ACTIONS(2880), - [anon_sym_short] = ACTIONS(2880), - [sym_primitive_type] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_switch] = ACTIONS(2880), - [anon_sym_case] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_do] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_sizeof] = ACTIONS(2880), - [sym_number_literal] = ACTIONS(2882), - [sym_char_literal] = ACTIONS(2882), - [sym_string_literal] = ACTIONS(2882), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_null] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2880), - [sym_comment] = ACTIONS(39), - }, - [880] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2886), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2884), - [sym_preproc_directive] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_typedef] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_auto] = ACTIONS(2884), - [anon_sym_register] = ACTIONS(2884), - [anon_sym_inline] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_restrict] = ACTIONS(2884), - [anon_sym_volatile] = ACTIONS(2884), - [anon_sym__Atomic] = ACTIONS(2884), - [anon_sym_unsigned] = ACTIONS(2884), - [anon_sym_long] = ACTIONS(2884), - [anon_sym_short] = ACTIONS(2884), - [sym_primitive_type] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_switch] = ACTIONS(2884), - [anon_sym_case] = ACTIONS(2884), - [anon_sym_default] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_do] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_sizeof] = ACTIONS(2884), - [sym_number_literal] = ACTIONS(2886), - [sym_char_literal] = ACTIONS(2886), - [sym_string_literal] = ACTIONS(2886), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_null] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2884), + [sym__expression] = STATE(1029), + [sym_conditional_expression] = STATE(1029), + [sym_assignment_expression] = STATE(1029), + [sym_pointer_expression] = STATE(1029), + [sym_logical_expression] = STATE(1029), + [sym_bitwise_expression] = STATE(1029), + [sym_equality_expression] = STATE(1029), + [sym_relational_expression] = STATE(1029), + [sym_shift_expression] = STATE(1029), + [sym_math_expression] = STATE(1029), + [sym_cast_expression] = STATE(1029), + [sym_sizeof_expression] = STATE(1029), + [sym_subscript_expression] = STATE(1029), + [sym_call_expression] = STATE(1029), + [sym_field_expression] = STATE(1029), + [sym_compound_literal_expression] = STATE(1029), + [sym_parenthesized_expression] = STATE(1029), + [sym_concatenated_string] = STATE(1029), + [sym_macro_type_specifier] = STATE(92), + [aux_sym__declaration_specifiers_repeat1] = STATE(93), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(2798), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(171), + [anon_sym_long] = ACTIONS(171), + [anon_sym_short] = ACTIONS(171), + [sym_primitive_type] = ACTIONS(173), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(2800), + [sym_char_literal] = ACTIONS(2800), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2802), + [sym_false] = ACTIONS(2802), + [sym_null] = ACTIONS(2802), + [sym_identifier] = ACTIONS(1675), [sym_comment] = ACTIONS(39), }, [881] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2888), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1679), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1677), + [sym_preproc_directive] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_typedef] = ACTIONS(1677), + [anon_sym_extern] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_static] = ACTIONS(1677), + [anon_sym_auto] = ACTIONS(1677), + [anon_sym_register] = ACTIONS(1677), + [anon_sym_inline] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_restrict] = ACTIONS(1677), + [anon_sym_volatile] = ACTIONS(1677), + [anon_sym__Atomic] = ACTIONS(1677), + [anon_sym_unsigned] = ACTIONS(1677), + [anon_sym_long] = ACTIONS(1677), + [anon_sym_short] = ACTIONS(1677), + [sym_primitive_type] = ACTIONS(1677), + [anon_sym_enum] = ACTIONS(1677), + [anon_sym_struct] = ACTIONS(1677), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_else] = ACTIONS(1677), + [anon_sym_switch] = ACTIONS(1677), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_do] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_goto] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_sizeof] = ACTIONS(1677), + [sym_number_literal] = ACTIONS(1679), + [sym_char_literal] = ACTIONS(1679), + [sym_string_literal] = ACTIONS(1679), + [sym_true] = ACTIONS(1677), + [sym_false] = ACTIONS(1677), + [sym_null] = ACTIONS(1677), + [sym_identifier] = ACTIONS(1677), [sym_comment] = ACTIONS(39), }, [882] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2890), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [883] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2894), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2892), - [sym_preproc_directive] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2892), - [anon_sym_extern] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_static] = ACTIONS(2892), - [anon_sym_auto] = ACTIONS(2892), - [anon_sym_register] = ACTIONS(2892), - [anon_sym_inline] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_restrict] = ACTIONS(2892), - [anon_sym_volatile] = ACTIONS(2892), - [anon_sym__Atomic] = ACTIONS(2892), - [anon_sym_unsigned] = ACTIONS(2892), - [anon_sym_long] = ACTIONS(2892), - [anon_sym_short] = ACTIONS(2892), - [sym_primitive_type] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_switch] = ACTIONS(2892), - [anon_sym_case] = ACTIONS(2892), - [anon_sym_default] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_goto] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_sizeof] = ACTIONS(2892), - [sym_number_literal] = ACTIONS(2894), - [sym_char_literal] = ACTIONS(2894), - [sym_string_literal] = ACTIONS(2894), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_null] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2892), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1685), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1683), + [sym_preproc_directive] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_typedef] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1683), + [anon_sym_auto] = ACTIONS(1683), + [anon_sym_register] = ACTIONS(1683), + [anon_sym_inline] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_restrict] = ACTIONS(1683), + [anon_sym_volatile] = ACTIONS(1683), + [anon_sym__Atomic] = ACTIONS(1683), + [anon_sym_unsigned] = ACTIONS(1683), + [anon_sym_long] = ACTIONS(1683), + [anon_sym_short] = ACTIONS(1683), + [sym_primitive_type] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1683), + [anon_sym_struct] = ACTIONS(1683), + [anon_sym_union] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_else] = ACTIONS(1683), + [anon_sym_switch] = ACTIONS(1683), + [anon_sym_case] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_goto] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_sizeof] = ACTIONS(1683), + [sym_number_literal] = ACTIONS(1685), + [sym_char_literal] = ACTIONS(1685), + [sym_string_literal] = ACTIONS(1685), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_identifier] = ACTIONS(1683), [sym_comment] = ACTIONS(39), }, [884] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2898), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2896), - [sym_preproc_directive] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2896), - [anon_sym_extern] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2896), - [anon_sym_auto] = ACTIONS(2896), - [anon_sym_register] = ACTIONS(2896), - [anon_sym_inline] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_restrict] = ACTIONS(2896), - [anon_sym_volatile] = ACTIONS(2896), - [anon_sym__Atomic] = ACTIONS(2896), - [anon_sym_unsigned] = ACTIONS(2896), - [anon_sym_long] = ACTIONS(2896), - [anon_sym_short] = ACTIONS(2896), - [sym_primitive_type] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_switch] = ACTIONS(2896), - [anon_sym_case] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2896), - [anon_sym_while] = ACTIONS(2896), - [anon_sym_do] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), - [anon_sym_goto] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_sizeof] = ACTIONS(2896), - [sym_number_literal] = ACTIONS(2898), - [sym_char_literal] = ACTIONS(2898), - [sym_string_literal] = ACTIONS(2898), - [sym_true] = ACTIONS(2896), - [sym_false] = ACTIONS(2896), - [sym_null] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2896), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1689), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1687), + [sym_preproc_directive] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_typedef] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1687), + [anon_sym_auto] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_inline] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_restrict] = ACTIONS(1687), + [anon_sym_volatile] = ACTIONS(1687), + [anon_sym__Atomic] = ACTIONS(1687), + [anon_sym_unsigned] = ACTIONS(1687), + [anon_sym_long] = ACTIONS(1687), + [anon_sym_short] = ACTIONS(1687), + [sym_primitive_type] = ACTIONS(1687), + [anon_sym_enum] = ACTIONS(1687), + [anon_sym_struct] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_switch] = ACTIONS(1687), + [anon_sym_case] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_goto] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_sizeof] = ACTIONS(1687), + [sym_number_literal] = ACTIONS(1689), + [sym_char_literal] = ACTIONS(1689), + [sym_string_literal] = ACTIONS(1689), + [sym_true] = ACTIONS(1687), + [sym_false] = ACTIONS(1687), + [sym_null] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1687), [sym_comment] = ACTIONS(39), }, [885] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2900), - [sym_preproc_directive] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_typedef] = ACTIONS(2900), - [anon_sym_extern] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_auto] = ACTIONS(2900), - [anon_sym_register] = ACTIONS(2900), - [anon_sym_inline] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_restrict] = ACTIONS(2900), - [anon_sym_volatile] = ACTIONS(2900), - [anon_sym__Atomic] = ACTIONS(2900), - [anon_sym_unsigned] = ACTIONS(2900), - [anon_sym_long] = ACTIONS(2900), - [anon_sym_short] = ACTIONS(2900), - [sym_primitive_type] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_switch] = ACTIONS(2900), - [anon_sym_case] = ACTIONS(2900), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_goto] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_sizeof] = ACTIONS(2900), - [sym_number_literal] = ACTIONS(2902), - [sym_char_literal] = ACTIONS(2902), - [sym_string_literal] = ACTIONS(2902), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_null] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2900), + [anon_sym_SEMI] = ACTIONS(2806), [sym_comment] = ACTIONS(39), }, [886] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2904), + [sym_compound_statement] = STATE(1033), + [sym_labeled_statement] = STATE(1033), + [sym_expression_statement] = STATE(1033), + [sym_if_statement] = STATE(1033), + [sym_switch_statement] = STATE(1033), + [sym_case_statement] = STATE(1033), + [sym_while_statement] = STATE(1033), + [sym_do_statement] = STATE(1033), + [sym_for_statement] = STATE(1033), + [sym_return_statement] = STATE(1033), + [sym_break_statement] = STATE(1033), + [sym_continue_statement] = STATE(1033), + [sym_goto_statement] = STATE(1033), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(2808), [sym_comment] = ACTIONS(39), }, [887] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2906), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2810), + [sym_preproc_directive] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2810), + [anon_sym_extern] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2812), + [anon_sym_RBRACE] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2810), + [anon_sym_auto] = ACTIONS(2810), + [anon_sym_register] = ACTIONS(2810), + [anon_sym_inline] = ACTIONS(2810), + [anon_sym_const] = ACTIONS(2810), + [anon_sym_restrict] = ACTIONS(2810), + [anon_sym_volatile] = ACTIONS(2810), + [anon_sym__Atomic] = ACTIONS(2810), + [anon_sym_unsigned] = ACTIONS(2810), + [anon_sym_long] = ACTIONS(2810), + [anon_sym_short] = ACTIONS(2810), + [sym_primitive_type] = ACTIONS(2810), + [anon_sym_enum] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2810), + [anon_sym_union] = ACTIONS(2810), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_switch] = ACTIONS(2810), + [anon_sym_case] = ACTIONS(2810), + [anon_sym_default] = ACTIONS(2810), + [anon_sym_while] = ACTIONS(2810), + [anon_sym_do] = ACTIONS(2810), + [anon_sym_for] = ACTIONS(2810), + [anon_sym_return] = ACTIONS(2810), + [anon_sym_break] = ACTIONS(2810), + [anon_sym_continue] = ACTIONS(2810), + [anon_sym_goto] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_TILDE] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2812), + [anon_sym_sizeof] = ACTIONS(2810), + [sym_number_literal] = ACTIONS(2812), + [sym_char_literal] = ACTIONS(2812), + [sym_string_literal] = ACTIONS(2812), + [sym_true] = ACTIONS(2810), + [sym_false] = ACTIONS(2810), + [sym_null] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2810), [sym_comment] = ACTIONS(39), }, [888] = { - [anon_sym_RPAREN] = ACTIONS(2908), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2816), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2814), + [sym_preproc_directive] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2814), + [anon_sym_extern] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_RBRACE] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2814), + [anon_sym_auto] = ACTIONS(2814), + [anon_sym_register] = ACTIONS(2814), + [anon_sym_inline] = ACTIONS(2814), + [anon_sym_const] = ACTIONS(2814), + [anon_sym_restrict] = ACTIONS(2814), + [anon_sym_volatile] = ACTIONS(2814), + [anon_sym__Atomic] = ACTIONS(2814), + [anon_sym_unsigned] = ACTIONS(2814), + [anon_sym_long] = ACTIONS(2814), + [anon_sym_short] = ACTIONS(2814), + [sym_primitive_type] = ACTIONS(2814), + [anon_sym_enum] = ACTIONS(2814), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_union] = ACTIONS(2814), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_switch] = ACTIONS(2814), + [anon_sym_case] = ACTIONS(2814), + [anon_sym_default] = ACTIONS(2814), + [anon_sym_while] = ACTIONS(2814), + [anon_sym_do] = ACTIONS(2814), + [anon_sym_for] = ACTIONS(2814), + [anon_sym_return] = ACTIONS(2814), + [anon_sym_break] = ACTIONS(2814), + [anon_sym_continue] = ACTIONS(2814), + [anon_sym_goto] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_TILDE] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2816), + [anon_sym_PLUS_PLUS] = ACTIONS(2816), + [anon_sym_sizeof] = ACTIONS(2814), + [sym_number_literal] = ACTIONS(2816), + [sym_char_literal] = ACTIONS(2816), + [sym_string_literal] = ACTIONS(2816), + [sym_true] = ACTIONS(2814), + [sym_false] = ACTIONS(2814), + [sym_null] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2814), [sym_comment] = ACTIONS(39), }, [889] = { - [sym_type_qualifier] = STATE(115), - [sym__type_specifier] = STATE(113), - [sym_sized_type_specifier] = STATE(113), - [sym_enum_specifier] = STATE(113), - [sym_struct_specifier] = STATE(113), - [sym_union_specifier] = STATE(113), - [sym__expression] = STATE(394), - [sym_comma_expression] = STATE(395), - [sym_conditional_expression] = STATE(394), - [sym_assignment_expression] = STATE(394), - [sym_pointer_expression] = STATE(394), - [sym_logical_expression] = STATE(394), - [sym_bitwise_expression] = STATE(394), - [sym_equality_expression] = STATE(394), - [sym_relational_expression] = STATE(394), - [sym_shift_expression] = STATE(394), - [sym_math_expression] = STATE(394), - [sym_cast_expression] = STATE(394), - [sym_type_descriptor] = STATE(1023), - [sym_sizeof_expression] = STATE(394), - [sym_subscript_expression] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_field_expression] = STATE(394), - [sym_compound_literal_expression] = STATE(394), - [sym_parenthesized_expression] = STATE(394), - [sym_concatenated_string] = STATE(394), - [sym_macro_type_specifier] = STATE(113), - [aux_sym_type_definition_repeat1] = STATE(115), - [aux_sym_sized_type_specifier_repeat1] = STATE(116), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(217), - [anon_sym_long] = ACTIONS(217), - [anon_sym_short] = ACTIONS(217), - [sym_primitive_type] = ACTIONS(219), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(948), - [sym_false] = ACTIONS(948), - [sym_null] = ACTIONS(948), - [sym_identifier] = ACTIONS(950), + [sym_parameter_list] = STATE(128), + [aux_sym_declaration_repeat1] = STATE(315), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(233), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_EQ] = ACTIONS(241), [sym_comment] = ACTIONS(39), }, [890] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(1691), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1693), - [anon_sym_QMARK] = ACTIONS(1691), - [anon_sym_STAR_EQ] = ACTIONS(1691), - [anon_sym_SLASH_EQ] = ACTIONS(1691), - [anon_sym_PERCENT_EQ] = ACTIONS(1691), - [anon_sym_PLUS_EQ] = ACTIONS(1691), - [anon_sym_DASH_EQ] = ACTIONS(1691), - [anon_sym_LT_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_GT_EQ] = ACTIONS(1691), - [anon_sym_AMP_EQ] = ACTIONS(1691), - [anon_sym_CARET_EQ] = ACTIONS(1691), - [anon_sym_PIPE_EQ] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_PIPE_PIPE] = ACTIONS(1691), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_CARET] = ACTIONS(1693), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_LT] = ACTIONS(1693), - [anon_sym_GT] = ACTIONS(1693), - [anon_sym_LT_EQ] = ACTIONS(1691), - [anon_sym_GT_EQ] = ACTIONS(1691), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1729), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1727), + [sym_preproc_directive] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_typedef] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_static] = ACTIONS(1727), + [anon_sym_auto] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_inline] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [anon_sym_restrict] = ACTIONS(1727), + [anon_sym_volatile] = ACTIONS(1727), + [anon_sym__Atomic] = ACTIONS(1727), + [anon_sym_unsigned] = ACTIONS(1727), + [anon_sym_long] = ACTIONS(1727), + [anon_sym_short] = ACTIONS(1727), + [sym_primitive_type] = ACTIONS(1727), + [anon_sym_enum] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1727), + [anon_sym_union] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_switch] = ACTIONS(1727), + [anon_sym_case] = ACTIONS(1727), + [anon_sym_default] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_goto] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1729), + [anon_sym_TILDE] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_sizeof] = ACTIONS(1727), + [sym_number_literal] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1729), + [sym_string_literal] = ACTIONS(1729), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1727), [sym_comment] = ACTIONS(39), }, [891] = { - [aux_sym_concatenated_string_repeat1] = STATE(1024), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_RPAREN] = ACTIONS(1695), - [anon_sym_STAR] = ACTIONS(1697), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_EQ] = ACTIONS(1697), - [anon_sym_QMARK] = ACTIONS(1695), - [anon_sym_STAR_EQ] = ACTIONS(1695), - [anon_sym_SLASH_EQ] = ACTIONS(1695), - [anon_sym_PERCENT_EQ] = ACTIONS(1695), - [anon_sym_PLUS_EQ] = ACTIONS(1695), - [anon_sym_DASH_EQ] = ACTIONS(1695), - [anon_sym_LT_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_GT_EQ] = ACTIONS(1695), - [anon_sym_AMP_EQ] = ACTIONS(1695), - [anon_sym_CARET_EQ] = ACTIONS(1695), - [anon_sym_PIPE_EQ] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_PIPE_PIPE] = ACTIONS(1695), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_CARET] = ACTIONS(1697), - [anon_sym_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_GT] = ACTIONS(1697), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1697), - [anon_sym_GT_GT] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1697), - [anon_sym_PERCENT] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_DOT] = ACTIONS(1695), - [anon_sym_DASH_GT] = ACTIONS(1695), - [sym_string_literal] = ACTIONS(2910), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2818), + [anon_sym_LPAREN] = ACTIONS(2820), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2818), + [sym_preproc_directive] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2818), + [anon_sym_extern] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2818), + [anon_sym_auto] = ACTIONS(2818), + [anon_sym_register] = ACTIONS(2818), + [anon_sym_inline] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2818), + [anon_sym_restrict] = ACTIONS(2818), + [anon_sym_volatile] = ACTIONS(2818), + [anon_sym__Atomic] = ACTIONS(2818), + [anon_sym_unsigned] = ACTIONS(2818), + [anon_sym_long] = ACTIONS(2818), + [anon_sym_short] = ACTIONS(2818), + [sym_primitive_type] = ACTIONS(2818), + [anon_sym_enum] = ACTIONS(2818), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2818), + [anon_sym_if] = ACTIONS(2818), + [anon_sym_switch] = ACTIONS(2818), + [anon_sym_case] = ACTIONS(2818), + [anon_sym_default] = ACTIONS(2818), + [anon_sym_while] = ACTIONS(2818), + [anon_sym_do] = ACTIONS(2818), + [anon_sym_for] = ACTIONS(2818), + [anon_sym_return] = ACTIONS(2818), + [anon_sym_break] = ACTIONS(2818), + [anon_sym_continue] = ACTIONS(2818), + [anon_sym_goto] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2820), + [anon_sym_sizeof] = ACTIONS(2818), + [sym_number_literal] = ACTIONS(2820), + [sym_char_literal] = ACTIONS(2820), + [sym_string_literal] = ACTIONS(2820), + [sym_true] = ACTIONS(2818), + [sym_false] = ACTIONS(2818), + [sym_null] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2818), [sym_comment] = ACTIONS(39), }, [892] = { - [sym_compound_statement] = STATE(1032), - [sym_labeled_statement] = STATE(1032), - [sym_expression_statement] = STATE(1032), - [sym_if_statement] = STATE(1032), - [sym_switch_statement] = STATE(1032), - [sym_case_statement] = STATE(1032), - [sym_while_statement] = STATE(1032), - [sym_do_statement] = STATE(1032), - [sym_for_statement] = STATE(1032), - [sym_return_statement] = STATE(1032), - [sym_break_statement] = STATE(1032), - [sym_continue_statement] = STATE(1032), - [sym_goto_statement] = STATE(1032), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2924), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2822), [sym_comment] = ACTIONS(39), }, [893] = { - [sym__expression] = STATE(706), - [sym_conditional_expression] = STATE(706), - [sym_assignment_expression] = STATE(706), - [sym_pointer_expression] = STATE(706), - [sym_logical_expression] = STATE(706), - [sym_bitwise_expression] = STATE(706), - [sym_equality_expression] = STATE(706), - [sym_relational_expression] = STATE(706), - [sym_shift_expression] = STATE(706), - [sym_math_expression] = STATE(706), - [sym_cast_expression] = STATE(706), - [sym_sizeof_expression] = STATE(706), - [sym_subscript_expression] = STATE(706), - [sym_call_expression] = STATE(706), - [sym_field_expression] = STATE(706), - [sym_compound_literal_expression] = STATE(706), - [sym_parenthesized_expression] = STATE(706), - [sym_concatenated_string] = STATE(706), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(1717), - [sym_char_literal] = ACTIONS(1717), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_null] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1719), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2824), [sym_comment] = ACTIONS(39), }, [894] = { - [sym__expression] = STATE(1033), - [sym_conditional_expression] = STATE(1033), - [sym_assignment_expression] = STATE(1033), - [sym_pointer_expression] = STATE(1033), - [sym_logical_expression] = STATE(1033), - [sym_bitwise_expression] = STATE(1033), - [sym_equality_expression] = STATE(1033), - [sym_relational_expression] = STATE(1033), - [sym_shift_expression] = STATE(1033), - [sym_math_expression] = STATE(1033), - [sym_cast_expression] = STATE(1033), - [sym_sizeof_expression] = STATE(1033), - [sym_subscript_expression] = STATE(1033), - [sym_call_expression] = STATE(1033), - [sym_field_expression] = STATE(1033), - [sym_compound_literal_expression] = STATE(1033), - [sym_parenthesized_expression] = STATE(1033), - [sym_concatenated_string] = STATE(1033), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2926), - [sym_char_literal] = ACTIONS(2926), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2928), - [sym_false] = ACTIONS(2928), - [sym_null] = ACTIONS(2928), - [sym_identifier] = ACTIONS(2928), + [sym_preproc_include] = STATE(894), + [sym_preproc_def] = STATE(894), + [sym_preproc_function_def] = STATE(894), + [sym_preproc_call] = STATE(894), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_declaration] = STATE(894), + [sym_type_definition] = STATE(894), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(894), + [sym_storage_class_specifier] = STATE(20), + [sym_type_qualifier] = STATE(20), + [sym__type_specifier] = STATE(18), + [sym_sized_type_specifier] = STATE(18), + [sym_enum_specifier] = STATE(18), + [sym_struct_specifier] = STATE(18), + [sym_union_specifier] = STATE(18), + [sym_labeled_statement] = STATE(894), + [sym_expression_statement] = STATE(894), + [sym_if_statement] = STATE(894), + [sym_switch_statement] = STATE(894), + [sym_case_statement] = STATE(894), + [sym_while_statement] = STATE(894), + [sym_do_statement] = STATE(894), + [sym_for_statement] = STATE(894), + [sym_return_statement] = STATE(894), + [sym_break_statement] = STATE(894), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(894), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(894), + [sym_macro_type_specifier] = STATE(18), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(894), + [aux_sym__declaration_specifiers_repeat1] = STATE(20), + [aux_sym_sized_type_specifier_repeat1] = STATE(21), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2826), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2832), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2835), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2837), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2840), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2835), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2835), + [sym_preproc_directive] = ACTIONS(2843), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_typedef] = ACTIONS(2849), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_static] = ACTIONS(1820), + [anon_sym_auto] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_inline] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_restrict] = ACTIONS(1831), + [anon_sym_volatile] = ACTIONS(1831), + [anon_sym__Atomic] = ACTIONS(1831), + [anon_sym_unsigned] = ACTIONS(1834), + [anon_sym_long] = ACTIONS(1834), + [anon_sym_short] = ACTIONS(1834), + [sym_primitive_type] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2858), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_do] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2876), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2882), + [anon_sym_goto] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_sizeof] = ACTIONS(1894), + [sym_number_literal] = ACTIONS(2888), + [sym_char_literal] = ACTIONS(2888), + [sym_string_literal] = ACTIONS(1900), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_null] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2894), [sym_comment] = ACTIONS(39), }, [895] = { - [sym__expression] = STATE(1034), - [sym_conditional_expression] = STATE(1034), - [sym_assignment_expression] = STATE(1034), - [sym_pointer_expression] = STATE(1034), - [sym_logical_expression] = STATE(1034), - [sym_bitwise_expression] = STATE(1034), - [sym_equality_expression] = STATE(1034), - [sym_relational_expression] = STATE(1034), - [sym_shift_expression] = STATE(1034), - [sym_math_expression] = STATE(1034), - [sym_cast_expression] = STATE(1034), - [sym_sizeof_expression] = STATE(1034), - [sym_subscript_expression] = STATE(1034), - [sym_call_expression] = STATE(1034), - [sym_field_expression] = STATE(1034), - [sym_compound_literal_expression] = STATE(1034), - [sym_parenthesized_expression] = STATE(1034), - [sym_concatenated_string] = STATE(1034), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2930), - [sym_char_literal] = ACTIONS(2930), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2932), - [sym_false] = ACTIONS(2932), - [sym_null] = ACTIONS(2932), - [sym_identifier] = ACTIONS(2932), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2897), + [anon_sym_LPAREN] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2897), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2897), + [anon_sym_extern] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2897), + [anon_sym_auto] = ACTIONS(2897), + [anon_sym_register] = ACTIONS(2897), + [anon_sym_inline] = ACTIONS(2897), + [anon_sym_const] = ACTIONS(2897), + [anon_sym_restrict] = ACTIONS(2897), + [anon_sym_volatile] = ACTIONS(2897), + [anon_sym__Atomic] = ACTIONS(2897), + [anon_sym_unsigned] = ACTIONS(2897), + [anon_sym_long] = ACTIONS(2897), + [anon_sym_short] = ACTIONS(2897), + [sym_primitive_type] = ACTIONS(2897), + [anon_sym_enum] = ACTIONS(2897), + [anon_sym_struct] = ACTIONS(2897), + [anon_sym_union] = ACTIONS(2897), + [anon_sym_if] = ACTIONS(2897), + [anon_sym_switch] = ACTIONS(2897), + [anon_sym_case] = ACTIONS(2897), + [anon_sym_default] = ACTIONS(2897), + [anon_sym_while] = ACTIONS(2897), + [anon_sym_do] = ACTIONS(2897), + [anon_sym_for] = ACTIONS(2897), + [anon_sym_return] = ACTIONS(2897), + [anon_sym_break] = ACTIONS(2897), + [anon_sym_continue] = ACTIONS(2897), + [anon_sym_goto] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_sizeof] = ACTIONS(2897), + [sym_number_literal] = ACTIONS(2899), + [sym_char_literal] = ACTIONS(2899), + [sym_string_literal] = ACTIONS(2899), + [sym_true] = ACTIONS(2897), + [sym_false] = ACTIONS(2897), + [sym_null] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2897), [sym_comment] = ACTIONS(39), }, [896] = { - [sym__expression] = STATE(1035), - [sym_conditional_expression] = STATE(1035), - [sym_assignment_expression] = STATE(1035), - [sym_pointer_expression] = STATE(1035), - [sym_logical_expression] = STATE(1035), - [sym_bitwise_expression] = STATE(1035), - [sym_equality_expression] = STATE(1035), - [sym_relational_expression] = STATE(1035), - [sym_shift_expression] = STATE(1035), - [sym_math_expression] = STATE(1035), - [sym_cast_expression] = STATE(1035), - [sym_sizeof_expression] = STATE(1035), - [sym_subscript_expression] = STATE(1035), - [sym_call_expression] = STATE(1035), - [sym_field_expression] = STATE(1035), - [sym_compound_literal_expression] = STATE(1035), - [sym_parenthesized_expression] = STATE(1035), - [sym_concatenated_string] = STATE(1035), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2934), - [sym_char_literal] = ACTIONS(2934), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2936), - [sym_false] = ACTIONS(2936), - [sym_null] = ACTIONS(2936), - [sym_identifier] = ACTIONS(2936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2903), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2901), + [sym_preproc_directive] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym_typedef] = ACTIONS(2901), + [anon_sym_extern] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_auto] = ACTIONS(2901), + [anon_sym_register] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_restrict] = ACTIONS(2901), + [anon_sym_volatile] = ACTIONS(2901), + [anon_sym__Atomic] = ACTIONS(2901), + [anon_sym_unsigned] = ACTIONS(2901), + [anon_sym_long] = ACTIONS(2901), + [anon_sym_short] = ACTIONS(2901), + [sym_primitive_type] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_union] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_case] = ACTIONS(2901), + [anon_sym_default] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_goto] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_sizeof] = ACTIONS(2901), + [sym_number_literal] = ACTIONS(2903), + [sym_char_literal] = ACTIONS(2903), + [sym_string_literal] = ACTIONS(2903), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [sym_null] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2901), [sym_comment] = ACTIONS(39), }, [897] = { - [sym__expression] = STATE(1036), - [sym_conditional_expression] = STATE(1036), - [sym_assignment_expression] = STATE(1036), - [sym_pointer_expression] = STATE(1036), - [sym_logical_expression] = STATE(1036), - [sym_bitwise_expression] = STATE(1036), - [sym_equality_expression] = STATE(1036), - [sym_relational_expression] = STATE(1036), - [sym_shift_expression] = STATE(1036), - [sym_math_expression] = STATE(1036), - [sym_cast_expression] = STATE(1036), - [sym_sizeof_expression] = STATE(1036), - [sym_subscript_expression] = STATE(1036), - [sym_call_expression] = STATE(1036), - [sym_field_expression] = STATE(1036), - [sym_compound_literal_expression] = STATE(1036), - [sym_parenthesized_expression] = STATE(1036), - [sym_concatenated_string] = STATE(1036), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2938), - [sym_char_literal] = ACTIONS(2938), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2940), - [sym_false] = ACTIONS(2940), - [sym_null] = ACTIONS(2940), - [sym_identifier] = ACTIONS(2940), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2907), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2905), + [sym_preproc_directive] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_RBRACE] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_auto] = ACTIONS(2905), + [anon_sym_register] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym_unsigned] = ACTIONS(2905), + [anon_sym_long] = ACTIONS(2905), + [anon_sym_short] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_case] = ACTIONS(2905), + [anon_sym_default] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_goto] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2907), + [sym_char_literal] = ACTIONS(2907), + [sym_string_literal] = ACTIONS(2907), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_null] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2905), [sym_comment] = ACTIONS(39), }, [898] = { - [sym__expression] = STATE(1037), - [sym_conditional_expression] = STATE(1037), - [sym_assignment_expression] = STATE(1037), - [sym_pointer_expression] = STATE(1037), - [sym_logical_expression] = STATE(1037), - [sym_bitwise_expression] = STATE(1037), - [sym_equality_expression] = STATE(1037), - [sym_relational_expression] = STATE(1037), - [sym_shift_expression] = STATE(1037), - [sym_math_expression] = STATE(1037), - [sym_cast_expression] = STATE(1037), - [sym_sizeof_expression] = STATE(1037), - [sym_subscript_expression] = STATE(1037), - [sym_call_expression] = STATE(1037), - [sym_field_expression] = STATE(1037), - [sym_compound_literal_expression] = STATE(1037), - [sym_parenthesized_expression] = STATE(1037), - [sym_concatenated_string] = STATE(1037), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2942), - [sym_char_literal] = ACTIONS(2942), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2944), - [sym_false] = ACTIONS(2944), - [sym_null] = ACTIONS(2944), - [sym_identifier] = ACTIONS(2944), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2909), [sym_comment] = ACTIONS(39), }, [899] = { - [sym__expression] = STATE(1038), - [sym_conditional_expression] = STATE(1038), - [sym_assignment_expression] = STATE(1038), - [sym_pointer_expression] = STATE(1038), - [sym_logical_expression] = STATE(1038), - [sym_bitwise_expression] = STATE(1038), - [sym_equality_expression] = STATE(1038), - [sym_relational_expression] = STATE(1038), - [sym_shift_expression] = STATE(1038), - [sym_math_expression] = STATE(1038), - [sym_cast_expression] = STATE(1038), - [sym_sizeof_expression] = STATE(1038), - [sym_subscript_expression] = STATE(1038), - [sym_call_expression] = STATE(1038), - [sym_field_expression] = STATE(1038), - [sym_compound_literal_expression] = STATE(1038), - [sym_parenthesized_expression] = STATE(1038), - [sym_concatenated_string] = STATE(1038), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2946), - [sym_char_literal] = ACTIONS(2946), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2948), - [sym_false] = ACTIONS(2948), - [sym_null] = ACTIONS(2948), - [sym_identifier] = ACTIONS(2948), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2911), [sym_comment] = ACTIONS(39), }, [900] = { - [sym__expression] = STATE(1039), - [sym_conditional_expression] = STATE(1039), - [sym_assignment_expression] = STATE(1039), - [sym_pointer_expression] = STATE(1039), - [sym_logical_expression] = STATE(1039), - [sym_bitwise_expression] = STATE(1039), - [sym_equality_expression] = STATE(1039), - [sym_relational_expression] = STATE(1039), - [sym_shift_expression] = STATE(1039), - [sym_math_expression] = STATE(1039), - [sym_cast_expression] = STATE(1039), - [sym_sizeof_expression] = STATE(1039), - [sym_subscript_expression] = STATE(1039), - [sym_call_expression] = STATE(1039), - [sym_field_expression] = STATE(1039), - [sym_compound_literal_expression] = STATE(1039), - [sym_parenthesized_expression] = STATE(1039), - [sym_concatenated_string] = STATE(1039), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2950), - [sym_char_literal] = ACTIONS(2950), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2952), - [sym_false] = ACTIONS(2952), - [sym_null] = ACTIONS(2952), - [sym_identifier] = ACTIONS(2952), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2913), + [sym_preproc_directive] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_typedef] = ACTIONS(2913), + [anon_sym_extern] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_RBRACE] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_auto] = ACTIONS(2913), + [anon_sym_register] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_restrict] = ACTIONS(2913), + [anon_sym_volatile] = ACTIONS(2913), + [anon_sym__Atomic] = ACTIONS(2913), + [anon_sym_unsigned] = ACTIONS(2913), + [anon_sym_long] = ACTIONS(2913), + [anon_sym_short] = ACTIONS(2913), + [sym_primitive_type] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_union] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_goto] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_sizeof] = ACTIONS(2913), + [sym_number_literal] = ACTIONS(2915), + [sym_char_literal] = ACTIONS(2915), + [sym_string_literal] = ACTIONS(2915), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_null] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2913), [sym_comment] = ACTIONS(39), }, [901] = { - [sym__expression] = STATE(1040), - [sym_conditional_expression] = STATE(1040), - [sym_assignment_expression] = STATE(1040), - [sym_pointer_expression] = STATE(1040), - [sym_logical_expression] = STATE(1040), - [sym_bitwise_expression] = STATE(1040), - [sym_equality_expression] = STATE(1040), - [sym_relational_expression] = STATE(1040), - [sym_shift_expression] = STATE(1040), - [sym_math_expression] = STATE(1040), - [sym_cast_expression] = STATE(1040), - [sym_sizeof_expression] = STATE(1040), - [sym_subscript_expression] = STATE(1040), - [sym_call_expression] = STATE(1040), - [sym_field_expression] = STATE(1040), - [sym_compound_literal_expression] = STATE(1040), - [sym_parenthesized_expression] = STATE(1040), - [sym_concatenated_string] = STATE(1040), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2954), - [sym_char_literal] = ACTIONS(2954), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2956), - [sym_false] = ACTIONS(2956), - [sym_null] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2956), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2917), + [sym_preproc_directive] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym_typedef] = ACTIONS(2917), + [anon_sym_extern] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_RBRACE] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2917), + [anon_sym_auto] = ACTIONS(2917), + [anon_sym_register] = ACTIONS(2917), + [anon_sym_inline] = ACTIONS(2917), + [anon_sym_const] = ACTIONS(2917), + [anon_sym_restrict] = ACTIONS(2917), + [anon_sym_volatile] = ACTIONS(2917), + [anon_sym__Atomic] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(2917), + [anon_sym_long] = ACTIONS(2917), + [anon_sym_short] = ACTIONS(2917), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_union] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_switch] = ACTIONS(2917), + [anon_sym_case] = ACTIONS(2917), + [anon_sym_default] = ACTIONS(2917), + [anon_sym_while] = ACTIONS(2917), + [anon_sym_do] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(2917), + [sym_number_literal] = ACTIONS(2919), + [sym_char_literal] = ACTIONS(2919), + [sym_string_literal] = ACTIONS(2919), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [sym_null] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(39), }, [902] = { - [sym__expression] = STATE(1041), - [sym_conditional_expression] = STATE(1041), - [sym_assignment_expression] = STATE(1041), - [sym_pointer_expression] = STATE(1041), - [sym_logical_expression] = STATE(1041), - [sym_bitwise_expression] = STATE(1041), - [sym_equality_expression] = STATE(1041), - [sym_relational_expression] = STATE(1041), - [sym_shift_expression] = STATE(1041), - [sym_math_expression] = STATE(1041), - [sym_cast_expression] = STATE(1041), - [sym_sizeof_expression] = STATE(1041), - [sym_subscript_expression] = STATE(1041), - [sym_call_expression] = STATE(1041), - [sym_field_expression] = STATE(1041), - [sym_compound_literal_expression] = STATE(1041), - [sym_parenthesized_expression] = STATE(1041), - [sym_concatenated_string] = STATE(1041), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2958), - [sym_char_literal] = ACTIONS(2958), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2960), - [sym_false] = ACTIONS(2960), - [sym_null] = ACTIONS(2960), - [sym_identifier] = ACTIONS(2960), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2921), + [sym_preproc_directive] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_auto] = ACTIONS(2921), + [anon_sym_register] = ACTIONS(2921), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_restrict] = ACTIONS(2921), + [anon_sym_volatile] = ACTIONS(2921), + [anon_sym__Atomic] = ACTIONS(2921), + [anon_sym_unsigned] = ACTIONS(2921), + [anon_sym_long] = ACTIONS(2921), + [anon_sym_short] = ACTIONS(2921), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_switch] = ACTIONS(2921), + [anon_sym_case] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_do] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_goto] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2921), + [sym_number_literal] = ACTIONS(2923), + [sym_char_literal] = ACTIONS(2923), + [sym_string_literal] = ACTIONS(2923), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [sym_null] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2921), [sym_comment] = ACTIONS(39), }, [903] = { - [sym__expression] = STATE(1042), - [sym_conditional_expression] = STATE(1042), - [sym_assignment_expression] = STATE(1042), - [sym_pointer_expression] = STATE(1042), - [sym_logical_expression] = STATE(1042), - [sym_bitwise_expression] = STATE(1042), - [sym_equality_expression] = STATE(1042), - [sym_relational_expression] = STATE(1042), - [sym_shift_expression] = STATE(1042), - [sym_math_expression] = STATE(1042), - [sym_cast_expression] = STATE(1042), - [sym_sizeof_expression] = STATE(1042), - [sym_subscript_expression] = STATE(1042), - [sym_call_expression] = STATE(1042), - [sym_field_expression] = STATE(1042), - [sym_compound_literal_expression] = STATE(1042), - [sym_parenthesized_expression] = STATE(1042), - [sym_concatenated_string] = STATE(1042), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2962), - [sym_char_literal] = ACTIONS(2962), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2964), - [sym_false] = ACTIONS(2964), - [sym_null] = ACTIONS(2964), - [sym_identifier] = ACTIONS(2964), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2925), [sym_comment] = ACTIONS(39), }, [904] = { - [sym__expression] = STATE(1043), - [sym_conditional_expression] = STATE(1043), - [sym_assignment_expression] = STATE(1043), - [sym_pointer_expression] = STATE(1043), - [sym_logical_expression] = STATE(1043), - [sym_bitwise_expression] = STATE(1043), - [sym_equality_expression] = STATE(1043), - [sym_relational_expression] = STATE(1043), - [sym_shift_expression] = STATE(1043), - [sym_math_expression] = STATE(1043), - [sym_cast_expression] = STATE(1043), - [sym_sizeof_expression] = STATE(1043), - [sym_subscript_expression] = STATE(1043), - [sym_call_expression] = STATE(1043), - [sym_field_expression] = STATE(1043), - [sym_compound_literal_expression] = STATE(1043), - [sym_parenthesized_expression] = STATE(1043), - [sym_concatenated_string] = STATE(1043), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2966), - [sym_char_literal] = ACTIONS(2966), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2968), - [sym_false] = ACTIONS(2968), - [sym_null] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2927), [sym_comment] = ACTIONS(39), }, [905] = { - [sym_compound_statement] = STATE(1044), - [sym_labeled_statement] = STATE(1044), - [sym_expression_statement] = STATE(1044), - [sym_if_statement] = STATE(1044), - [sym_switch_statement] = STATE(1044), - [sym_case_statement] = STATE(1044), - [sym_while_statement] = STATE(1044), - [sym_do_statement] = STATE(1044), - [sym_for_statement] = STATE(1044), - [sym_return_statement] = STATE(1044), - [sym_break_statement] = STATE(1044), - [sym_continue_statement] = STATE(1044), - [sym_goto_statement] = STATE(1044), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(2929), [sym_comment] = ACTIONS(39), }, [906] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [sym_type_qualifier] = STATE(115), + [sym__type_specifier] = STATE(113), + [sym_sized_type_specifier] = STATE(113), + [sym_enum_specifier] = STATE(113), + [sym_struct_specifier] = STATE(113), + [sym_union_specifier] = STATE(113), + [sym__expression] = STATE(404), + [sym_comma_expression] = STATE(405), + [sym_conditional_expression] = STATE(404), + [sym_assignment_expression] = STATE(404), + [sym_pointer_expression] = STATE(404), + [sym_logical_expression] = STATE(404), + [sym_bitwise_expression] = STATE(404), + [sym_equality_expression] = STATE(404), + [sym_relational_expression] = STATE(404), + [sym_shift_expression] = STATE(404), + [sym_math_expression] = STATE(404), + [sym_cast_expression] = STATE(404), + [sym_type_descriptor] = STATE(1041), + [sym_sizeof_expression] = STATE(404), + [sym_subscript_expression] = STATE(404), + [sym_call_expression] = STATE(404), + [sym_field_expression] = STATE(404), + [sym_compound_literal_expression] = STATE(404), + [sym_parenthesized_expression] = STATE(404), + [sym_concatenated_string] = STATE(404), + [sym_macro_type_specifier] = STATE(113), + [aux_sym_type_definition_repeat1] = STATE(115), + [aux_sym_sized_type_specifier_repeat1] = STATE(116), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(217), + [anon_sym_long] = ACTIONS(217), + [anon_sym_short] = ACTIONS(217), + [sym_primitive_type] = ACTIONS(219), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(960), + [sym_false] = ACTIONS(960), + [sym_null] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), [sym_comment] = ACTIONS(39), }, [907] = { - [anon_sym_RPAREN] = ACTIONS(2970), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1707), + [anon_sym_QMARK] = ACTIONS(1705), + [anon_sym_STAR_EQ] = ACTIONS(1705), + [anon_sym_SLASH_EQ] = ACTIONS(1705), + [anon_sym_PERCENT_EQ] = ACTIONS(1705), + [anon_sym_PLUS_EQ] = ACTIONS(1705), + [anon_sym_DASH_EQ] = ACTIONS(1705), + [anon_sym_LT_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_GT_EQ] = ACTIONS(1705), + [anon_sym_AMP_EQ] = ACTIONS(1705), + [anon_sym_CARET_EQ] = ACTIONS(1705), + [anon_sym_PIPE_EQ] = ACTIONS(1705), + [anon_sym_AMP] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_EQ_EQ] = ACTIONS(1705), + [anon_sym_BANG_EQ] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1705), + [anon_sym_GT_EQ] = ACTIONS(1705), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [908] = { - [aux_sym_concatenated_string_repeat1] = STATE(908), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2530), - [anon_sym_COLON] = ACTIONS(2528), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_STAR_EQ] = ACTIONS(2528), - [anon_sym_SLASH_EQ] = ACTIONS(2528), - [anon_sym_PERCENT_EQ] = ACTIONS(2528), - [anon_sym_PLUS_EQ] = ACTIONS(2528), - [anon_sym_DASH_EQ] = ACTIONS(2528), - [anon_sym_LT_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_GT_EQ] = ACTIONS(2528), - [anon_sym_AMP_EQ] = ACTIONS(2528), - [anon_sym_CARET_EQ] = ACTIONS(2528), - [anon_sym_PIPE_EQ] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2530), - [anon_sym_EQ_EQ] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_GT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2530), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2530), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_DASH_GT] = ACTIONS(2528), - [sym_string_literal] = ACTIONS(2972), + [aux_sym_concatenated_string_repeat1] = STATE(1042), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1711), + [anon_sym_QMARK] = ACTIONS(1709), + [anon_sym_STAR_EQ] = ACTIONS(1709), + [anon_sym_SLASH_EQ] = ACTIONS(1709), + [anon_sym_PERCENT_EQ] = ACTIONS(1709), + [anon_sym_PLUS_EQ] = ACTIONS(1709), + [anon_sym_DASH_EQ] = ACTIONS(1709), + [anon_sym_LT_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_GT_EQ] = ACTIONS(1709), + [anon_sym_AMP_EQ] = ACTIONS(1709), + [anon_sym_CARET_EQ] = ACTIONS(1709), + [anon_sym_PIPE_EQ] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PIPE_PIPE] = ACTIONS(1709), + [anon_sym_AMP_AMP] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(1711), + [anon_sym_EQ_EQ] = ACTIONS(1709), + [anon_sym_BANG_EQ] = ACTIONS(1709), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1709), + [anon_sym_GT_EQ] = ACTIONS(1709), + [anon_sym_LT_LT] = ACTIONS(1711), + [anon_sym_GT_GT] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_PERCENT] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1709), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_DASH_GT] = ACTIONS(1709), + [sym_string_literal] = ACTIONS(2931), [sym_comment] = ACTIONS(39), }, [909] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(2555), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_compound_statement] = STATE(1050), + [sym_labeled_statement] = STATE(1050), + [sym_expression_statement] = STATE(1050), + [sym_if_statement] = STATE(1050), + [sym_switch_statement] = STATE(1050), + [sym_case_statement] = STATE(1050), + [sym_while_statement] = STATE(1050), + [sym_do_statement] = STATE(1050), + [sym_for_statement] = STATE(1050), + [sym_return_statement] = STATE(1050), + [sym_break_statement] = STATE(1050), + [sym_continue_statement] = STATE(1050), + [sym_goto_statement] = STATE(1050), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2945), [sym_comment] = ACTIONS(39), }, [910] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2975), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2975), - [anon_sym_extern] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2975), - [anon_sym_auto] = ACTIONS(2975), - [anon_sym_register] = ACTIONS(2975), - [anon_sym_inline] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2975), - [anon_sym_restrict] = ACTIONS(2975), - [anon_sym_volatile] = ACTIONS(2975), - [anon_sym__Atomic] = ACTIONS(2975), - [anon_sym_unsigned] = ACTIONS(2975), - [anon_sym_long] = ACTIONS(2975), - [anon_sym_short] = ACTIONS(2975), - [sym_primitive_type] = ACTIONS(2975), - [anon_sym_enum] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2975), - [anon_sym_union] = ACTIONS(2975), - [anon_sym_if] = ACTIONS(2975), - [anon_sym_else] = ACTIONS(2975), - [anon_sym_switch] = ACTIONS(2975), - [anon_sym_case] = ACTIONS(2975), - [anon_sym_default] = ACTIONS(2975), - [anon_sym_while] = ACTIONS(2975), - [anon_sym_do] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2975), - [anon_sym_return] = ACTIONS(2975), - [anon_sym_break] = ACTIONS(2975), - [anon_sym_continue] = ACTIONS(2975), - [anon_sym_goto] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_DASH_DASH] = ACTIONS(2977), - [anon_sym_PLUS_PLUS] = ACTIONS(2977), - [anon_sym_sizeof] = ACTIONS(2975), - [sym_number_literal] = ACTIONS(2977), - [sym_char_literal] = ACTIONS(2977), - [sym_string_literal] = ACTIONS(2977), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2975), + [sym__expression] = STATE(721), + [sym_conditional_expression] = STATE(721), + [sym_assignment_expression] = STATE(721), + [sym_pointer_expression] = STATE(721), + [sym_logical_expression] = STATE(721), + [sym_bitwise_expression] = STATE(721), + [sym_equality_expression] = STATE(721), + [sym_relational_expression] = STATE(721), + [sym_shift_expression] = STATE(721), + [sym_math_expression] = STATE(721), + [sym_cast_expression] = STATE(721), + [sym_sizeof_expression] = STATE(721), + [sym_subscript_expression] = STATE(721), + [sym_call_expression] = STATE(721), + [sym_field_expression] = STATE(721), + [sym_compound_literal_expression] = STATE(721), + [sym_parenthesized_expression] = STATE(721), + [sym_concatenated_string] = STATE(721), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(1731), + [sym_char_literal] = ACTIONS(1731), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(1733), + [sym_false] = ACTIONS(1733), + [sym_null] = ACTIONS(1733), + [sym_identifier] = ACTIONS(1733), [sym_comment] = ACTIONS(39), }, [911] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym__expression] = STATE(1051), + [sym_conditional_expression] = STATE(1051), + [sym_assignment_expression] = STATE(1051), + [sym_pointer_expression] = STATE(1051), + [sym_logical_expression] = STATE(1051), + [sym_bitwise_expression] = STATE(1051), + [sym_equality_expression] = STATE(1051), + [sym_relational_expression] = STATE(1051), + [sym_shift_expression] = STATE(1051), + [sym_math_expression] = STATE(1051), + [sym_cast_expression] = STATE(1051), + [sym_sizeof_expression] = STATE(1051), + [sym_subscript_expression] = STATE(1051), + [sym_call_expression] = STATE(1051), + [sym_field_expression] = STATE(1051), + [sym_compound_literal_expression] = STATE(1051), + [sym_parenthesized_expression] = STATE(1051), + [sym_concatenated_string] = STATE(1051), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2947), + [sym_char_literal] = ACTIONS(2947), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2949), + [sym_false] = ACTIONS(2949), + [sym_null] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2949), [sym_comment] = ACTIONS(39), }, [912] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_COLON] = ACTIONS(2559), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [913] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_COLON] = ACTIONS(2563), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [914] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_COLON] = ACTIONS(2563), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [915] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_COLON] = ACTIONS(2559), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [916] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_COLON] = ACTIONS(2559), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [917] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_COLON] = ACTIONS(2567), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_STAR_EQ] = ACTIONS(2567), - [anon_sym_SLASH_EQ] = ACTIONS(2567), - [anon_sym_PERCENT_EQ] = ACTIONS(2567), - [anon_sym_PLUS_EQ] = ACTIONS(2567), - [anon_sym_DASH_EQ] = ACTIONS(2567), - [anon_sym_LT_LT_EQ] = ACTIONS(2567), - [anon_sym_GT_GT_EQ] = ACTIONS(2567), - [anon_sym_AMP_EQ] = ACTIONS(2567), - [anon_sym_CARET_EQ] = ACTIONS(2567), - [anon_sym_PIPE_EQ] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2569), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_EQ_EQ] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [918] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_COLON] = ACTIONS(2571), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_STAR_EQ] = ACTIONS(2571), - [anon_sym_SLASH_EQ] = ACTIONS(2571), - [anon_sym_PERCENT_EQ] = ACTIONS(2571), - [anon_sym_PLUS_EQ] = ACTIONS(2571), - [anon_sym_DASH_EQ] = ACTIONS(2571), - [anon_sym_LT_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_GT_EQ] = ACTIONS(2571), - [anon_sym_AMP_EQ] = ACTIONS(2571), - [anon_sym_CARET_EQ] = ACTIONS(2571), - [anon_sym_PIPE_EQ] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [919] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_COLON] = ACTIONS(2575), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_STAR_EQ] = ACTIONS(2575), - [anon_sym_SLASH_EQ] = ACTIONS(2575), - [anon_sym_PERCENT_EQ] = ACTIONS(2575), - [anon_sym_PLUS_EQ] = ACTIONS(2575), - [anon_sym_DASH_EQ] = ACTIONS(2575), - [anon_sym_LT_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_GT_EQ] = ACTIONS(2575), - [anon_sym_AMP_EQ] = ACTIONS(2575), - [anon_sym_CARET_EQ] = ACTIONS(2575), - [anon_sym_PIPE_EQ] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2577), - [anon_sym_CARET] = ACTIONS(2577), - [anon_sym_EQ_EQ] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), - [anon_sym_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_EQ] = ACTIONS(2575), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_GT_GT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [920] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2551), - [anon_sym_COLON] = ACTIONS(2549), - [anon_sym_QMARK] = ACTIONS(2549), - [anon_sym_STAR_EQ] = ACTIONS(2549), - [anon_sym_SLASH_EQ] = ACTIONS(2549), - [anon_sym_PERCENT_EQ] = ACTIONS(2549), - [anon_sym_PLUS_EQ] = ACTIONS(2549), - [anon_sym_DASH_EQ] = ACTIONS(2549), - [anon_sym_LT_LT_EQ] = ACTIONS(2549), - [anon_sym_GT_GT_EQ] = ACTIONS(2549), - [anon_sym_AMP_EQ] = ACTIONS(2549), - [anon_sym_CARET_EQ] = ACTIONS(2549), - [anon_sym_PIPE_EQ] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2551), - [anon_sym_PIPE_PIPE] = ACTIONS(2549), - [anon_sym_AMP_AMP] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2551), - [anon_sym_CARET] = ACTIONS(2551), - [anon_sym_EQ_EQ] = ACTIONS(2549), - [anon_sym_BANG_EQ] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2551), - [anon_sym_GT] = ACTIONS(2551), - [anon_sym_LT_EQ] = ACTIONS(2549), - [anon_sym_GT_EQ] = ACTIONS(2549), - [anon_sym_LT_LT] = ACTIONS(2551), - [anon_sym_GT_GT] = ACTIONS(2551), - [anon_sym_PLUS] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [921] = { - [sym_compound_statement] = STATE(1047), - [sym_labeled_statement] = STATE(1047), - [sym_expression_statement] = STATE(1047), - [sym_if_statement] = STATE(1047), - [sym_switch_statement] = STATE(1047), - [sym_case_statement] = STATE(1047), - [sym_while_statement] = STATE(1047), - [sym_do_statement] = STATE(1047), - [sym_for_statement] = STATE(1047), - [sym_return_statement] = STATE(1047), - [sym_break_statement] = STATE(1047), - [sym_continue_statement] = STATE(1047), - [sym_goto_statement] = STATE(1047), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1701), - [sym_comment] = ACTIONS(39), - }, - [922] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [923] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2983), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [924] = { - [sym_declaration] = STATE(910), - [sym_type_definition] = STATE(910), - [sym__declaration_specifiers] = STATE(683), - [sym_compound_statement] = STATE(910), - [sym_storage_class_specifier] = STATE(93), - [sym_type_qualifier] = STATE(93), - [sym__type_specifier] = STATE(92), - [sym_sized_type_specifier] = STATE(92), - [sym_enum_specifier] = STATE(92), - [sym_struct_specifier] = STATE(92), - [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(910), - [sym_expression_statement] = STATE(910), - [sym_if_statement] = STATE(910), - [sym_switch_statement] = STATE(910), - [sym_case_statement] = STATE(910), - [sym_while_statement] = STATE(910), - [sym_do_statement] = STATE(910), - [sym_for_statement] = STATE(910), - [sym_return_statement] = STATE(910), - [sym_break_statement] = STATE(910), - [sym_continue_statement] = STATE(910), - [sym_goto_statement] = STATE(910), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [sym_macro_type_specifier] = STATE(92), - [aux_sym__declaration_specifiers_repeat1] = STATE(93), - [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(171), - [anon_sym_long] = ACTIONS(171), - [anon_sym_short] = ACTIONS(171), - [sym_primitive_type] = ACTIONS(173), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2496), - [sym_comment] = ACTIONS(39), - }, - [925] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_identifier] = ACTIONS(86), - [sym_comment] = ACTIONS(39), - }, - [926] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [927] = { [sym__expression] = STATE(1052), [sym_conditional_expression] = STATE(1052), [sym_assignment_expression] = STATE(1052), @@ -35484,68 +34441,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1052), [sym_parenthesized_expression] = STATE(1052), [sym_concatenated_string] = STATE(1052), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(2989), - [sym_char_literal] = ACTIONS(2989), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2991), - [sym_false] = ACTIONS(2991), - [sym_null] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2951), + [sym_char_literal] = ACTIONS(2951), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2953), + [sym_false] = ACTIONS(2953), + [sym_null] = ACTIONS(2953), + [sym_identifier] = ACTIONS(2953), [sym_comment] = ACTIONS(39), }, - [928] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [913] = { + [sym__expression] = STATE(1053), + [sym_conditional_expression] = STATE(1053), + [sym_assignment_expression] = STATE(1053), + [sym_pointer_expression] = STATE(1053), + [sym_logical_expression] = STATE(1053), + [sym_bitwise_expression] = STATE(1053), + [sym_equality_expression] = STATE(1053), + [sym_relational_expression] = STATE(1053), + [sym_shift_expression] = STATE(1053), + [sym_math_expression] = STATE(1053), + [sym_cast_expression] = STATE(1053), + [sym_sizeof_expression] = STATE(1053), + [sym_subscript_expression] = STATE(1053), + [sym_call_expression] = STATE(1053), + [sym_field_expression] = STATE(1053), + [sym_compound_literal_expression] = STATE(1053), + [sym_parenthesized_expression] = STATE(1053), + [sym_concatenated_string] = STATE(1053), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2955), + [sym_char_literal] = ACTIONS(2955), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2957), + [sym_false] = ACTIONS(2957), + [sym_null] = ACTIONS(2957), + [sym_identifier] = ACTIONS(2957), [sym_comment] = ACTIONS(39), }, - [929] = { + [914] = { [sym__expression] = STATE(1054), [sym_conditional_expression] = STATE(1054), [sym_assignment_expression] = STATE(1054), @@ -35564,26 +34517,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1054), [sym_parenthesized_expression] = STATE(1054), [sym_concatenated_string] = STATE(1054), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2995), - [sym_char_literal] = ACTIONS(2995), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_null] = ACTIONS(2997), - [sym_identifier] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2959), + [sym_char_literal] = ACTIONS(2959), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2961), + [sym_false] = ACTIONS(2961), + [sym_null] = ACTIONS(2961), + [sym_identifier] = ACTIONS(2961), [sym_comment] = ACTIONS(39), }, - [930] = { + [915] = { + [sym__expression] = STATE(1055), + [sym_conditional_expression] = STATE(1055), + [sym_assignment_expression] = STATE(1055), + [sym_pointer_expression] = STATE(1055), + [sym_logical_expression] = STATE(1055), + [sym_bitwise_expression] = STATE(1055), + [sym_equality_expression] = STATE(1055), + [sym_relational_expression] = STATE(1055), + [sym_shift_expression] = STATE(1055), + [sym_math_expression] = STATE(1055), + [sym_cast_expression] = STATE(1055), + [sym_sizeof_expression] = STATE(1055), + [sym_subscript_expression] = STATE(1055), + [sym_call_expression] = STATE(1055), + [sym_field_expression] = STATE(1055), + [sym_compound_literal_expression] = STATE(1055), + [sym_parenthesized_expression] = STATE(1055), + [sym_concatenated_string] = STATE(1055), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2963), + [sym_char_literal] = ACTIONS(2963), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2965), + [sym_false] = ACTIONS(2965), + [sym_null] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2965), + [sym_comment] = ACTIONS(39), + }, + [916] = { [sym__expression] = STATE(1056), [sym_conditional_expression] = STATE(1056), [sym_assignment_expression] = STATE(1056), @@ -35602,68 +34593,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1056), [sym_parenthesized_expression] = STATE(1056), [sym_concatenated_string] = STATE(1056), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3001), - [sym_char_literal] = ACTIONS(3001), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3003), - [sym_false] = ACTIONS(3003), - [sym_null] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2967), + [sym_char_literal] = ACTIONS(2967), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [sym_null] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2969), [sym_comment] = ACTIONS(39), }, - [931] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [917] = { + [sym__expression] = STATE(1057), + [sym_conditional_expression] = STATE(1057), + [sym_assignment_expression] = STATE(1057), + [sym_pointer_expression] = STATE(1057), + [sym_logical_expression] = STATE(1057), + [sym_bitwise_expression] = STATE(1057), + [sym_equality_expression] = STATE(1057), + [sym_relational_expression] = STATE(1057), + [sym_shift_expression] = STATE(1057), + [sym_math_expression] = STATE(1057), + [sym_cast_expression] = STATE(1057), + [sym_sizeof_expression] = STATE(1057), + [sym_subscript_expression] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_field_expression] = STATE(1057), + [sym_compound_literal_expression] = STATE(1057), + [sym_parenthesized_expression] = STATE(1057), + [sym_concatenated_string] = STATE(1057), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2971), + [sym_char_literal] = ACTIONS(2971), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_null] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2973), [sym_comment] = ACTIONS(39), }, - [932] = { + [918] = { [sym__expression] = STATE(1058), [sym_conditional_expression] = STATE(1058), [sym_assignment_expression] = STATE(1058), @@ -35682,98 +34669,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1058), [sym_parenthesized_expression] = STATE(1058), [sym_concatenated_string] = STATE(1058), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3007), - [sym_char_literal] = ACTIONS(3007), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_null] = ACTIONS(3009), - [sym_identifier] = ACTIONS(3009), - [sym_comment] = ACTIONS(39), - }, - [933] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_STAR_EQ] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3011), - [anon_sym_PERCENT_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3011), - [anon_sym_LT_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_GT_EQ] = ACTIONS(3011), - [anon_sym_AMP_EQ] = ACTIONS(3011), - [anon_sym_CARET_EQ] = ACTIONS(3011), - [anon_sym_PIPE_EQ] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_DASH_GT] = ACTIONS(3011), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2975), + [sym_char_literal] = ACTIONS(2975), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_null] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2977), [sym_comment] = ACTIONS(39), }, - [934] = { + [919] = { [sym__expression] = STATE(1059), [sym_conditional_expression] = STATE(1059), [sym_assignment_expression] = STATE(1059), @@ -35792,1264 +34707,2695 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1059), [sym_parenthesized_expression] = STATE(1059), [sym_concatenated_string] = STATE(1059), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3019), - [sym_char_literal] = ACTIONS(3019), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3021), - [sym_false] = ACTIONS(3021), - [sym_null] = ACTIONS(3021), - [sym_identifier] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2979), + [sym_char_literal] = ACTIONS(2979), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_null] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2981), + [sym_comment] = ACTIONS(39), + }, + [920] = { + [sym__expression] = STATE(1060), + [sym_conditional_expression] = STATE(1060), + [sym_assignment_expression] = STATE(1060), + [sym_pointer_expression] = STATE(1060), + [sym_logical_expression] = STATE(1060), + [sym_bitwise_expression] = STATE(1060), + [sym_equality_expression] = STATE(1060), + [sym_relational_expression] = STATE(1060), + [sym_shift_expression] = STATE(1060), + [sym_math_expression] = STATE(1060), + [sym_cast_expression] = STATE(1060), + [sym_sizeof_expression] = STATE(1060), + [sym_subscript_expression] = STATE(1060), + [sym_call_expression] = STATE(1060), + [sym_field_expression] = STATE(1060), + [sym_compound_literal_expression] = STATE(1060), + [sym_parenthesized_expression] = STATE(1060), + [sym_concatenated_string] = STATE(1060), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2983), + [sym_char_literal] = ACTIONS(2983), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_null] = ACTIONS(2985), + [sym_identifier] = ACTIONS(2985), + [sym_comment] = ACTIONS(39), + }, + [921] = { + [sym__expression] = STATE(1061), + [sym_conditional_expression] = STATE(1061), + [sym_assignment_expression] = STATE(1061), + [sym_pointer_expression] = STATE(1061), + [sym_logical_expression] = STATE(1061), + [sym_bitwise_expression] = STATE(1061), + [sym_equality_expression] = STATE(1061), + [sym_relational_expression] = STATE(1061), + [sym_shift_expression] = STATE(1061), + [sym_math_expression] = STATE(1061), + [sym_cast_expression] = STATE(1061), + [sym_sizeof_expression] = STATE(1061), + [sym_subscript_expression] = STATE(1061), + [sym_call_expression] = STATE(1061), + [sym_field_expression] = STATE(1061), + [sym_compound_literal_expression] = STATE(1061), + [sym_parenthesized_expression] = STATE(1061), + [sym_concatenated_string] = STATE(1061), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2987), + [sym_char_literal] = ACTIONS(2987), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_null] = ACTIONS(2989), + [sym_identifier] = ACTIONS(2989), + [sym_comment] = ACTIONS(39), + }, + [922] = { + [sym_compound_statement] = STATE(1062), + [sym_labeled_statement] = STATE(1062), + [sym_expression_statement] = STATE(1062), + [sym_if_statement] = STATE(1062), + [sym_switch_statement] = STATE(1062), + [sym_case_statement] = STATE(1062), + [sym_while_statement] = STATE(1062), + [sym_do_statement] = STATE(1062), + [sym_for_statement] = STATE(1062), + [sym_return_statement] = STATE(1062), + [sym_break_statement] = STATE(1062), + [sym_continue_statement] = STATE(1062), + [sym_goto_statement] = STATE(1062), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1715), + [sym_comment] = ACTIONS(39), + }, + [923] = { + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), + [sym_comment] = ACTIONS(39), + }, + [924] = { + [anon_sym_RPAREN] = ACTIONS(2991), + [sym_comment] = ACTIONS(39), + }, + [925] = { + [aux_sym_concatenated_string_repeat1] = STATE(925), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_COLON] = ACTIONS(2549), + [anon_sym_QMARK] = ACTIONS(2549), + [anon_sym_STAR_EQ] = ACTIONS(2549), + [anon_sym_SLASH_EQ] = ACTIONS(2549), + [anon_sym_PERCENT_EQ] = ACTIONS(2549), + [anon_sym_PLUS_EQ] = ACTIONS(2549), + [anon_sym_DASH_EQ] = ACTIONS(2549), + [anon_sym_LT_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_GT_EQ] = ACTIONS(2549), + [anon_sym_AMP_EQ] = ACTIONS(2549), + [anon_sym_CARET_EQ] = ACTIONS(2549), + [anon_sym_PIPE_EQ] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2549), + [anon_sym_BANG_EQ] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2549), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_DOT] = ACTIONS(2549), + [anon_sym_DASH_GT] = ACTIONS(2549), + [sym_string_literal] = ACTIONS(2993), + [sym_comment] = ACTIONS(39), + }, + [926] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(2576), + [anon_sym_QMARK] = ACTIONS(2576), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [927] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2996), + [anon_sym_LPAREN] = ACTIONS(2998), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2996), + [sym_preproc_directive] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_typedef] = ACTIONS(2996), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_auto] = ACTIONS(2996), + [anon_sym_register] = ACTIONS(2996), + [anon_sym_inline] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_restrict] = ACTIONS(2996), + [anon_sym_volatile] = ACTIONS(2996), + [anon_sym__Atomic] = ACTIONS(2996), + [anon_sym_unsigned] = ACTIONS(2996), + [anon_sym_long] = ACTIONS(2996), + [anon_sym_short] = ACTIONS(2996), + [sym_primitive_type] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_else] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2996), + [anon_sym_case] = ACTIONS(2996), + [anon_sym_default] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_do] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_goto] = ACTIONS(2996), + [anon_sym_AMP] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(2998), + [anon_sym_sizeof] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [sym_char_literal] = ACTIONS(2998), + [sym_string_literal] = ACTIONS(2998), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [sym_null] = ACTIONS(2996), + [sym_identifier] = ACTIONS(2996), + [sym_comment] = ACTIONS(39), + }, + [928] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(3000), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [929] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_COLON] = ACTIONS(2580), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [930] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(2584), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [931] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(2584), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [932] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_COLON] = ACTIONS(2580), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [933] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_COLON] = ACTIONS(2580), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [934] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2590), + [anon_sym_COLON] = ACTIONS(2588), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_STAR_EQ] = ACTIONS(2588), + [anon_sym_SLASH_EQ] = ACTIONS(2588), + [anon_sym_PERCENT_EQ] = ACTIONS(2588), + [anon_sym_PLUS_EQ] = ACTIONS(2588), + [anon_sym_DASH_EQ] = ACTIONS(2588), + [anon_sym_LT_LT_EQ] = ACTIONS(2588), + [anon_sym_GT_GT_EQ] = ACTIONS(2588), + [anon_sym_AMP_EQ] = ACTIONS(2588), + [anon_sym_CARET_EQ] = ACTIONS(2588), + [anon_sym_PIPE_EQ] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_CARET] = ACTIONS(2590), + [anon_sym_EQ_EQ] = ACTIONS(2588), + [anon_sym_BANG_EQ] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [935] = { - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_SEMI] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_RBRACK] = ACTIONS(3023), - [anon_sym_EQ] = ACTIONS(3025), - [anon_sym_COLON] = ACTIONS(3023), - [anon_sym_QMARK] = ACTIONS(3023), - [anon_sym_STAR_EQ] = ACTIONS(3023), - [anon_sym_SLASH_EQ] = ACTIONS(3023), - [anon_sym_PERCENT_EQ] = ACTIONS(3023), - [anon_sym_PLUS_EQ] = ACTIONS(3023), - [anon_sym_DASH_EQ] = ACTIONS(3023), - [anon_sym_LT_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_GT_EQ] = ACTIONS(3023), - [anon_sym_AMP_EQ] = ACTIONS(3023), - [anon_sym_CARET_EQ] = ACTIONS(3023), - [anon_sym_PIPE_EQ] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_DASH_DASH] = ACTIONS(3023), - [anon_sym_PLUS_PLUS] = ACTIONS(3023), - [anon_sym_DOT] = ACTIONS(3023), - [anon_sym_DASH_GT] = ACTIONS(3023), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2594), + [anon_sym_COLON] = ACTIONS(2592), + [anon_sym_QMARK] = ACTIONS(2592), + [anon_sym_STAR_EQ] = ACTIONS(2592), + [anon_sym_SLASH_EQ] = ACTIONS(2592), + [anon_sym_PERCENT_EQ] = ACTIONS(2592), + [anon_sym_PLUS_EQ] = ACTIONS(2592), + [anon_sym_DASH_EQ] = ACTIONS(2592), + [anon_sym_LT_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_GT_EQ] = ACTIONS(2592), + [anon_sym_AMP_EQ] = ACTIONS(2592), + [anon_sym_CARET_EQ] = ACTIONS(2592), + [anon_sym_PIPE_EQ] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_EQ] = ACTIONS(2592), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [936] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3027), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2598), + [anon_sym_COLON] = ACTIONS(2596), + [anon_sym_QMARK] = ACTIONS(2596), + [anon_sym_STAR_EQ] = ACTIONS(2596), + [anon_sym_SLASH_EQ] = ACTIONS(2596), + [anon_sym_PERCENT_EQ] = ACTIONS(2596), + [anon_sym_PLUS_EQ] = ACTIONS(2596), + [anon_sym_DASH_EQ] = ACTIONS(2596), + [anon_sym_LT_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_GT_EQ] = ACTIONS(2596), + [anon_sym_AMP_EQ] = ACTIONS(2596), + [anon_sym_CARET_EQ] = ACTIONS(2596), + [anon_sym_PIPE_EQ] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2598), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2598), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_GT] = ACTIONS(2598), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2598), + [anon_sym_GT_GT] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [937] = { - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_RPAREN] = ACTIONS(3029), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3029), - [anon_sym_RBRACK] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3031), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_LT_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_GT_EQ] = ACTIONS(3029), - [anon_sym_AMP_EQ] = ACTIONS(3029), - [anon_sym_CARET_EQ] = ACTIONS(3029), - [anon_sym_PIPE_EQ] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_GT] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3031), - [anon_sym_PLUS] = ACTIONS(3031), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3031), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_COLON] = ACTIONS(2570), + [anon_sym_QMARK] = ACTIONS(2570), + [anon_sym_STAR_EQ] = ACTIONS(2570), + [anon_sym_SLASH_EQ] = ACTIONS(2570), + [anon_sym_PERCENT_EQ] = ACTIONS(2570), + [anon_sym_PLUS_EQ] = ACTIONS(2570), + [anon_sym_DASH_EQ] = ACTIONS(2570), + [anon_sym_LT_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_GT_EQ] = ACTIONS(2570), + [anon_sym_AMP_EQ] = ACTIONS(2570), + [anon_sym_CARET_EQ] = ACTIONS(2570), + [anon_sym_PIPE_EQ] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [938] = { - [sym__expression] = STATE(1062), - [sym_conditional_expression] = STATE(1062), - [sym_assignment_expression] = STATE(1062), - [sym_pointer_expression] = STATE(1062), - [sym_logical_expression] = STATE(1062), - [sym_bitwise_expression] = STATE(1062), - [sym_equality_expression] = STATE(1062), - [sym_relational_expression] = STATE(1062), - [sym_shift_expression] = STATE(1062), - [sym_math_expression] = STATE(1062), - [sym_cast_expression] = STATE(1062), - [sym_sizeof_expression] = STATE(1062), - [sym_subscript_expression] = STATE(1062), - [sym_call_expression] = STATE(1062), - [sym_field_expression] = STATE(1062), - [sym_compound_literal_expression] = STATE(1062), - [sym_parenthesized_expression] = STATE(1062), - [sym_concatenated_string] = STATE(1062), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(3033), - [sym_char_literal] = ACTIONS(3033), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(3035), - [sym_false] = ACTIONS(3035), - [sym_null] = ACTIONS(3035), - [sym_identifier] = ACTIONS(3035), + [sym_compound_statement] = STATE(1065), + [sym_labeled_statement] = STATE(1065), + [sym_expression_statement] = STATE(1065), + [sym_if_statement] = STATE(1065), + [sym_switch_statement] = STATE(1065), + [sym_case_statement] = STATE(1065), + [sym_while_statement] = STATE(1065), + [sym_do_statement] = STATE(1065), + [sym_for_statement] = STATE(1065), + [sym_return_statement] = STATE(1065), + [sym_break_statement] = STATE(1065), + [sym_continue_statement] = STATE(1065), + [sym_goto_statement] = STATE(1065), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1715), [sym_comment] = ACTIONS(39), }, [939] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_RBRACK] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_STAR_EQ] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3011), - [anon_sym_PERCENT_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3011), - [anon_sym_LT_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_GT_EQ] = ACTIONS(3011), - [anon_sym_AMP_EQ] = ACTIONS(3011), - [anon_sym_CARET_EQ] = ACTIONS(3011), - [anon_sym_PIPE_EQ] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_DASH_GT] = ACTIONS(3011), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [940] = { - [sym__expression] = STATE(1063), - [sym_conditional_expression] = STATE(1063), - [sym_assignment_expression] = STATE(1063), - [sym_pointer_expression] = STATE(1063), - [sym_logical_expression] = STATE(1063), - [sym_bitwise_expression] = STATE(1063), - [sym_equality_expression] = STATE(1063), - [sym_relational_expression] = STATE(1063), - [sym_shift_expression] = STATE(1063), - [sym_math_expression] = STATE(1063), - [sym_cast_expression] = STATE(1063), - [sym_sizeof_expression] = STATE(1063), - [sym_subscript_expression] = STATE(1063), - [sym_call_expression] = STATE(1063), - [sym_field_expression] = STATE(1063), - [sym_compound_literal_expression] = STATE(1063), - [sym_parenthesized_expression] = STATE(1063), - [sym_concatenated_string] = STATE(1063), - [anon_sym_LPAREN] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_PLUS] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(596), - [anon_sym_DASH_DASH] = ACTIONS(598), - [anon_sym_PLUS_PLUS] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(600), - [sym_number_literal] = ACTIONS(3041), - [sym_char_literal] = ACTIONS(3041), - [sym_string_literal] = ACTIONS(604), - [sym_true] = ACTIONS(3043), - [sym_false] = ACTIONS(3043), - [sym_null] = ACTIONS(3043), - [sym_identifier] = ACTIONS(3043), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [941] = { - [anon_sym_LBRACK] = ACTIONS(3045), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), + [sym_declaration] = STATE(927), + [sym_type_definition] = STATE(927), + [sym__declaration_specifiers] = STATE(698), + [sym_compound_statement] = STATE(927), + [sym_storage_class_specifier] = STATE(93), + [sym_type_qualifier] = STATE(93), + [sym__type_specifier] = STATE(92), + [sym_sized_type_specifier] = STATE(92), + [sym_enum_specifier] = STATE(92), + [sym_struct_specifier] = STATE(92), + [sym_union_specifier] = STATE(92), + [sym_labeled_statement] = STATE(927), + [sym_expression_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_switch_statement] = STATE(927), + [sym_case_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_do_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_return_statement] = STATE(927), + [sym_break_statement] = STATE(927), + [sym_continue_statement] = STATE(927), + [sym_goto_statement] = STATE(927), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_macro_type_specifier] = STATE(92), + [aux_sym__declaration_specifiers_repeat1] = STATE(93), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_typedef] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(171), + [anon_sym_long] = ACTIONS(171), + [anon_sym_short] = ACTIONS(171), + [sym_primitive_type] = ACTIONS(173), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2517), [sym_comment] = ACTIONS(39), }, [942] = { - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_RPAREN] = ACTIONS(3047), - [anon_sym_SEMI] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_RBRACK] = ACTIONS(3047), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym_COLON] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3047), - [anon_sym_STAR_EQ] = ACTIONS(3047), - [anon_sym_SLASH_EQ] = ACTIONS(3047), - [anon_sym_PERCENT_EQ] = ACTIONS(3047), - [anon_sym_PLUS_EQ] = ACTIONS(3047), - [anon_sym_DASH_EQ] = ACTIONS(3047), - [anon_sym_LT_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_GT_EQ] = ACTIONS(3047), - [anon_sym_AMP_EQ] = ACTIONS(3047), - [anon_sym_CARET_EQ] = ACTIONS(3047), - [anon_sym_PIPE_EQ] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DOT] = ACTIONS(3047), - [anon_sym_DASH_GT] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(86), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(86), + [anon_sym_auto] = ACTIONS(86), + [anon_sym_register] = ACTIONS(86), + [anon_sym_inline] = ACTIONS(86), + [anon_sym_const] = ACTIONS(86), + [anon_sym_restrict] = ACTIONS(86), + [anon_sym_volatile] = ACTIONS(86), + [anon_sym__Atomic] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(1665), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), + [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, [943] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1315), - [anon_sym_QMARK] = ACTIONS(1317), - [anon_sym_STAR_EQ] = ACTIONS(1319), - [anon_sym_SLASH_EQ] = ACTIONS(1319), - [anon_sym_PERCENT_EQ] = ACTIONS(1319), - [anon_sym_PLUS_EQ] = ACTIONS(1319), - [anon_sym_DASH_EQ] = ACTIONS(1319), - [anon_sym_LT_LT_EQ] = ACTIONS(1319), - [anon_sym_GT_GT_EQ] = ACTIONS(1319), - [anon_sym_AMP_EQ] = ACTIONS(1319), - [anon_sym_CARET_EQ] = ACTIONS(1319), - [anon_sym_PIPE_EQ] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(1323), - [anon_sym_AMP_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [944] = { - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3051), + [sym__expression] = STATE(1070), + [sym_conditional_expression] = STATE(1070), + [sym_assignment_expression] = STATE(1070), + [sym_pointer_expression] = STATE(1070), + [sym_logical_expression] = STATE(1070), + [sym_bitwise_expression] = STATE(1070), + [sym_equality_expression] = STATE(1070), + [sym_relational_expression] = STATE(1070), + [sym_shift_expression] = STATE(1070), + [sym_math_expression] = STATE(1070), + [sym_cast_expression] = STATE(1070), + [sym_sizeof_expression] = STATE(1070), + [sym_subscript_expression] = STATE(1070), + [sym_call_expression] = STATE(1070), + [sym_field_expression] = STATE(1070), + [sym_compound_literal_expression] = STATE(1070), + [sym_parenthesized_expression] = STATE(1070), + [sym_concatenated_string] = STATE(1070), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3010), + [sym_char_literal] = ACTIONS(3010), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [sym_null] = ACTIONS(3012), + [sym_identifier] = ACTIONS(3012), [sym_comment] = ACTIONS(39), }, [945] = { - [sym__expression] = STATE(943), - [sym_conditional_expression] = STATE(943), - [sym_assignment_expression] = STATE(943), - [sym_pointer_expression] = STATE(943), - [sym_logical_expression] = STATE(943), - [sym_bitwise_expression] = STATE(943), - [sym_equality_expression] = STATE(943), - [sym_relational_expression] = STATE(943), - [sym_shift_expression] = STATE(943), - [sym_math_expression] = STATE(943), - [sym_cast_expression] = STATE(943), - [sym_sizeof_expression] = STATE(943), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(943), - [sym_parenthesized_expression] = STATE(943), - [sym_initializer_list] = STATE(944), - [sym_initializer_pair] = STATE(944), - [sym_subscript_designator] = STATE(483), - [sym_field_designator] = STATE(483), - [sym_concatenated_string] = STATE(943), - [aux_sym_initializer_pair_repeat1] = STATE(483), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(2602), - [sym_char_literal] = ACTIONS(2602), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2604), - [sym_false] = ACTIONS(2604), - [sym_null] = ACTIONS(2604), - [sym_identifier] = ACTIONS(2604), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [946] = { - [aux_sym_initializer_list_repeat1] = STATE(946), - [anon_sym_COMMA] = ACTIONS(3055), - [anon_sym_RBRACE] = ACTIONS(3051), + [sym__expression] = STATE(1072), + [sym_conditional_expression] = STATE(1072), + [sym_assignment_expression] = STATE(1072), + [sym_pointer_expression] = STATE(1072), + [sym_logical_expression] = STATE(1072), + [sym_bitwise_expression] = STATE(1072), + [sym_equality_expression] = STATE(1072), + [sym_relational_expression] = STATE(1072), + [sym_shift_expression] = STATE(1072), + [sym_math_expression] = STATE(1072), + [sym_cast_expression] = STATE(1072), + [sym_sizeof_expression] = STATE(1072), + [sym_subscript_expression] = STATE(1072), + [sym_call_expression] = STATE(1072), + [sym_field_expression] = STATE(1072), + [sym_compound_literal_expression] = STATE(1072), + [sym_parenthesized_expression] = STATE(1072), + [sym_concatenated_string] = STATE(1072), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3016), + [sym_char_literal] = ACTIONS(3016), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3018), + [sym_false] = ACTIONS(3018), + [sym_null] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3018), [sym_comment] = ACTIONS(39), }, [947] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_RBRACE] = ACTIONS(3058), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1315), - [anon_sym_QMARK] = ACTIONS(1317), - [anon_sym_STAR_EQ] = ACTIONS(1319), - [anon_sym_SLASH_EQ] = ACTIONS(1319), - [anon_sym_PERCENT_EQ] = ACTIONS(1319), - [anon_sym_PLUS_EQ] = ACTIONS(1319), - [anon_sym_DASH_EQ] = ACTIONS(1319), - [anon_sym_LT_LT_EQ] = ACTIONS(1319), - [anon_sym_GT_GT_EQ] = ACTIONS(1319), - [anon_sym_AMP_EQ] = ACTIONS(1319), - [anon_sym_CARET_EQ] = ACTIONS(1319), - [anon_sym_PIPE_EQ] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(1323), - [anon_sym_AMP_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym__expression] = STATE(1074), + [sym_conditional_expression] = STATE(1074), + [sym_assignment_expression] = STATE(1074), + [sym_pointer_expression] = STATE(1074), + [sym_logical_expression] = STATE(1074), + [sym_bitwise_expression] = STATE(1074), + [sym_equality_expression] = STATE(1074), + [sym_relational_expression] = STATE(1074), + [sym_shift_expression] = STATE(1074), + [sym_math_expression] = STATE(1074), + [sym_cast_expression] = STATE(1074), + [sym_sizeof_expression] = STATE(1074), + [sym_subscript_expression] = STATE(1074), + [sym_call_expression] = STATE(1074), + [sym_field_expression] = STATE(1074), + [sym_compound_literal_expression] = STATE(1074), + [sym_parenthesized_expression] = STATE(1074), + [sym_concatenated_string] = STATE(1074), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3022), + [sym_char_literal] = ACTIONS(3022), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [sym_null] = ACTIONS(3024), + [sym_identifier] = ACTIONS(3024), [sym_comment] = ACTIONS(39), }, [948] = { - [anon_sym_COMMA] = ACTIONS(3058), - [anon_sym_RBRACE] = ACTIONS(3058), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [949] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1183), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1185), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1185), - [sym_preproc_directive] = ACTIONS(1185), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_typedef] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1185), - [anon_sym_auto] = ACTIONS(1185), - [anon_sym_register] = ACTIONS(1185), - [anon_sym_inline] = ACTIONS(1185), - [anon_sym_const] = ACTIONS(1185), - [anon_sym_restrict] = ACTIONS(1185), - [anon_sym_volatile] = ACTIONS(1185), - [anon_sym__Atomic] = ACTIONS(1185), - [anon_sym_unsigned] = ACTIONS(1185), - [anon_sym_long] = ACTIONS(1185), - [anon_sym_short] = ACTIONS(1185), - [sym_primitive_type] = ACTIONS(1185), - [anon_sym_enum] = ACTIONS(1185), - [anon_sym_struct] = ACTIONS(1185), - [anon_sym_union] = ACTIONS(1185), - [anon_sym_if] = ACTIONS(1185), - [anon_sym_switch] = ACTIONS(1185), - [anon_sym_case] = ACTIONS(1185), - [anon_sym_default] = ACTIONS(1185), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1185), - [anon_sym_return] = ACTIONS(1185), - [anon_sym_break] = ACTIONS(1185), - [anon_sym_continue] = ACTIONS(1185), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_sizeof] = ACTIONS(1185), - [sym_number_literal] = ACTIONS(1183), - [sym_char_literal] = ACTIONS(1183), - [sym_string_literal] = ACTIONS(1183), - [sym_true] = ACTIONS(1185), - [sym_false] = ACTIONS(1185), - [sym_null] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1185), + [sym__expression] = STATE(1076), + [sym_conditional_expression] = STATE(1076), + [sym_assignment_expression] = STATE(1076), + [sym_pointer_expression] = STATE(1076), + [sym_logical_expression] = STATE(1076), + [sym_bitwise_expression] = STATE(1076), + [sym_equality_expression] = STATE(1076), + [sym_relational_expression] = STATE(1076), + [sym_shift_expression] = STATE(1076), + [sym_math_expression] = STATE(1076), + [sym_cast_expression] = STATE(1076), + [sym_sizeof_expression] = STATE(1076), + [sym_subscript_expression] = STATE(1076), + [sym_call_expression] = STATE(1076), + [sym_field_expression] = STATE(1076), + [sym_compound_literal_expression] = STATE(1076), + [sym_parenthesized_expression] = STATE(1076), + [sym_concatenated_string] = STATE(1076), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3028), + [sym_char_literal] = ACTIONS(3028), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3030), + [sym_false] = ACTIONS(3030), + [sym_null] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3030), [sym_comment] = ACTIONS(39), }, [950] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1193), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1195), - [sym_preproc_directive] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym_typedef] = ACTIONS(1195), - [anon_sym_extern] = ACTIONS(1195), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_auto] = ACTIONS(1195), - [anon_sym_register] = ACTIONS(1195), - [anon_sym_inline] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(1195), - [anon_sym_restrict] = ACTIONS(1195), - [anon_sym_volatile] = ACTIONS(1195), - [anon_sym__Atomic] = ACTIONS(1195), - [anon_sym_unsigned] = ACTIONS(1195), - [anon_sym_long] = ACTIONS(1195), - [anon_sym_short] = ACTIONS(1195), - [sym_primitive_type] = ACTIONS(1195), - [anon_sym_enum] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_union] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_switch] = ACTIONS(1195), - [anon_sym_case] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_goto] = ACTIONS(1195), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_TILDE] = ACTIONS(1193), - [anon_sym_PLUS] = ACTIONS(1195), - [anon_sym_DASH] = ACTIONS(1195), - [anon_sym_DASH_DASH] = ACTIONS(1193), - [anon_sym_PLUS_PLUS] = ACTIONS(1193), - [anon_sym_sizeof] = ACTIONS(1195), - [sym_number_literal] = ACTIONS(1193), - [sym_char_literal] = ACTIONS(1193), - [sym_string_literal] = ACTIONS(1193), - [sym_true] = ACTIONS(1195), - [sym_false] = ACTIONS(1195), - [sym_null] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1195), + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_STAR_EQ] = ACTIONS(3032), + [anon_sym_SLASH_EQ] = ACTIONS(3032), + [anon_sym_PERCENT_EQ] = ACTIONS(3032), + [anon_sym_PLUS_EQ] = ACTIONS(3032), + [anon_sym_DASH_EQ] = ACTIONS(3032), + [anon_sym_LT_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_GT_EQ] = ACTIONS(3032), + [anon_sym_AMP_EQ] = ACTIONS(3032), + [anon_sym_CARET_EQ] = ACTIONS(3032), + [anon_sym_PIPE_EQ] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3034), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(39), }, [951] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1275), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1275), - [sym_preproc_directive] = ACTIONS(1275), - [anon_sym_typedef] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_auto] = ACTIONS(1275), - [anon_sym_register] = ACTIONS(1275), - [anon_sym_inline] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_restrict] = ACTIONS(1275), - [anon_sym_volatile] = ACTIONS(1275), - [anon_sym__Atomic] = ACTIONS(1275), - [anon_sym_unsigned] = ACTIONS(1275), - [anon_sym_long] = ACTIONS(1275), - [anon_sym_short] = ACTIONS(1275), - [sym_primitive_type] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [sym_identifier] = ACTIONS(1275), + [sym__expression] = STATE(1077), + [sym_conditional_expression] = STATE(1077), + [sym_assignment_expression] = STATE(1077), + [sym_pointer_expression] = STATE(1077), + [sym_logical_expression] = STATE(1077), + [sym_bitwise_expression] = STATE(1077), + [sym_equality_expression] = STATE(1077), + [sym_relational_expression] = STATE(1077), + [sym_shift_expression] = STATE(1077), + [sym_math_expression] = STATE(1077), + [sym_cast_expression] = STATE(1077), + [sym_sizeof_expression] = STATE(1077), + [sym_subscript_expression] = STATE(1077), + [sym_call_expression] = STATE(1077), + [sym_field_expression] = STATE(1077), + [sym_compound_literal_expression] = STATE(1077), + [sym_parenthesized_expression] = STATE(1077), + [sym_concatenated_string] = STATE(1077), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3040), + [sym_char_literal] = ACTIONS(3040), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3042), + [sym_false] = ACTIONS(3042), + [sym_null] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3042), [sym_comment] = ACTIONS(39), }, [952] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1279), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1279), - [sym_preproc_directive] = ACTIONS(1279), - [anon_sym_typedef] = ACTIONS(1279), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_auto] = ACTIONS(1279), - [anon_sym_register] = ACTIONS(1279), - [anon_sym_inline] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_restrict] = ACTIONS(1279), - [anon_sym_volatile] = ACTIONS(1279), - [anon_sym__Atomic] = ACTIONS(1279), - [anon_sym_unsigned] = ACTIONS(1279), - [anon_sym_long] = ACTIONS(1279), - [anon_sym_short] = ACTIONS(1279), - [sym_primitive_type] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [anon_sym_struct] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [sym_identifier] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_RPAREN] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3044), + [anon_sym_RBRACE] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_RBRACK] = ACTIONS(3044), + [anon_sym_EQ] = ACTIONS(3046), + [anon_sym_COLON] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3044), + [anon_sym_STAR_EQ] = ACTIONS(3044), + [anon_sym_SLASH_EQ] = ACTIONS(3044), + [anon_sym_PERCENT_EQ] = ACTIONS(3044), + [anon_sym_PLUS_EQ] = ACTIONS(3044), + [anon_sym_DASH_EQ] = ACTIONS(3044), + [anon_sym_LT_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_GT_EQ] = ACTIONS(3044), + [anon_sym_AMP_EQ] = ACTIONS(3044), + [anon_sym_CARET_EQ] = ACTIONS(3044), + [anon_sym_PIPE_EQ] = ACTIONS(3044), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_PIPE_PIPE] = ACTIONS(3044), + [anon_sym_AMP_AMP] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_CARET] = ACTIONS(3046), + [anon_sym_EQ_EQ] = ACTIONS(3044), + [anon_sym_BANG_EQ] = ACTIONS(3044), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_GT] = ACTIONS(3046), + [anon_sym_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_EQ] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3046), + [anon_sym_GT_GT] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3046), + [anon_sym_PERCENT] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3044), + [anon_sym_DOT] = ACTIONS(3044), + [anon_sym_DASH_GT] = ACTIONS(3044), [sym_comment] = ACTIONS(39), }, [953] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1283), - [sym_preproc_directive] = ACTIONS(1283), - [anon_sym_typedef] = ACTIONS(1283), - [anon_sym_extern] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1283), - [anon_sym_auto] = ACTIONS(1283), - [anon_sym_register] = ACTIONS(1283), - [anon_sym_inline] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_restrict] = ACTIONS(1283), - [anon_sym_volatile] = ACTIONS(1283), - [anon_sym__Atomic] = ACTIONS(1283), - [anon_sym_unsigned] = ACTIONS(1283), - [anon_sym_long] = ACTIONS(1283), - [anon_sym_short] = ACTIONS(1283), - [sym_primitive_type] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [anon_sym_struct] = ACTIONS(1283), - [anon_sym_union] = ACTIONS(1283), - [sym_identifier] = ACTIONS(1283), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3048), [sym_comment] = ACTIONS(39), }, [954] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1295), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1297), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1297), - [sym_preproc_directive] = ACTIONS(1297), - [anon_sym_SEMI] = ACTIONS(1295), - [anon_sym_typedef] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1297), - [anon_sym_auto] = ACTIONS(1297), - [anon_sym_register] = ACTIONS(1297), - [anon_sym_inline] = ACTIONS(1297), - [anon_sym_const] = ACTIONS(1297), - [anon_sym_restrict] = ACTIONS(1297), - [anon_sym_volatile] = ACTIONS(1297), - [anon_sym__Atomic] = ACTIONS(1297), - [anon_sym_unsigned] = ACTIONS(1297), - [anon_sym_long] = ACTIONS(1297), - [anon_sym_short] = ACTIONS(1297), - [sym_primitive_type] = ACTIONS(1297), - [anon_sym_enum] = ACTIONS(1297), - [anon_sym_struct] = ACTIONS(1297), - [anon_sym_union] = ACTIONS(1297), - [anon_sym_if] = ACTIONS(1297), - [anon_sym_else] = ACTIONS(1297), - [anon_sym_switch] = ACTIONS(1297), - [anon_sym_case] = ACTIONS(1297), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_while] = ACTIONS(1297), - [anon_sym_do] = ACTIONS(1297), - [anon_sym_for] = ACTIONS(1297), - [anon_sym_return] = ACTIONS(1297), - [anon_sym_break] = ACTIONS(1297), - [anon_sym_continue] = ACTIONS(1297), - [anon_sym_goto] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1295), - [anon_sym_TILDE] = ACTIONS(1295), - [anon_sym_PLUS] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_DASH_DASH] = ACTIONS(1295), - [anon_sym_PLUS_PLUS] = ACTIONS(1295), - [anon_sym_sizeof] = ACTIONS(1297), - [sym_number_literal] = ACTIONS(1295), - [sym_char_literal] = ACTIONS(1295), - [sym_string_literal] = ACTIONS(1295), - [sym_true] = ACTIONS(1297), - [sym_false] = ACTIONS(1297), - [sym_null] = ACTIONS(1297), - [sym_identifier] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(3050), + [anon_sym_COMMA] = ACTIONS(3050), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3050), + [anon_sym_RBRACK] = ACTIONS(3050), + [anon_sym_EQ] = ACTIONS(3052), + [anon_sym_COLON] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3050), + [anon_sym_STAR_EQ] = ACTIONS(3050), + [anon_sym_SLASH_EQ] = ACTIONS(3050), + [anon_sym_PERCENT_EQ] = ACTIONS(3050), + [anon_sym_PLUS_EQ] = ACTIONS(3050), + [anon_sym_DASH_EQ] = ACTIONS(3050), + [anon_sym_LT_LT_EQ] = ACTIONS(3050), + [anon_sym_GT_GT_EQ] = ACTIONS(3050), + [anon_sym_AMP_EQ] = ACTIONS(3050), + [anon_sym_CARET_EQ] = ACTIONS(3050), + [anon_sym_PIPE_EQ] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3052), + [anon_sym_CARET] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3050), + [anon_sym_GT_EQ] = ACTIONS(3050), + [anon_sym_LT_LT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_DOT] = ACTIONS(3050), + [anon_sym_DASH_GT] = ACTIONS(3050), [sym_comment] = ACTIONS(39), }, [955] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1301), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1301), - [sym_preproc_directive] = ACTIONS(1301), - [anon_sym_typedef] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_auto] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_inline] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [anon_sym_restrict] = ACTIONS(1301), - [anon_sym_volatile] = ACTIONS(1301), - [anon_sym__Atomic] = ACTIONS(1301), - [anon_sym_unsigned] = ACTIONS(1301), - [anon_sym_long] = ACTIONS(1301), - [anon_sym_short] = ACTIONS(1301), - [sym_primitive_type] = ACTIONS(1301), - [anon_sym_enum] = ACTIONS(1301), - [anon_sym_struct] = ACTIONS(1301), - [anon_sym_union] = ACTIONS(1301), - [sym_identifier] = ACTIONS(1301), + [sym__expression] = STATE(1080), + [sym_conditional_expression] = STATE(1080), + [sym_assignment_expression] = STATE(1080), + [sym_pointer_expression] = STATE(1080), + [sym_logical_expression] = STATE(1080), + [sym_bitwise_expression] = STATE(1080), + [sym_equality_expression] = STATE(1080), + [sym_relational_expression] = STATE(1080), + [sym_shift_expression] = STATE(1080), + [sym_math_expression] = STATE(1080), + [sym_cast_expression] = STATE(1080), + [sym_sizeof_expression] = STATE(1080), + [sym_subscript_expression] = STATE(1080), + [sym_call_expression] = STATE(1080), + [sym_field_expression] = STATE(1080), + [sym_compound_literal_expression] = STATE(1080), + [sym_parenthesized_expression] = STATE(1080), + [sym_concatenated_string] = STATE(1080), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(3054), + [sym_char_literal] = ACTIONS(3054), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [sym_null] = ACTIONS(3056), + [sym_identifier] = ACTIONS(3056), [sym_comment] = ACTIONS(39), }, [956] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1777), - [anon_sym_LPAREN] = ACTIONS(1775), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1777), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1777), - [sym_preproc_directive] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_typedef] = ACTIONS(1777), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_static] = ACTIONS(1777), - [anon_sym_auto] = ACTIONS(1777), - [anon_sym_register] = ACTIONS(1777), - [anon_sym_inline] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [anon_sym_restrict] = ACTIONS(1777), - [anon_sym_volatile] = ACTIONS(1777), - [anon_sym__Atomic] = ACTIONS(1777), - [anon_sym_unsigned] = ACTIONS(1777), - [anon_sym_long] = ACTIONS(1777), - [anon_sym_short] = ACTIONS(1777), - [sym_primitive_type] = ACTIONS(1777), - [anon_sym_enum] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_else] = ACTIONS(1777), - [anon_sym_switch] = ACTIONS(1777), - [anon_sym_case] = ACTIONS(1777), - [anon_sym_default] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_do] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_goto] = ACTIONS(1777), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_BANG] = ACTIONS(1775), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_PLUS] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1777), - [anon_sym_DASH_DASH] = ACTIONS(1775), - [anon_sym_PLUS_PLUS] = ACTIONS(1775), - [anon_sym_sizeof] = ACTIONS(1777), - [sym_number_literal] = ACTIONS(1775), - [sym_char_literal] = ACTIONS(1775), - [sym_string_literal] = ACTIONS(1775), - [sym_true] = ACTIONS(1777), - [sym_false] = ACTIONS(1777), - [sym_null] = ACTIONS(1777), - [sym_identifier] = ACTIONS(1777), + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_RBRACK] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_STAR_EQ] = ACTIONS(3032), + [anon_sym_SLASH_EQ] = ACTIONS(3032), + [anon_sym_PERCENT_EQ] = ACTIONS(3032), + [anon_sym_PLUS_EQ] = ACTIONS(3032), + [anon_sym_DASH_EQ] = ACTIONS(3032), + [anon_sym_LT_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_GT_EQ] = ACTIONS(3032), + [anon_sym_AMP_EQ] = ACTIONS(3032), + [anon_sym_CARET_EQ] = ACTIONS(3032), + [anon_sym_PIPE_EQ] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3058), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3060), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(39), }, [957] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_RBRACE] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3060), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_STAR_EQ] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3011), - [anon_sym_PERCENT_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3011), - [anon_sym_LT_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_GT_EQ] = ACTIONS(3011), - [anon_sym_AMP_EQ] = ACTIONS(3011), - [anon_sym_CARET_EQ] = ACTIONS(3011), - [anon_sym_PIPE_EQ] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3060), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3062), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_DASH_GT] = ACTIONS(3011), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [sym__expression] = STATE(1081), + [sym_conditional_expression] = STATE(1081), + [sym_assignment_expression] = STATE(1081), + [sym_pointer_expression] = STATE(1081), + [sym_logical_expression] = STATE(1081), + [sym_bitwise_expression] = STATE(1081), + [sym_equality_expression] = STATE(1081), + [sym_relational_expression] = STATE(1081), + [sym_shift_expression] = STATE(1081), + [sym_math_expression] = STATE(1081), + [sym_cast_expression] = STATE(1081), + [sym_sizeof_expression] = STATE(1081), + [sym_subscript_expression] = STATE(1081), + [sym_call_expression] = STATE(1081), + [sym_field_expression] = STATE(1081), + [sym_compound_literal_expression] = STATE(1081), + [sym_parenthesized_expression] = STATE(1081), + [sym_concatenated_string] = STATE(1081), + [anon_sym_LPAREN] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(588), + [anon_sym_AMP] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(596), + [anon_sym_TILDE] = ACTIONS(598), + [anon_sym_PLUS] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH_DASH] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(602), + [anon_sym_sizeof] = ACTIONS(604), + [sym_number_literal] = ACTIONS(3062), + [sym_char_literal] = ACTIONS(3062), + [sym_string_literal] = ACTIONS(608), + [sym_true] = ACTIONS(3064), + [sym_false] = ACTIONS(3064), + [sym_null] = ACTIONS(3064), + [sym_identifier] = ACTIONS(3064), [sym_comment] = ACTIONS(39), }, [958] = { - [sym__expression] = STATE(1066), - [sym_conditional_expression] = STATE(1066), - [sym_assignment_expression] = STATE(1066), - [sym_pointer_expression] = STATE(1066), - [sym_logical_expression] = STATE(1066), - [sym_bitwise_expression] = STATE(1066), - [sym_equality_expression] = STATE(1066), - [sym_relational_expression] = STATE(1066), - [sym_shift_expression] = STATE(1066), - [sym_math_expression] = STATE(1066), - [sym_cast_expression] = STATE(1066), - [sym_sizeof_expression] = STATE(1066), - [sym_subscript_expression] = STATE(1066), - [sym_call_expression] = STATE(1066), - [sym_field_expression] = STATE(1066), - [sym_compound_literal_expression] = STATE(1066), - [sym_parenthesized_expression] = STATE(1066), - [sym_concatenated_string] = STATE(1066), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [sym_number_literal] = ACTIONS(3064), - [sym_char_literal] = ACTIONS(3064), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_null] = ACTIONS(3066), - [sym_identifier] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(3066), + [anon_sym_EQ] = ACTIONS(3066), + [anon_sym_DOT] = ACTIONS(3066), [sym_comment] = ACTIONS(39), }, [959] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3068), + [anon_sym_LPAREN] = ACTIONS(3068), + [anon_sym_COMMA] = ACTIONS(3068), + [anon_sym_RPAREN] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3068), + [anon_sym_RBRACE] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3068), + [anon_sym_RBRACK] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(3070), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_QMARK] = ACTIONS(3068), + [anon_sym_STAR_EQ] = ACTIONS(3068), + [anon_sym_SLASH_EQ] = ACTIONS(3068), + [anon_sym_PERCENT_EQ] = ACTIONS(3068), + [anon_sym_PLUS_EQ] = ACTIONS(3068), + [anon_sym_DASH_EQ] = ACTIONS(3068), + [anon_sym_LT_LT_EQ] = ACTIONS(3068), + [anon_sym_GT_GT_EQ] = ACTIONS(3068), + [anon_sym_AMP_EQ] = ACTIONS(3068), + [anon_sym_CARET_EQ] = ACTIONS(3068), + [anon_sym_PIPE_EQ] = ACTIONS(3068), + [anon_sym_AMP] = ACTIONS(3070), + [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_AMP_AMP] = ACTIONS(3068), + [anon_sym_PIPE] = ACTIONS(3070), + [anon_sym_CARET] = ACTIONS(3070), + [anon_sym_EQ_EQ] = ACTIONS(3068), + [anon_sym_BANG_EQ] = ACTIONS(3068), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_GT] = ACTIONS(3070), + [anon_sym_LT_EQ] = ACTIONS(3068), + [anon_sym_GT_EQ] = ACTIONS(3068), + [anon_sym_LT_LT] = ACTIONS(3070), + [anon_sym_GT_GT] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_PERCENT] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3068), + [anon_sym_PLUS_PLUS] = ACTIONS(3068), + [anon_sym_DOT] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(3068), [sym_comment] = ACTIONS(39), }, [960] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3070), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_RBRACE] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [961] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_STAR_EQ] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3011), - [anon_sym_PERCENT_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3011), - [anon_sym_LT_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_GT_EQ] = ACTIONS(3011), - [anon_sym_AMP_EQ] = ACTIONS(3011), - [anon_sym_CARET_EQ] = ACTIONS(3011), - [anon_sym_PIPE_EQ] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_DASH_GT] = ACTIONS(3011), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(3072), + [anon_sym_RBRACE] = ACTIONS(3072), [sym_comment] = ACTIONS(39), }, [962] = { - [sym__expression] = STATE(1067), - [sym_conditional_expression] = STATE(1067), - [sym_assignment_expression] = STATE(1067), - [sym_pointer_expression] = STATE(1067), - [sym_logical_expression] = STATE(1067), - [sym_bitwise_expression] = STATE(1067), - [sym_equality_expression] = STATE(1067), - [sym_relational_expression] = STATE(1067), - [sym_shift_expression] = STATE(1067), - [sym_math_expression] = STATE(1067), - [sym_cast_expression] = STATE(1067), - [sym_sizeof_expression] = STATE(1067), - [sym_subscript_expression] = STATE(1067), - [sym_call_expression] = STATE(1067), - [sym_field_expression] = STATE(1067), - [sym_compound_literal_expression] = STATE(1067), - [sym_parenthesized_expression] = STATE(1067), - [sym_concatenated_string] = STATE(1067), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3076), - [sym_char_literal] = ACTIONS(3076), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_identifier] = ACTIONS(3078), + [sym__expression] = STATE(960), + [sym_conditional_expression] = STATE(960), + [sym_assignment_expression] = STATE(960), + [sym_pointer_expression] = STATE(960), + [sym_logical_expression] = STATE(960), + [sym_bitwise_expression] = STATE(960), + [sym_equality_expression] = STATE(960), + [sym_relational_expression] = STATE(960), + [sym_shift_expression] = STATE(960), + [sym_math_expression] = STATE(960), + [sym_cast_expression] = STATE(960), + [sym_sizeof_expression] = STATE(960), + [sym_subscript_expression] = STATE(960), + [sym_call_expression] = STATE(960), + [sym_field_expression] = STATE(960), + [sym_compound_literal_expression] = STATE(960), + [sym_parenthesized_expression] = STATE(960), + [sym_initializer_list] = STATE(961), + [sym_initializer_pair] = STATE(961), + [sym_subscript_designator] = STATE(493), + [sym_field_designator] = STATE(493), + [sym_concatenated_string] = STATE(960), + [aux_sym_initializer_pair_repeat1] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1180), + [sym_number_literal] = ACTIONS(2623), + [sym_char_literal] = ACTIONS(2623), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2625), + [sym_false] = ACTIONS(2625), + [sym_null] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2625), [sym_comment] = ACTIONS(39), }, [963] = { - [anon_sym_LPAREN] = ACTIONS(3080), - [anon_sym_COMMA] = ACTIONS(3080), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_SEMI] = ACTIONS(3080), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_COLON] = ACTIONS(3080), + [aux_sym_initializer_list_repeat1] = STATE(963), + [anon_sym_COMMA] = ACTIONS(3076), + [anon_sym_RBRACE] = ACTIONS(3072), [sym_comment] = ACTIONS(39), }, [964] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3082), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3084), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3084), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3084), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3084), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3084), - [anon_sym_extern] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(3084), - [anon_sym_static] = ACTIONS(3082), - [anon_sym_auto] = ACTIONS(3082), - [anon_sym_register] = ACTIONS(3082), - [anon_sym_inline] = ACTIONS(3082), - [anon_sym_const] = ACTIONS(3082), - [anon_sym_restrict] = ACTIONS(3082), - [anon_sym_volatile] = ACTIONS(3082), - [anon_sym__Atomic] = ACTIONS(3082), - [anon_sym_unsigned] = ACTIONS(3082), - [anon_sym_long] = ACTIONS(3082), - [anon_sym_short] = ACTIONS(3082), - [sym_primitive_type] = ACTIONS(3082), - [anon_sym_enum] = ACTIONS(3082), - [anon_sym_struct] = ACTIONS(3082), - [anon_sym_union] = ACTIONS(3082), - [sym_identifier] = ACTIONS(3082), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [965] = { - [anon_sym_LPAREN] = ACTIONS(3086), - [anon_sym_COMMA] = ACTIONS(3086), - [anon_sym_RPAREN] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(3079), [sym_comment] = ACTIONS(39), }, [966] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_RPAREN] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_STAR_EQ] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3011), - [anon_sym_PERCENT_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3011), - [anon_sym_LT_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_GT_EQ] = ACTIONS(3011), - [anon_sym_AMP_EQ] = ACTIONS(3011), - [anon_sym_CARET_EQ] = ACTIONS(3011), - [anon_sym_PIPE_EQ] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3088), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_DASH_GT] = ACTIONS(3011), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1197), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1197), + [sym_preproc_directive] = ACTIONS(1197), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_typedef] = ACTIONS(1197), + [anon_sym_extern] = ACTIONS(1197), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_static] = ACTIONS(1197), + [anon_sym_auto] = ACTIONS(1197), + [anon_sym_register] = ACTIONS(1197), + [anon_sym_inline] = ACTIONS(1197), + [anon_sym_const] = ACTIONS(1197), + [anon_sym_restrict] = ACTIONS(1197), + [anon_sym_volatile] = ACTIONS(1197), + [anon_sym__Atomic] = ACTIONS(1197), + [anon_sym_unsigned] = ACTIONS(1197), + [anon_sym_long] = ACTIONS(1197), + [anon_sym_short] = ACTIONS(1197), + [sym_primitive_type] = ACTIONS(1197), + [anon_sym_enum] = ACTIONS(1197), + [anon_sym_struct] = ACTIONS(1197), + [anon_sym_union] = ACTIONS(1197), + [anon_sym_if] = ACTIONS(1197), + [anon_sym_switch] = ACTIONS(1197), + [anon_sym_case] = ACTIONS(1197), + [anon_sym_default] = ACTIONS(1197), + [anon_sym_while] = ACTIONS(1197), + [anon_sym_do] = ACTIONS(1197), + [anon_sym_for] = ACTIONS(1197), + [anon_sym_return] = ACTIONS(1197), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_goto] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_DASH_DASH] = ACTIONS(1195), + [anon_sym_PLUS_PLUS] = ACTIONS(1195), + [anon_sym_sizeof] = ACTIONS(1197), + [sym_number_literal] = ACTIONS(1195), + [sym_char_literal] = ACTIONS(1195), + [sym_string_literal] = ACTIONS(1195), + [sym_true] = ACTIONS(1197), + [sym_false] = ACTIONS(1197), + [sym_null] = ACTIONS(1197), + [sym_identifier] = ACTIONS(1197), [sym_comment] = ACTIONS(39), }, [967] = { - [sym__expression] = STATE(1068), - [sym_conditional_expression] = STATE(1068), - [sym_assignment_expression] = STATE(1068), - [sym_pointer_expression] = STATE(1068), - [sym_logical_expression] = STATE(1068), - [sym_bitwise_expression] = STATE(1068), - [sym_equality_expression] = STATE(1068), - [sym_relational_expression] = STATE(1068), - [sym_shift_expression] = STATE(1068), - [sym_math_expression] = STATE(1068), - [sym_cast_expression] = STATE(1068), - [sym_sizeof_expression] = STATE(1068), - [sym_subscript_expression] = STATE(1068), - [sym_call_expression] = STATE(1068), - [sym_field_expression] = STATE(1068), - [sym_compound_literal_expression] = STATE(1068), - [sym_parenthesized_expression] = STATE(1068), - [sym_concatenated_string] = STATE(1068), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3092), - [sym_char_literal] = ACTIONS(3092), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [sym_null] = ACTIONS(3094), - [sym_identifier] = ACTIONS(3094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1207), + [anon_sym_LPAREN] = ACTIONS(1205), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1207), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1207), + [sym_preproc_directive] = ACTIONS(1207), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_typedef] = ACTIONS(1207), + [anon_sym_extern] = ACTIONS(1207), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_static] = ACTIONS(1207), + [anon_sym_auto] = ACTIONS(1207), + [anon_sym_register] = ACTIONS(1207), + [anon_sym_inline] = ACTIONS(1207), + [anon_sym_const] = ACTIONS(1207), + [anon_sym_restrict] = ACTIONS(1207), + [anon_sym_volatile] = ACTIONS(1207), + [anon_sym__Atomic] = ACTIONS(1207), + [anon_sym_unsigned] = ACTIONS(1207), + [anon_sym_long] = ACTIONS(1207), + [anon_sym_short] = ACTIONS(1207), + [sym_primitive_type] = ACTIONS(1207), + [anon_sym_enum] = ACTIONS(1207), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_union] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1207), + [anon_sym_switch] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(1207), + [anon_sym_default] = ACTIONS(1207), + [anon_sym_while] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_for] = ACTIONS(1207), + [anon_sym_return] = ACTIONS(1207), + [anon_sym_break] = ACTIONS(1207), + [anon_sym_continue] = ACTIONS(1207), + [anon_sym_goto] = ACTIONS(1207), + [anon_sym_AMP] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1205), + [anon_sym_TILDE] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1207), + [anon_sym_DASH_DASH] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(1205), + [anon_sym_sizeof] = ACTIONS(1207), + [sym_number_literal] = ACTIONS(1205), + [sym_char_literal] = ACTIONS(1205), + [sym_string_literal] = ACTIONS(1205), + [sym_true] = ACTIONS(1207), + [sym_false] = ACTIONS(1207), + [sym_null] = ACTIONS(1207), + [sym_identifier] = ACTIONS(1207), [sym_comment] = ACTIONS(39), }, [968] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2286), - [sym_preproc_directive] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_typedef] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2286), - [anon_sym_auto] = ACTIONS(2286), - [anon_sym_register] = ACTIONS(2286), - [anon_sym_inline] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [anon_sym_restrict] = ACTIONS(2286), - [anon_sym_volatile] = ACTIONS(2286), - [anon_sym__Atomic] = ACTIONS(2286), - [anon_sym_unsigned] = ACTIONS(2286), - [anon_sym_long] = ACTIONS(2286), - [anon_sym_short] = ACTIONS(2286), - [sym_primitive_type] = ACTIONS(2286), - [anon_sym_enum] = ACTIONS(2286), - [anon_sym_struct] = ACTIONS(2286), - [anon_sym_union] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2286), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_do] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_goto] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2286), - [anon_sym_DASH] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_sizeof] = ACTIONS(2286), - [sym_number_literal] = ACTIONS(2288), - [sym_char_literal] = ACTIONS(2288), - [sym_string_literal] = ACTIONS(2288), - [sym_true] = ACTIONS(2286), - [sym_false] = ACTIONS(2286), - [sym_null] = ACTIONS(2286), - [sym_identifier] = ACTIONS(2286), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1287), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1287), + [sym_preproc_directive] = ACTIONS(1287), + [anon_sym_typedef] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_auto] = ACTIONS(1287), + [anon_sym_register] = ACTIONS(1287), + [anon_sym_inline] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_restrict] = ACTIONS(1287), + [anon_sym_volatile] = ACTIONS(1287), + [anon_sym__Atomic] = ACTIONS(1287), + [anon_sym_unsigned] = ACTIONS(1287), + [anon_sym_long] = ACTIONS(1287), + [anon_sym_short] = ACTIONS(1287), + [sym_primitive_type] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1287), [sym_comment] = ACTIONS(39), }, [969] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3096), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1291), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1291), + [sym_preproc_directive] = ACTIONS(1291), + [anon_sym_typedef] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_auto] = ACTIONS(1291), + [anon_sym_register] = ACTIONS(1291), + [anon_sym_inline] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_restrict] = ACTIONS(1291), + [anon_sym_volatile] = ACTIONS(1291), + [anon_sym__Atomic] = ACTIONS(1291), + [anon_sym_unsigned] = ACTIONS(1291), + [anon_sym_long] = ACTIONS(1291), + [anon_sym_short] = ACTIONS(1291), + [sym_primitive_type] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [sym_identifier] = ACTIONS(1291), [sym_comment] = ACTIONS(39), }, [970] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1295), + [sym_preproc_directive] = ACTIONS(1295), + [anon_sym_typedef] = ACTIONS(1295), + [anon_sym_extern] = ACTIONS(1295), + [anon_sym_static] = ACTIONS(1295), + [anon_sym_auto] = ACTIONS(1295), + [anon_sym_register] = ACTIONS(1295), + [anon_sym_inline] = ACTIONS(1295), + [anon_sym_const] = ACTIONS(1295), + [anon_sym_restrict] = ACTIONS(1295), + [anon_sym_volatile] = ACTIONS(1295), + [anon_sym__Atomic] = ACTIONS(1295), + [anon_sym_unsigned] = ACTIONS(1295), + [anon_sym_long] = ACTIONS(1295), + [anon_sym_short] = ACTIONS(1295), + [sym_primitive_type] = ACTIONS(1295), + [anon_sym_enum] = ACTIONS(1295), + [anon_sym_struct] = ACTIONS(1295), + [anon_sym_union] = ACTIONS(1295), + [sym_identifier] = ACTIONS(1295), [sym_comment] = ACTIONS(39), }, [971] = { - [sym_preproc_include] = STATE(877), - [sym_preproc_def] = STATE(877), - [sym_preproc_function_def] = STATE(877), - [sym_preproc_call] = STATE(877), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(1072), - [sym_preproc_elif_in_compound_statement] = STATE(1073), - [sym_declaration] = STATE(877), - [sym_type_definition] = STATE(877), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(877), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1311), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1311), + [sym_preproc_directive] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_typedef] = ACTIONS(1311), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_static] = ACTIONS(1311), + [anon_sym_auto] = ACTIONS(1311), + [anon_sym_register] = ACTIONS(1311), + [anon_sym_inline] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_restrict] = ACTIONS(1311), + [anon_sym_volatile] = ACTIONS(1311), + [anon_sym__Atomic] = ACTIONS(1311), + [anon_sym_unsigned] = ACTIONS(1311), + [anon_sym_long] = ACTIONS(1311), + [anon_sym_short] = ACTIONS(1311), + [sym_primitive_type] = ACTIONS(1311), + [anon_sym_enum] = ACTIONS(1311), + [anon_sym_struct] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_if] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1311), + [anon_sym_switch] = ACTIONS(1311), + [anon_sym_case] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_while] = ACTIONS(1311), + [anon_sym_do] = ACTIONS(1311), + [anon_sym_for] = ACTIONS(1311), + [anon_sym_return] = ACTIONS(1311), + [anon_sym_break] = ACTIONS(1311), + [anon_sym_continue] = ACTIONS(1311), + [anon_sym_goto] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_TILDE] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_DASH_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1309), + [anon_sym_sizeof] = ACTIONS(1311), + [sym_number_literal] = ACTIONS(1309), + [sym_char_literal] = ACTIONS(1309), + [sym_string_literal] = ACTIONS(1309), + [sym_true] = ACTIONS(1311), + [sym_false] = ACTIONS(1311), + [sym_null] = ACTIONS(1311), + [sym_identifier] = ACTIONS(1311), + [sym_comment] = ACTIONS(39), + }, + [972] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_auto] = ACTIONS(1315), + [anon_sym_register] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym_const] = ACTIONS(1315), + [anon_sym_restrict] = ACTIONS(1315), + [anon_sym_volatile] = ACTIONS(1315), + [anon_sym__Atomic] = ACTIONS(1315), + [anon_sym_unsigned] = ACTIONS(1315), + [anon_sym_long] = ACTIONS(1315), + [anon_sym_short] = ACTIONS(1315), + [sym_primitive_type] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_struct] = ACTIONS(1315), + [anon_sym_union] = ACTIONS(1315), + [sym_identifier] = ACTIONS(1315), + [sym_comment] = ACTIONS(39), + }, + [973] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1789), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1791), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1791), + [sym_preproc_directive] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_typedef] = ACTIONS(1791), + [anon_sym_extern] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1789), + [anon_sym_STAR] = ACTIONS(1789), + [anon_sym_static] = ACTIONS(1791), + [anon_sym_auto] = ACTIONS(1791), + [anon_sym_register] = ACTIONS(1791), + [anon_sym_inline] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_restrict] = ACTIONS(1791), + [anon_sym_volatile] = ACTIONS(1791), + [anon_sym__Atomic] = ACTIONS(1791), + [anon_sym_unsigned] = ACTIONS(1791), + [anon_sym_long] = ACTIONS(1791), + [anon_sym_short] = ACTIONS(1791), + [sym_primitive_type] = ACTIONS(1791), + [anon_sym_enum] = ACTIONS(1791), + [anon_sym_struct] = ACTIONS(1791), + [anon_sym_union] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_else] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1791), + [anon_sym_case] = ACTIONS(1791), + [anon_sym_default] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_goto] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1789), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_PLUS] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_DASH_DASH] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1789), + [anon_sym_sizeof] = ACTIONS(1791), + [sym_number_literal] = ACTIONS(1789), + [sym_char_literal] = ACTIONS(1789), + [sym_string_literal] = ACTIONS(1789), + [sym_true] = ACTIONS(1791), + [sym_false] = ACTIONS(1791), + [sym_null] = ACTIONS(1791), + [sym_identifier] = ACTIONS(1791), + [sym_comment] = ACTIONS(39), + }, + [974] = { + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_COMMA] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_RBRACE] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_STAR_EQ] = ACTIONS(3032), + [anon_sym_SLASH_EQ] = ACTIONS(3032), + [anon_sym_PERCENT_EQ] = ACTIONS(3032), + [anon_sym_PLUS_EQ] = ACTIONS(3032), + [anon_sym_DASH_EQ] = ACTIONS(3032), + [anon_sym_LT_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_GT_EQ] = ACTIONS(3032), + [anon_sym_AMP_EQ] = ACTIONS(3032), + [anon_sym_CARET_EQ] = ACTIONS(3032), + [anon_sym_PIPE_EQ] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), + [sym_comment] = ACTIONS(39), + }, + [975] = { + [sym__expression] = STATE(1084), + [sym_conditional_expression] = STATE(1084), + [sym_assignment_expression] = STATE(1084), + [sym_pointer_expression] = STATE(1084), + [sym_logical_expression] = STATE(1084), + [sym_bitwise_expression] = STATE(1084), + [sym_equality_expression] = STATE(1084), + [sym_relational_expression] = STATE(1084), + [sym_shift_expression] = STATE(1084), + [sym_math_expression] = STATE(1084), + [sym_cast_expression] = STATE(1084), + [sym_sizeof_expression] = STATE(1084), + [sym_subscript_expression] = STATE(1084), + [sym_call_expression] = STATE(1084), + [sym_field_expression] = STATE(1084), + [sym_compound_literal_expression] = STATE(1084), + [sym_parenthesized_expression] = STATE(1084), + [sym_concatenated_string] = STATE(1084), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [sym_number_literal] = ACTIONS(3085), + [sym_char_literal] = ACTIONS(3085), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [sym_null] = ACTIONS(3087), + [sym_identifier] = ACTIONS(3087), + [sym_comment] = ACTIONS(39), + }, + [976] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3089), + [sym_comment] = ACTIONS(39), + }, + [977] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3091), + [sym_comment] = ACTIONS(39), + }, + [978] = { + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_STAR_EQ] = ACTIONS(3032), + [anon_sym_SLASH_EQ] = ACTIONS(3032), + [anon_sym_PERCENT_EQ] = ACTIONS(3032), + [anon_sym_PLUS_EQ] = ACTIONS(3032), + [anon_sym_DASH_EQ] = ACTIONS(3032), + [anon_sym_LT_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_GT_EQ] = ACTIONS(3032), + [anon_sym_AMP_EQ] = ACTIONS(3032), + [anon_sym_CARET_EQ] = ACTIONS(3032), + [anon_sym_PIPE_EQ] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), + [sym_comment] = ACTIONS(39), + }, + [979] = { + [sym__expression] = STATE(1085), + [sym_conditional_expression] = STATE(1085), + [sym_assignment_expression] = STATE(1085), + [sym_pointer_expression] = STATE(1085), + [sym_logical_expression] = STATE(1085), + [sym_bitwise_expression] = STATE(1085), + [sym_equality_expression] = STATE(1085), + [sym_relational_expression] = STATE(1085), + [sym_shift_expression] = STATE(1085), + [sym_math_expression] = STATE(1085), + [sym_cast_expression] = STATE(1085), + [sym_sizeof_expression] = STATE(1085), + [sym_subscript_expression] = STATE(1085), + [sym_call_expression] = STATE(1085), + [sym_field_expression] = STATE(1085), + [sym_compound_literal_expression] = STATE(1085), + [sym_parenthesized_expression] = STATE(1085), + [sym_concatenated_string] = STATE(1085), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3097), + [sym_char_literal] = ACTIONS(3097), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_null] = ACTIONS(3099), + [sym_identifier] = ACTIONS(3099), + [sym_comment] = ACTIONS(39), + }, + [980] = { + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3101), + [anon_sym_RPAREN] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_COLON] = ACTIONS(3101), + [sym_comment] = ACTIONS(39), + }, + [981] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3103), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3105), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3105), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3105), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3105), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_auto] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [sym_identifier] = ACTIONS(3103), + [sym_comment] = ACTIONS(39), + }, + [982] = { + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_COMMA] = ACTIONS(3107), + [anon_sym_RPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [sym_comment] = ACTIONS(39), + }, + [983] = { + [sym_type_qualifier] = STATE(983), + [aux_sym_type_definition_repeat1] = STATE(983), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_STAR] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_const] = ACTIONS(418), + [anon_sym_restrict] = ACTIONS(418), + [anon_sym_volatile] = ACTIONS(418), + [anon_sym__Atomic] = ACTIONS(418), + [sym_identifier] = ACTIONS(421), + [sym_comment] = ACTIONS(39), + }, + [984] = { + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(3032), + [anon_sym_RPAREN] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_STAR_EQ] = ACTIONS(3032), + [anon_sym_SLASH_EQ] = ACTIONS(3032), + [anon_sym_PERCENT_EQ] = ACTIONS(3032), + [anon_sym_PLUS_EQ] = ACTIONS(3032), + [anon_sym_DASH_EQ] = ACTIONS(3032), + [anon_sym_LT_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_GT_EQ] = ACTIONS(3032), + [anon_sym_AMP_EQ] = ACTIONS(3032), + [anon_sym_CARET_EQ] = ACTIONS(3032), + [anon_sym_PIPE_EQ] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), + [sym_comment] = ACTIONS(39), + }, + [985] = { + [sym__expression] = STATE(1086), + [sym_conditional_expression] = STATE(1086), + [sym_assignment_expression] = STATE(1086), + [sym_pointer_expression] = STATE(1086), + [sym_logical_expression] = STATE(1086), + [sym_bitwise_expression] = STATE(1086), + [sym_equality_expression] = STATE(1086), + [sym_relational_expression] = STATE(1086), + [sym_shift_expression] = STATE(1086), + [sym_math_expression] = STATE(1086), + [sym_cast_expression] = STATE(1086), + [sym_sizeof_expression] = STATE(1086), + [sym_subscript_expression] = STATE(1086), + [sym_call_expression] = STATE(1086), + [sym_field_expression] = STATE(1086), + [sym_compound_literal_expression] = STATE(1086), + [sym_parenthesized_expression] = STATE(1086), + [sym_concatenated_string] = STATE(1086), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3113), + [sym_char_literal] = ACTIONS(3113), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3115), + [sym_false] = ACTIONS(3115), + [sym_null] = ACTIONS(3115), + [sym_identifier] = ACTIONS(3115), + [sym_comment] = ACTIONS(39), + }, + [986] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_auto] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2307), + [sym_number_literal] = ACTIONS(2309), + [sym_char_literal] = ACTIONS(2309), + [sym_string_literal] = ACTIONS(2309), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2307), + [sym_comment] = ACTIONS(39), + }, + [987] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3117), + [sym_comment] = ACTIONS(39), + }, + [988] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3119), + [sym_comment] = ACTIONS(39), + }, + [989] = { + [sym_preproc_include] = STATE(894), + [sym_preproc_def] = STATE(894), + [sym_preproc_function_def] = STATE(894), + [sym_preproc_call] = STATE(894), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(1090), + [sym_preproc_elif_in_compound_statement] = STATE(1091), + [sym_declaration] = STATE(894), + [sym_type_definition] = STATE(894), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(894), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -37057,57 +37403,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(877), + [sym_labeled_statement] = STATE(894), + [sym_expression_statement] = STATE(894), + [sym_if_statement] = STATE(894), + [sym_switch_statement] = STATE(894), + [sym_case_statement] = STATE(894), + [sym_while_statement] = STATE(894), + [sym_do_statement] = STATE(894), + [sym_for_statement] = STATE(894), + [sym_return_statement] = STATE(894), + [sym_break_statement] = STATE(894), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(894), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(894), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(877), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(894), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3100), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -37123,114 +37469,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [972] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2372), - [anon_sym_LPAREN] = ACTIONS(2374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2372), - [sym_preproc_directive] = ACTIONS(2372), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_typedef] = ACTIONS(2372), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2372), - [anon_sym_auto] = ACTIONS(2372), - [anon_sym_register] = ACTIONS(2372), - [anon_sym_inline] = ACTIONS(2372), - [anon_sym_const] = ACTIONS(2372), - [anon_sym_restrict] = ACTIONS(2372), - [anon_sym_volatile] = ACTIONS(2372), - [anon_sym__Atomic] = ACTIONS(2372), - [anon_sym_unsigned] = ACTIONS(2372), - [anon_sym_long] = ACTIONS(2372), - [anon_sym_short] = ACTIONS(2372), - [sym_primitive_type] = ACTIONS(2372), - [anon_sym_enum] = ACTIONS(2372), - [anon_sym_struct] = ACTIONS(2372), - [anon_sym_union] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_switch] = ACTIONS(2372), - [anon_sym_case] = ACTIONS(2372), - [anon_sym_default] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_do] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2372), - [anon_sym_AMP] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_sizeof] = ACTIONS(2372), - [sym_number_literal] = ACTIONS(2374), - [sym_char_literal] = ACTIONS(2374), - [sym_string_literal] = ACTIONS(2374), - [sym_true] = ACTIONS(2372), - [sym_false] = ACTIONS(2372), - [sym_null] = ACTIONS(2372), - [sym_identifier] = ACTIONS(2372), + [990] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2393), + [sym_preproc_directive] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_typedef] = ACTIONS(2393), + [anon_sym_extern] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_auto] = ACTIONS(2393), + [anon_sym_register] = ACTIONS(2393), + [anon_sym_inline] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_restrict] = ACTIONS(2393), + [anon_sym_volatile] = ACTIONS(2393), + [anon_sym__Atomic] = ACTIONS(2393), + [anon_sym_unsigned] = ACTIONS(2393), + [anon_sym_long] = ACTIONS(2393), + [anon_sym_short] = ACTIONS(2393), + [sym_primitive_type] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_switch] = ACTIONS(2393), + [anon_sym_case] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_goto] = ACTIONS(2393), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_sizeof] = ACTIONS(2393), + [sym_number_literal] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [sym_string_literal] = ACTIONS(2395), + [sym_true] = ACTIONS(2393), + [sym_false] = ACTIONS(2393), + [sym_null] = ACTIONS(2393), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(39), }, - [973] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3102), + [991] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3123), [sym_comment] = ACTIONS(39), }, - [974] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3104), + [992] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3125), [sym_comment] = ACTIONS(39), }, - [975] = { - [sym_preproc_include] = STATE(877), - [sym_preproc_def] = STATE(877), - [sym_preproc_function_def] = STATE(877), - [sym_preproc_call] = STATE(877), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(1077), - [sym_preproc_elif_in_compound_statement] = STATE(1078), - [sym_declaration] = STATE(877), - [sym_type_definition] = STATE(877), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(877), + [993] = { + [sym_preproc_include] = STATE(894), + [sym_preproc_def] = STATE(894), + [sym_preproc_function_def] = STATE(894), + [sym_preproc_call] = STATE(894), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(1095), + [sym_preproc_elif_in_compound_statement] = STATE(1096), + [sym_declaration] = STATE(894), + [sym_type_definition] = STATE(894), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(894), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -37238,57 +37584,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(877), + [sym_labeled_statement] = STATE(894), + [sym_expression_statement] = STATE(894), + [sym_if_statement] = STATE(894), + [sym_switch_statement] = STATE(894), + [sym_case_statement] = STATE(894), + [sym_while_statement] = STATE(894), + [sym_do_statement] = STATE(894), + [sym_for_statement] = STATE(894), + [sym_return_statement] = STATE(894), + [sym_break_statement] = STATE(894), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(894), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(894), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(877), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(894), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -37304,114 +37650,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [976] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2384), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2382), - [sym_preproc_directive] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_typedef] = ACTIONS(2382), - [anon_sym_extern] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_auto] = ACTIONS(2382), - [anon_sym_register] = ACTIONS(2382), - [anon_sym_inline] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_restrict] = ACTIONS(2382), - [anon_sym_volatile] = ACTIONS(2382), - [anon_sym__Atomic] = ACTIONS(2382), - [anon_sym_unsigned] = ACTIONS(2382), - [anon_sym_long] = ACTIONS(2382), - [anon_sym_short] = ACTIONS(2382), - [sym_primitive_type] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(2382), - [anon_sym_union] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_case] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_goto] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_TILDE] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2384), - [anon_sym_PLUS_PLUS] = ACTIONS(2384), - [anon_sym_sizeof] = ACTIONS(2382), - [sym_number_literal] = ACTIONS(2384), - [sym_char_literal] = ACTIONS(2384), - [sym_string_literal] = ACTIONS(2384), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_identifier] = ACTIONS(2382), + [994] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2403), + [sym_preproc_directive] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_typedef] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_auto] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_restrict] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym__Atomic] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [sym_primitive_type] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_case] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_goto] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_sizeof] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2405), + [sym_char_literal] = ACTIONS(2405), + [sym_string_literal] = ACTIONS(2405), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), + [sym_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(39), }, - [977] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3108), + [995] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3129), [sym_comment] = ACTIONS(39), }, - [978] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3110), + [996] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3131), [sym_comment] = ACTIONS(39), }, - [979] = { - [sym_preproc_include] = STATE(877), - [sym_preproc_def] = STATE(877), - [sym_preproc_function_def] = STATE(877), - [sym_preproc_call] = STATE(877), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(1082), - [sym_preproc_elif_in_compound_statement] = STATE(1083), - [sym_declaration] = STATE(877), - [sym_type_definition] = STATE(877), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(877), + [997] = { + [sym_preproc_include] = STATE(894), + [sym_preproc_def] = STATE(894), + [sym_preproc_function_def] = STATE(894), + [sym_preproc_call] = STATE(894), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(1100), + [sym_preproc_elif_in_compound_statement] = STATE(1101), + [sym_declaration] = STATE(894), + [sym_type_definition] = STATE(894), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(894), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -37419,57 +37765,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(877), + [sym_labeled_statement] = STATE(894), + [sym_expression_statement] = STATE(894), + [sym_if_statement] = STATE(894), + [sym_switch_statement] = STATE(894), + [sym_case_statement] = STATE(894), + [sym_while_statement] = STATE(894), + [sym_do_statement] = STATE(894), + [sym_for_statement] = STATE(894), + [sym_return_statement] = STATE(894), + [sym_break_statement] = STATE(894), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(894), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(894), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(877), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(894), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3112), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3133), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -37485,47 +37831,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [980] = { - [sym_preproc_include] = STATE(1087), - [sym_preproc_def] = STATE(1087), - [sym_preproc_function_def] = STATE(1087), - [sym_preproc_call] = STATE(1087), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(1085), - [sym_preproc_elif_in_compound_statement] = STATE(1086), - [sym_declaration] = STATE(1087), - [sym_type_definition] = STATE(1087), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(1087), + [998] = { + [sym_preproc_include] = STATE(1105), + [sym_preproc_def] = STATE(1105), + [sym_preproc_function_def] = STATE(1105), + [sym_preproc_call] = STATE(1105), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(1103), + [sym_preproc_elif_in_compound_statement] = STATE(1104), + [sym_declaration] = STATE(1105), + [sym_type_definition] = STATE(1105), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(1105), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -37533,57 +37879,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1087), - [sym_expression_statement] = STATE(1087), - [sym_if_statement] = STATE(1087), - [sym_switch_statement] = STATE(1087), - [sym_case_statement] = STATE(1087), - [sym_while_statement] = STATE(1087), - [sym_do_statement] = STATE(1087), - [sym_for_statement] = STATE(1087), - [sym_return_statement] = STATE(1087), - [sym_break_statement] = STATE(1087), - [sym_continue_statement] = STATE(1087), - [sym_goto_statement] = STATE(1087), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(1087), + [sym_labeled_statement] = STATE(1105), + [sym_expression_statement] = STATE(1105), + [sym_if_statement] = STATE(1105), + [sym_switch_statement] = STATE(1105), + [sym_case_statement] = STATE(1105), + [sym_while_statement] = STATE(1105), + [sym_do_statement] = STATE(1105), + [sym_for_statement] = STATE(1105), + [sym_return_statement] = STATE(1105), + [sym_break_statement] = STATE(1105), + [sym_continue_statement] = STATE(1105), + [sym_goto_statement] = STATE(1105), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(1105), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1087), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1105), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3135), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -37599,47 +37945,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [981] = { - [sym_preproc_include] = STATE(1091), - [sym_preproc_def] = STATE(1091), - [sym_preproc_function_def] = STATE(1091), - [sym_preproc_call] = STATE(1091), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(1089), - [sym_preproc_elif_in_compound_statement] = STATE(1090), - [sym_declaration] = STATE(1091), - [sym_type_definition] = STATE(1091), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(1091), + [999] = { + [sym_preproc_include] = STATE(1109), + [sym_preproc_def] = STATE(1109), + [sym_preproc_function_def] = STATE(1109), + [sym_preproc_call] = STATE(1109), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(1107), + [sym_preproc_elif_in_compound_statement] = STATE(1108), + [sym_declaration] = STATE(1109), + [sym_type_definition] = STATE(1109), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(1109), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -37647,57 +37993,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1091), - [sym_expression_statement] = STATE(1091), - [sym_if_statement] = STATE(1091), - [sym_switch_statement] = STATE(1091), - [sym_case_statement] = STATE(1091), - [sym_while_statement] = STATE(1091), - [sym_do_statement] = STATE(1091), - [sym_for_statement] = STATE(1091), - [sym_return_statement] = STATE(1091), - [sym_break_statement] = STATE(1091), - [sym_continue_statement] = STATE(1091), - [sym_goto_statement] = STATE(1091), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(1091), + [sym_labeled_statement] = STATE(1109), + [sym_expression_statement] = STATE(1109), + [sym_if_statement] = STATE(1109), + [sym_switch_statement] = STATE(1109), + [sym_case_statement] = STATE(1109), + [sym_while_statement] = STATE(1109), + [sym_do_statement] = STATE(1109), + [sym_for_statement] = STATE(1109), + [sym_return_statement] = STATE(1109), + [sym_break_statement] = STATE(1109), + [sym_continue_statement] = STATE(1109), + [sym_goto_statement] = STATE(1109), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(1109), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1091), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1109), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3137), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -37713,47 +38059,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [982] = { - [sym_preproc_include] = STATE(1095), - [sym_preproc_def] = STATE(1095), - [sym_preproc_function_def] = STATE(1095), - [sym_preproc_call] = STATE(1095), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(1093), - [sym_preproc_elif_in_compound_statement] = STATE(1094), - [sym_declaration] = STATE(1095), - [sym_type_definition] = STATE(1095), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(1095), + [1000] = { + [sym_preproc_include] = STATE(1113), + [sym_preproc_def] = STATE(1113), + [sym_preproc_function_def] = STATE(1113), + [sym_preproc_call] = STATE(1113), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(1111), + [sym_preproc_elif_in_compound_statement] = STATE(1112), + [sym_declaration] = STATE(1113), + [sym_type_definition] = STATE(1113), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(1113), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -37761,57 +38107,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(1095), - [sym_expression_statement] = STATE(1095), - [sym_if_statement] = STATE(1095), - [sym_switch_statement] = STATE(1095), - [sym_case_statement] = STATE(1095), - [sym_while_statement] = STATE(1095), - [sym_do_statement] = STATE(1095), - [sym_for_statement] = STATE(1095), - [sym_return_statement] = STATE(1095), - [sym_break_statement] = STATE(1095), - [sym_continue_statement] = STATE(1095), - [sym_goto_statement] = STATE(1095), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(1095), + [sym_labeled_statement] = STATE(1113), + [sym_expression_statement] = STATE(1113), + [sym_if_statement] = STATE(1113), + [sym_switch_statement] = STATE(1113), + [sym_case_statement] = STATE(1113), + [sym_while_statement] = STATE(1113), + [sym_do_statement] = STATE(1113), + [sym_for_statement] = STATE(1113), + [sym_return_statement] = STATE(1113), + [sym_break_statement] = STATE(1113), + [sym_continue_statement] = STATE(1113), + [sym_goto_statement] = STATE(1113), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(1113), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1095), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1113), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3118), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3139), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -37827,156 +38173,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [983] = { - [sym__expression] = STATE(1096), - [sym_conditional_expression] = STATE(1096), - [sym_assignment_expression] = STATE(1096), - [sym_pointer_expression] = STATE(1096), - [sym_logical_expression] = STATE(1096), - [sym_bitwise_expression] = STATE(1096), - [sym_equality_expression] = STATE(1096), - [sym_relational_expression] = STATE(1096), - [sym_shift_expression] = STATE(1096), - [sym_math_expression] = STATE(1096), - [sym_cast_expression] = STATE(1096), - [sym_sizeof_expression] = STATE(1096), - [sym_subscript_expression] = STATE(1096), - [sym_call_expression] = STATE(1096), - [sym_field_expression] = STATE(1096), - [sym_compound_literal_expression] = STATE(1096), - [sym_parenthesized_expression] = STATE(1096), - [sym_concatenated_string] = STATE(1096), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3120), - [sym_char_literal] = ACTIONS(3120), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3122), - [sym_false] = ACTIONS(3122), - [sym_null] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3122), + [1001] = { + [sym__expression] = STATE(1114), + [sym_conditional_expression] = STATE(1114), + [sym_assignment_expression] = STATE(1114), + [sym_pointer_expression] = STATE(1114), + [sym_logical_expression] = STATE(1114), + [sym_bitwise_expression] = STATE(1114), + [sym_equality_expression] = STATE(1114), + [sym_relational_expression] = STATE(1114), + [sym_shift_expression] = STATE(1114), + [sym_math_expression] = STATE(1114), + [sym_cast_expression] = STATE(1114), + [sym_sizeof_expression] = STATE(1114), + [sym_subscript_expression] = STATE(1114), + [sym_call_expression] = STATE(1114), + [sym_field_expression] = STATE(1114), + [sym_compound_literal_expression] = STATE(1114), + [sym_parenthesized_expression] = STATE(1114), + [sym_concatenated_string] = STATE(1114), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3141), + [sym_char_literal] = ACTIONS(3141), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3143), + [sym_false] = ACTIONS(3143), + [sym_null] = ACTIONS(3143), + [sym_identifier] = ACTIONS(3143), [sym_comment] = ACTIONS(39), }, - [984] = { - [sym__expression] = STATE(1097), - [sym_conditional_expression] = STATE(1097), - [sym_assignment_expression] = STATE(1097), - [sym_pointer_expression] = STATE(1097), - [sym_logical_expression] = STATE(1097), - [sym_bitwise_expression] = STATE(1097), - [sym_equality_expression] = STATE(1097), - [sym_relational_expression] = STATE(1097), - [sym_shift_expression] = STATE(1097), - [sym_math_expression] = STATE(1097), - [sym_cast_expression] = STATE(1097), - [sym_sizeof_expression] = STATE(1097), - [sym_subscript_expression] = STATE(1097), - [sym_call_expression] = STATE(1097), - [sym_field_expression] = STATE(1097), - [sym_compound_literal_expression] = STATE(1097), - [sym_parenthesized_expression] = STATE(1097), - [sym_concatenated_string] = STATE(1097), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3124), - [sym_char_literal] = ACTIONS(3124), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3126), - [sym_false] = ACTIONS(3126), - [sym_null] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3126), + [1002] = { + [sym__expression] = STATE(1115), + [sym_conditional_expression] = STATE(1115), + [sym_assignment_expression] = STATE(1115), + [sym_pointer_expression] = STATE(1115), + [sym_logical_expression] = STATE(1115), + [sym_bitwise_expression] = STATE(1115), + [sym_equality_expression] = STATE(1115), + [sym_relational_expression] = STATE(1115), + [sym_shift_expression] = STATE(1115), + [sym_math_expression] = STATE(1115), + [sym_cast_expression] = STATE(1115), + [sym_sizeof_expression] = STATE(1115), + [sym_subscript_expression] = STATE(1115), + [sym_call_expression] = STATE(1115), + [sym_field_expression] = STATE(1115), + [sym_compound_literal_expression] = STATE(1115), + [sym_parenthesized_expression] = STATE(1115), + [sym_concatenated_string] = STATE(1115), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3145), + [sym_char_literal] = ACTIONS(3145), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3147), + [sym_false] = ACTIONS(3147), + [sym_null] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3147), [sym_comment] = ACTIONS(39), }, - [985] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(3128), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1003] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(3149), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [986] = { - [sym_declaration] = STATE(1100), - [sym_type_definition] = STATE(1100), - [sym__declaration_specifiers] = STATE(1101), - [sym_compound_statement] = STATE(1100), + [1004] = { + [sym_declaration] = STATE(1118), + [sym_type_definition] = STATE(1118), + [sym__declaration_specifiers] = STATE(1119), + [sym_compound_statement] = STATE(1118), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -37984,46 +38330,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(1100), - [sym_expression_statement] = STATE(1100), - [sym_if_statement] = STATE(1100), - [sym_switch_statement] = STATE(1100), - [sym_case_statement] = STATE(1100), - [sym_while_statement] = STATE(1100), - [sym_do_statement] = STATE(1100), - [sym_for_statement] = STATE(1100), - [sym_return_statement] = STATE(1100), - [sym_break_statement] = STATE(1100), - [sym_continue_statement] = STATE(1100), - [sym_goto_statement] = STATE(1100), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), + [sym_labeled_statement] = STATE(1118), + [sym_expression_statement] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_switch_statement] = STATE(1118), + [sym_case_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_do_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_return_statement] = STATE(1118), + [sym_break_statement] = STATE(1118), + [sym_continue_statement] = STATE(1118), + [sym_goto_statement] = STATE(1118), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), [anon_sym_typedef] = ACTIONS(362), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -38039,79 +38385,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3151), [sym_comment] = ACTIONS(39), }, - [987] = { - [sym__expression] = STATE(1102), - [sym_conditional_expression] = STATE(1102), - [sym_assignment_expression] = STATE(1102), - [sym_pointer_expression] = STATE(1102), - [sym_logical_expression] = STATE(1102), - [sym_bitwise_expression] = STATE(1102), - [sym_equality_expression] = STATE(1102), - [sym_relational_expression] = STATE(1102), - [sym_shift_expression] = STATE(1102), - [sym_math_expression] = STATE(1102), - [sym_cast_expression] = STATE(1102), - [sym_sizeof_expression] = STATE(1102), - [sym_subscript_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_field_expression] = STATE(1102), - [sym_compound_literal_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_concatenated_string] = STATE(1102), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3132), - [sym_char_literal] = ACTIONS(3132), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3134), - [sym_false] = ACTIONS(3134), - [sym_null] = ACTIONS(3134), - [sym_identifier] = ACTIONS(3134), + [1005] = { + [sym__expression] = STATE(1120), + [sym_conditional_expression] = STATE(1120), + [sym_assignment_expression] = STATE(1120), + [sym_pointer_expression] = STATE(1120), + [sym_logical_expression] = STATE(1120), + [sym_bitwise_expression] = STATE(1120), + [sym_equality_expression] = STATE(1120), + [sym_relational_expression] = STATE(1120), + [sym_shift_expression] = STATE(1120), + [sym_math_expression] = STATE(1120), + [sym_cast_expression] = STATE(1120), + [sym_sizeof_expression] = STATE(1120), + [sym_subscript_expression] = STATE(1120), + [sym_call_expression] = STATE(1120), + [sym_field_expression] = STATE(1120), + [sym_compound_literal_expression] = STATE(1120), + [sym_parenthesized_expression] = STATE(1120), + [sym_concatenated_string] = STATE(1120), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3153), + [sym_char_literal] = ACTIONS(3153), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3155), + [sym_false] = ACTIONS(3155), + [sym_null] = ACTIONS(3155), + [sym_identifier] = ACTIONS(3155), [sym_comment] = ACTIONS(39), }, - [988] = { - [anon_sym_while] = ACTIONS(3136), + [1006] = { + [anon_sym_while] = ACTIONS(3157), [sym_comment] = ACTIONS(39), }, - [989] = { - [sym_declaration] = STATE(1104), - [sym__declaration_specifiers] = STATE(683), + [1007] = { + [sym_declaration] = STATE(1122), + [sym__declaration_specifiers] = STATE(698), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -38119,31 +38465,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym__expression] = STATE(1105), - [sym_conditional_expression] = STATE(1105), - [sym_assignment_expression] = STATE(1105), - [sym_pointer_expression] = STATE(1105), - [sym_logical_expression] = STATE(1105), - [sym_bitwise_expression] = STATE(1105), - [sym_equality_expression] = STATE(1105), - [sym_relational_expression] = STATE(1105), - [sym_shift_expression] = STATE(1105), - [sym_math_expression] = STATE(1105), - [sym_cast_expression] = STATE(1105), - [sym_sizeof_expression] = STATE(1105), - [sym_subscript_expression] = STATE(1105), - [sym_call_expression] = STATE(1105), - [sym_field_expression] = STATE(1105), - [sym_compound_literal_expression] = STATE(1105), - [sym_parenthesized_expression] = STATE(1105), - [sym_concatenated_string] = STATE(1105), + [sym__expression] = STATE(1123), + [sym_conditional_expression] = STATE(1123), + [sym_assignment_expression] = STATE(1123), + [sym_pointer_expression] = STATE(1123), + [sym_logical_expression] = STATE(1123), + [sym_bitwise_expression] = STATE(1123), + [sym_equality_expression] = STATE(1123), + [sym_relational_expression] = STATE(1123), + [sym_shift_expression] = STATE(1123), + [sym_math_expression] = STATE(1123), + [sym_cast_expression] = STATE(1123), + [sym_sizeof_expression] = STATE(1123), + [sym_subscript_expression] = STATE(1123), + [sym_call_expression] = STATE(1123), + [sym_field_expression] = STATE(1123), + [sym_compound_literal_expression] = STATE(1123), + [sym_parenthesized_expression] = STATE(1123), + [sym_concatenated_string] = STATE(1123), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3159), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -38159,386 +38505,386 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3140), - [sym_char_literal] = ACTIONS(3140), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_identifier] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3161), + [sym_char_literal] = ACTIONS(3161), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_identifier] = ACTIONS(1675), [sym_comment] = ACTIONS(39), }, - [990] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1665), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1663), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1663), - [sym_preproc_directive] = ACTIONS(1663), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_typedef] = ACTIONS(1663), - [anon_sym_extern] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1665), - [anon_sym_static] = ACTIONS(1663), - [anon_sym_auto] = ACTIONS(1663), - [anon_sym_register] = ACTIONS(1663), - [anon_sym_inline] = ACTIONS(1663), - [anon_sym_const] = ACTIONS(1663), - [anon_sym_restrict] = ACTIONS(1663), - [anon_sym_volatile] = ACTIONS(1663), - [anon_sym__Atomic] = ACTIONS(1663), - [anon_sym_unsigned] = ACTIONS(1663), - [anon_sym_long] = ACTIONS(1663), - [anon_sym_short] = ACTIONS(1663), - [sym_primitive_type] = ACTIONS(1663), - [anon_sym_enum] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1663), - [anon_sym_union] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1663), - [anon_sym_switch] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1663), - [anon_sym_default] = ACTIONS(1663), - [anon_sym_while] = ACTIONS(1663), - [anon_sym_do] = ACTIONS(1663), - [anon_sym_for] = ACTIONS(1663), - [anon_sym_return] = ACTIONS(1663), - [anon_sym_break] = ACTIONS(1663), - [anon_sym_continue] = ACTIONS(1663), - [anon_sym_goto] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1665), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1665), - [anon_sym_PLUS_PLUS] = ACTIONS(1665), - [anon_sym_sizeof] = ACTIONS(1663), - [sym_number_literal] = ACTIONS(1665), - [sym_char_literal] = ACTIONS(1665), - [sym_string_literal] = ACTIONS(1665), - [sym_true] = ACTIONS(1663), - [sym_false] = ACTIONS(1663), - [sym_null] = ACTIONS(1663), - [sym_identifier] = ACTIONS(1663), + [1008] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1677), + [anon_sym_LPAREN] = ACTIONS(1679), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1677), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1677), + [sym_preproc_directive] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_typedef] = ACTIONS(1677), + [anon_sym_extern] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_static] = ACTIONS(1677), + [anon_sym_auto] = ACTIONS(1677), + [anon_sym_register] = ACTIONS(1677), + [anon_sym_inline] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_restrict] = ACTIONS(1677), + [anon_sym_volatile] = ACTIONS(1677), + [anon_sym__Atomic] = ACTIONS(1677), + [anon_sym_unsigned] = ACTIONS(1677), + [anon_sym_long] = ACTIONS(1677), + [anon_sym_short] = ACTIONS(1677), + [sym_primitive_type] = ACTIONS(1677), + [anon_sym_enum] = ACTIONS(1677), + [anon_sym_struct] = ACTIONS(1677), + [anon_sym_union] = ACTIONS(1677), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_else] = ACTIONS(1677), + [anon_sym_switch] = ACTIONS(1677), + [anon_sym_case] = ACTIONS(1677), + [anon_sym_default] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_do] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_goto] = ACTIONS(1677), + [anon_sym_AMP] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_sizeof] = ACTIONS(1677), + [sym_number_literal] = ACTIONS(1679), + [sym_char_literal] = ACTIONS(1679), + [sym_string_literal] = ACTIONS(1679), + [sym_true] = ACTIONS(1677), + [sym_false] = ACTIONS(1677), + [sym_null] = ACTIONS(1677), + [sym_identifier] = ACTIONS(1677), [sym_comment] = ACTIONS(39), }, - [991] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3144), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1009] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [992] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1671), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1669), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1669), - [sym_preproc_directive] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_typedef] = ACTIONS(1669), - [anon_sym_extern] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_auto] = ACTIONS(1669), - [anon_sym_register] = ACTIONS(1669), - [anon_sym_inline] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_restrict] = ACTIONS(1669), - [anon_sym_volatile] = ACTIONS(1669), - [anon_sym__Atomic] = ACTIONS(1669), - [anon_sym_unsigned] = ACTIONS(1669), - [anon_sym_long] = ACTIONS(1669), - [anon_sym_short] = ACTIONS(1669), - [sym_primitive_type] = ACTIONS(1669), - [anon_sym_enum] = ACTIONS(1669), - [anon_sym_struct] = ACTIONS(1669), - [anon_sym_union] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_else] = ACTIONS(1669), - [anon_sym_switch] = ACTIONS(1669), - [anon_sym_case] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_goto] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_sizeof] = ACTIONS(1669), - [sym_number_literal] = ACTIONS(1671), - [sym_char_literal] = ACTIONS(1671), - [sym_string_literal] = ACTIONS(1671), - [sym_true] = ACTIONS(1669), - [sym_false] = ACTIONS(1669), - [sym_null] = ACTIONS(1669), - [sym_identifier] = ACTIONS(1669), + [1010] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1685), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1683), + [sym_preproc_directive] = ACTIONS(1683), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_typedef] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1683), + [anon_sym_auto] = ACTIONS(1683), + [anon_sym_register] = ACTIONS(1683), + [anon_sym_inline] = ACTIONS(1683), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_restrict] = ACTIONS(1683), + [anon_sym_volatile] = ACTIONS(1683), + [anon_sym__Atomic] = ACTIONS(1683), + [anon_sym_unsigned] = ACTIONS(1683), + [anon_sym_long] = ACTIONS(1683), + [anon_sym_short] = ACTIONS(1683), + [sym_primitive_type] = ACTIONS(1683), + [anon_sym_enum] = ACTIONS(1683), + [anon_sym_struct] = ACTIONS(1683), + [anon_sym_union] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1683), + [anon_sym_else] = ACTIONS(1683), + [anon_sym_switch] = ACTIONS(1683), + [anon_sym_case] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1683), + [anon_sym_while] = ACTIONS(1683), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1683), + [anon_sym_return] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_goto] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(1685), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1685), + [anon_sym_PLUS_PLUS] = ACTIONS(1685), + [anon_sym_sizeof] = ACTIONS(1683), + [sym_number_literal] = ACTIONS(1685), + [sym_char_literal] = ACTIONS(1685), + [sym_string_literal] = ACTIONS(1685), + [sym_true] = ACTIONS(1683), + [sym_false] = ACTIONS(1683), + [sym_null] = ACTIONS(1683), + [sym_identifier] = ACTIONS(1683), [sym_comment] = ACTIONS(39), }, - [993] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1673), - [anon_sym_LPAREN] = ACTIONS(1675), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1673), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1673), - [sym_preproc_directive] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_typedef] = ACTIONS(1673), - [anon_sym_extern] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_auto] = ACTIONS(1673), - [anon_sym_register] = ACTIONS(1673), - [anon_sym_inline] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_restrict] = ACTIONS(1673), - [anon_sym_volatile] = ACTIONS(1673), - [anon_sym__Atomic] = ACTIONS(1673), - [anon_sym_unsigned] = ACTIONS(1673), - [anon_sym_long] = ACTIONS(1673), - [anon_sym_short] = ACTIONS(1673), - [sym_primitive_type] = ACTIONS(1673), - [anon_sym_enum] = ACTIONS(1673), - [anon_sym_struct] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1673), - [anon_sym_switch] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1673), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_goto] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_sizeof] = ACTIONS(1673), - [sym_number_literal] = ACTIONS(1675), - [sym_char_literal] = ACTIONS(1675), - [sym_string_literal] = ACTIONS(1675), - [sym_true] = ACTIONS(1673), - [sym_false] = ACTIONS(1673), - [sym_null] = ACTIONS(1673), - [sym_identifier] = ACTIONS(1673), + [1011] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1689), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1687), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1687), + [sym_preproc_directive] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1689), + [anon_sym_typedef] = ACTIONS(1687), + [anon_sym_extern] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1687), + [anon_sym_auto] = ACTIONS(1687), + [anon_sym_register] = ACTIONS(1687), + [anon_sym_inline] = ACTIONS(1687), + [anon_sym_const] = ACTIONS(1687), + [anon_sym_restrict] = ACTIONS(1687), + [anon_sym_volatile] = ACTIONS(1687), + [anon_sym__Atomic] = ACTIONS(1687), + [anon_sym_unsigned] = ACTIONS(1687), + [anon_sym_long] = ACTIONS(1687), + [anon_sym_short] = ACTIONS(1687), + [sym_primitive_type] = ACTIONS(1687), + [anon_sym_enum] = ACTIONS(1687), + [anon_sym_struct] = ACTIONS(1687), + [anon_sym_union] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_switch] = ACTIONS(1687), + [anon_sym_case] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_do] = ACTIONS(1687), + [anon_sym_for] = ACTIONS(1687), + [anon_sym_return] = ACTIONS(1687), + [anon_sym_break] = ACTIONS(1687), + [anon_sym_continue] = ACTIONS(1687), + [anon_sym_goto] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1689), + [anon_sym_TILDE] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1689), + [anon_sym_PLUS_PLUS] = ACTIONS(1689), + [anon_sym_sizeof] = ACTIONS(1687), + [sym_number_literal] = ACTIONS(1689), + [sym_char_literal] = ACTIONS(1689), + [sym_string_literal] = ACTIONS(1689), + [sym_true] = ACTIONS(1687), + [sym_false] = ACTIONS(1687), + [sym_null] = ACTIONS(1687), + [sym_identifier] = ACTIONS(1687), [sym_comment] = ACTIONS(39), }, - [994] = { - [anon_sym_SEMI] = ACTIONS(3146), + [1012] = { + [anon_sym_SEMI] = ACTIONS(3167), [sym_comment] = ACTIONS(39), }, - [995] = { - [sym_compound_statement] = STATE(1109), - [sym_labeled_statement] = STATE(1109), - [sym_expression_statement] = STATE(1109), - [sym_if_statement] = STATE(1109), - [sym_switch_statement] = STATE(1109), - [sym_case_statement] = STATE(1109), - [sym_while_statement] = STATE(1109), - [sym_do_statement] = STATE(1109), - [sym_for_statement] = STATE(1109), - [sym_return_statement] = STATE(1109), - [sym_break_statement] = STATE(1109), - [sym_continue_statement] = STATE(1109), - [sym_goto_statement] = STATE(1109), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3148), + [1013] = { + [sym_compound_statement] = STATE(1127), + [sym_labeled_statement] = STATE(1127), + [sym_expression_statement] = STATE(1127), + [sym_if_statement] = STATE(1127), + [sym_switch_statement] = STATE(1127), + [sym_case_statement] = STATE(1127), + [sym_while_statement] = STATE(1127), + [sym_do_statement] = STATE(1127), + [sym_for_statement] = STATE(1127), + [sym_return_statement] = STATE(1127), + [sym_break_statement] = STATE(1127), + [sym_continue_statement] = STATE(1127), + [sym_goto_statement] = STATE(1127), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3169), [sym_comment] = ACTIONS(39), }, - [996] = { - [sym_parameter_list] = STATE(127), - [aux_sym_declaration_repeat1] = STATE(517), + [1014] = { + [sym_parameter_list] = STATE(128), + [aux_sym_declaration_repeat1] = STATE(527), [anon_sym_LPAREN] = ACTIONS(231), [anon_sym_COMMA] = ACTIONS(233), - [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_SEMI] = ACTIONS(1243), [anon_sym_LBRACK] = ACTIONS(239), [anon_sym_EQ] = ACTIONS(241), [sym_comment] = ACTIONS(39), }, - [997] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1715), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1713), - [sym_preproc_directive] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_typedef] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_auto] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1713), - [anon_sym_inline] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_restrict] = ACTIONS(1713), - [anon_sym_volatile] = ACTIONS(1713), - [anon_sym__Atomic] = ACTIONS(1713), - [anon_sym_unsigned] = ACTIONS(1713), - [anon_sym_long] = ACTIONS(1713), - [anon_sym_short] = ACTIONS(1713), - [sym_primitive_type] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_else] = ACTIONS(1713), - [anon_sym_switch] = ACTIONS(1713), - [anon_sym_case] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_goto] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_sizeof] = ACTIONS(1713), - [sym_number_literal] = ACTIONS(1715), - [sym_char_literal] = ACTIONS(1715), - [sym_string_literal] = ACTIONS(1715), - [sym_true] = ACTIONS(1713), - [sym_false] = ACTIONS(1713), - [sym_null] = ACTIONS(1713), - [sym_identifier] = ACTIONS(1713), + [1015] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1729), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1727), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1727), + [sym_preproc_directive] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_typedef] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_static] = ACTIONS(1727), + [anon_sym_auto] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_inline] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [anon_sym_restrict] = ACTIONS(1727), + [anon_sym_volatile] = ACTIONS(1727), + [anon_sym__Atomic] = ACTIONS(1727), + [anon_sym_unsigned] = ACTIONS(1727), + [anon_sym_long] = ACTIONS(1727), + [anon_sym_short] = ACTIONS(1727), + [sym_primitive_type] = ACTIONS(1727), + [anon_sym_enum] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1727), + [anon_sym_union] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_switch] = ACTIONS(1727), + [anon_sym_case] = ACTIONS(1727), + [anon_sym_default] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_goto] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1729), + [anon_sym_TILDE] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_sizeof] = ACTIONS(1727), + [sym_number_literal] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1729), + [sym_string_literal] = ACTIONS(1729), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_identifier] = ACTIONS(1727), [sym_comment] = ACTIONS(39), }, - [998] = { - [sym_preproc_include] = STATE(998), - [sym_preproc_def] = STATE(998), - [sym_preproc_function_def] = STATE(998), - [sym_preproc_call] = STATE(998), - [sym_preproc_if_in_compound_statement] = STATE(850), - [sym_preproc_ifdef_in_compound_statement] = STATE(851), - [sym_declaration] = STATE(998), - [sym_type_definition] = STATE(998), - [sym__declaration_specifiers] = STATE(852), - [sym_compound_statement] = STATE(998), + [1016] = { + [sym_preproc_include] = STATE(1016), + [sym_preproc_def] = STATE(1016), + [sym_preproc_function_def] = STATE(1016), + [sym_preproc_call] = STATE(1016), + [sym_preproc_if_in_compound_statement] = STATE(867), + [sym_preproc_ifdef_in_compound_statement] = STATE(868), + [sym_declaration] = STATE(1016), + [sym_type_definition] = STATE(1016), + [sym__declaration_specifiers] = STATE(869), + [sym_compound_statement] = STATE(1016), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -38546,119 +38892,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(998), - [sym_expression_statement] = STATE(998), - [sym_if_statement] = STATE(998), - [sym_switch_statement] = STATE(998), - [sym_case_statement] = STATE(998), - [sym_while_statement] = STATE(998), - [sym_do_statement] = STATE(998), - [sym_for_statement] = STATE(998), - [sym_return_statement] = STATE(998), - [sym_break_statement] = STATE(998), - [sym_continue_statement] = STATE(998), - [sym_goto_statement] = STATE(998), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [sym__empty_declaration] = STATE(998), + [sym_labeled_statement] = STATE(1016), + [sym_expression_statement] = STATE(1016), + [sym_if_statement] = STATE(1016), + [sym_switch_statement] = STATE(1016), + [sym_case_statement] = STATE(1016), + [sym_while_statement] = STATE(1016), + [sym_do_statement] = STATE(1016), + [sym_for_statement] = STATE(1016), + [sym_return_statement] = STATE(1016), + [sym_break_statement] = STATE(1016), + [sym_continue_statement] = STATE(1016), + [sym_goto_statement] = STATE(1016), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [sym__empty_declaration] = STATE(1016), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(998), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1016), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3150), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(1785), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3156), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2814), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3159), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3162), - [sym_preproc_directive] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_auto] = ACTIONS(1806), - [anon_sym_register] = ACTIONS(1806), - [anon_sym_inline] = ACTIONS(1806), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_restrict] = ACTIONS(1817), - [anon_sym_volatile] = ACTIONS(1817), - [anon_sym__Atomic] = ACTIONS(1817), - [anon_sym_unsigned] = ACTIONS(1820), - [anon_sym_long] = ACTIONS(1820), - [anon_sym_short] = ACTIONS(1820), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1826), - [anon_sym_struct] = ACTIONS(1829), - [anon_sym_union] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_case] = ACTIONS(3183), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), - [anon_sym_sizeof] = ACTIONS(1880), - [sym_number_literal] = ACTIONS(3210), - [sym_char_literal] = ACTIONS(3210), - [sym_string_literal] = ACTIONS(1886), - [sym_true] = ACTIONS(3213), - [sym_false] = ACTIONS(3213), - [sym_null] = ACTIONS(3213), - [sym_identifier] = ACTIONS(3216), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3171), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(1799), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3177), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2835), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3180), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3183), + [sym_preproc_directive] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_typedef] = ACTIONS(3192), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(1828), + [anon_sym_static] = ACTIONS(1820), + [anon_sym_auto] = ACTIONS(1820), + [anon_sym_register] = ACTIONS(1820), + [anon_sym_inline] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_restrict] = ACTIONS(1831), + [anon_sym_volatile] = ACTIONS(1831), + [anon_sym__Atomic] = ACTIONS(1831), + [anon_sym_unsigned] = ACTIONS(1834), + [anon_sym_long] = ACTIONS(1834), + [anon_sym_short] = ACTIONS(1834), + [sym_primitive_type] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1843), + [anon_sym_union] = ACTIONS(1846), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3201), + [anon_sym_case] = ACTIONS(3204), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3210), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_goto] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(1828), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_TILDE] = ACTIONS(1885), + [anon_sym_PLUS] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_DASH_DASH] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1891), + [anon_sym_sizeof] = ACTIONS(1894), + [sym_number_literal] = ACTIONS(3231), + [sym_char_literal] = ACTIONS(3231), + [sym_string_literal] = ACTIONS(1900), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_identifier] = ACTIONS(3237), [sym_comment] = ACTIONS(39), }, - [999] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3219), + [1017] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3240), [sym_comment] = ACTIONS(39), }, - [1000] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3221), + [1018] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3242), [sym_comment] = ACTIONS(39), }, - [1001] = { - [sym_preproc_include] = STATE(877), - [sym_preproc_def] = STATE(877), - [sym_preproc_function_def] = STATE(877), - [sym_preproc_call] = STATE(877), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(1110), - [sym_preproc_elif_in_compound_statement] = STATE(1111), - [sym_declaration] = STATE(877), - [sym_type_definition] = STATE(877), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(877), + [1019] = { + [sym_preproc_include] = STATE(894), + [sym_preproc_def] = STATE(894), + [sym_preproc_function_def] = STATE(894), + [sym_preproc_call] = STATE(894), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(1128), + [sym_preproc_elif_in_compound_statement] = STATE(1129), + [sym_declaration] = STATE(894), + [sym_type_definition] = STATE(894), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(894), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -38666,57 +39012,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(877), + [sym_labeled_statement] = STATE(894), + [sym_expression_statement] = STATE(894), + [sym_if_statement] = STATE(894), + [sym_switch_statement] = STATE(894), + [sym_case_statement] = STATE(894), + [sym_while_statement] = STATE(894), + [sym_do_statement] = STATE(894), + [sym_for_statement] = STATE(894), + [sym_return_statement] = STATE(894), + [sym_break_statement] = STATE(894), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(894), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(894), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(877), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(894), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3223), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3244), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -38732,121 +39078,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [1002] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1020] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1003] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1021] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3248), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1004] = { - [sym_declaration] = STATE(1114), - [sym_type_definition] = STATE(1114), - [sym__declaration_specifiers] = STATE(1007), - [sym_compound_statement] = STATE(1114), + [1022] = { + [sym_declaration] = STATE(1132), + [sym_type_definition] = STATE(1132), + [sym__declaration_specifiers] = STATE(1025), + [sym_compound_statement] = STATE(1132), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -38854,46 +39200,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(1114), - [sym_expression_statement] = STATE(1114), - [sym_if_statement] = STATE(1114), - [sym_switch_statement] = STATE(1114), - [sym_case_statement] = STATE(1114), - [sym_while_statement] = STATE(1114), - [sym_do_statement] = STATE(1114), - [sym_for_statement] = STATE(1114), - [sym_return_statement] = STATE(1114), - [sym_break_statement] = STATE(1114), - [sym_continue_statement] = STATE(1114), - [sym_goto_statement] = STATE(1114), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), + [sym_labeled_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_switch_statement] = STATE(1132), + [sym_case_statement] = STATE(1132), + [sym_while_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -38909,42 +39255,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(2790), [sym_comment] = ACTIONS(39), }, - [1005] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), + [1023] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_static] = ACTIONS(86), [anon_sym_auto] = ACTIONS(86), [anon_sym_register] = ACTIONS(86), @@ -38953,1462 +39299,852 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(86), [anon_sym_volatile] = ACTIONS(86), [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(2381), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [1006] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2480), - [sym_preproc_directive] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_typedef] = ACTIONS(2480), - [anon_sym_extern] = ACTIONS(2480), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2480), - [anon_sym_auto] = ACTIONS(2480), - [anon_sym_register] = ACTIONS(2480), - [anon_sym_inline] = ACTIONS(2480), - [anon_sym_const] = ACTIONS(2480), - [anon_sym_restrict] = ACTIONS(2480), - [anon_sym_volatile] = ACTIONS(2480), - [anon_sym__Atomic] = ACTIONS(2480), - [anon_sym_unsigned] = ACTIONS(2480), - [anon_sym_long] = ACTIONS(2480), - [anon_sym_short] = ACTIONS(2480), - [sym_primitive_type] = ACTIONS(2480), - [anon_sym_enum] = ACTIONS(2480), - [anon_sym_struct] = ACTIONS(2480), - [anon_sym_union] = ACTIONS(2480), - [anon_sym_if] = ACTIONS(2480), - [anon_sym_else] = ACTIONS(2480), - [anon_sym_switch] = ACTIONS(2480), - [anon_sym_case] = ACTIONS(2480), - [anon_sym_default] = ACTIONS(2480), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(2480), - [anon_sym_for] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2480), - [anon_sym_break] = ACTIONS(2480), - [anon_sym_continue] = ACTIONS(2480), - [anon_sym_goto] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(2482), - [anon_sym_TILDE] = ACTIONS(2482), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2482), - [anon_sym_PLUS_PLUS] = ACTIONS(2482), - [anon_sym_sizeof] = ACTIONS(2480), - [sym_number_literal] = ACTIONS(2482), - [sym_char_literal] = ACTIONS(2482), - [sym_string_literal] = ACTIONS(2482), - [sym_true] = ACTIONS(2480), - [sym_false] = ACTIONS(2480), - [sym_null] = ACTIONS(2480), - [sym_identifier] = ACTIONS(2480), - [sym_comment] = ACTIONS(39), - }, - [1007] = { - [sym__declarator] = STATE(872), - [sym_pointer_declarator] = STATE(872), - [sym_function_declarator] = STATE(872), - [sym_array_declarator] = STATE(872), - [sym_init_declarator] = STATE(160), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(520), - [sym_identifier] = ACTIONS(2366), - [sym_comment] = ACTIONS(39), - }, - [1008] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1009] = { - [anon_sym_LPAREN] = ACTIONS(3231), - [sym_comment] = ACTIONS(39), - }, - [1010] = { - [sym__expression] = STATE(1118), - [sym_conditional_expression] = STATE(1118), - [sym_assignment_expression] = STATE(1118), - [sym_pointer_expression] = STATE(1118), - [sym_logical_expression] = STATE(1118), - [sym_bitwise_expression] = STATE(1118), - [sym_equality_expression] = STATE(1118), - [sym_relational_expression] = STATE(1118), - [sym_shift_expression] = STATE(1118), - [sym_math_expression] = STATE(1118), - [sym_cast_expression] = STATE(1118), - [sym_sizeof_expression] = STATE(1118), - [sym_subscript_expression] = STATE(1118), - [sym_call_expression] = STATE(1118), - [sym_field_expression] = STATE(1118), - [sym_compound_literal_expression] = STATE(1118), - [sym_parenthesized_expression] = STATE(1118), - [sym_concatenated_string] = STATE(1118), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3235), - [sym_char_literal] = ACTIONS(3235), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3237), - [sym_false] = ACTIONS(3237), - [sym_null] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3237), - [sym_comment] = ACTIONS(39), - }, - [1011] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1012] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2518), - [sym_preproc_directive] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_typedef] = ACTIONS(2518), - [anon_sym_extern] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_auto] = ACTIONS(2518), - [anon_sym_register] = ACTIONS(2518), - [anon_sym_inline] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_restrict] = ACTIONS(2518), - [anon_sym_volatile] = ACTIONS(2518), - [anon_sym__Atomic] = ACTIONS(2518), - [anon_sym_unsigned] = ACTIONS(2518), - [anon_sym_long] = ACTIONS(2518), - [anon_sym_short] = ACTIONS(2518), - [sym_primitive_type] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - [anon_sym_struct] = ACTIONS(2518), - [anon_sym_union] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_case] = ACTIONS(2518), - [anon_sym_default] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_goto] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_sizeof] = ACTIONS(2518), - [sym_number_literal] = ACTIONS(2520), - [sym_char_literal] = ACTIONS(2520), - [sym_string_literal] = ACTIONS(2520), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2518), - [sym_comment] = ACTIONS(39), - }, - [1013] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2524), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2522), - [sym_preproc_directive] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_typedef] = ACTIONS(2522), - [anon_sym_extern] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_auto] = ACTIONS(2522), - [anon_sym_register] = ACTIONS(2522), - [anon_sym_inline] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_restrict] = ACTIONS(2522), - [anon_sym_volatile] = ACTIONS(2522), - [anon_sym__Atomic] = ACTIONS(2522), - [anon_sym_unsigned] = ACTIONS(2522), - [anon_sym_long] = ACTIONS(2522), - [anon_sym_short] = ACTIONS(2522), - [sym_primitive_type] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_union] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_goto] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_sizeof] = ACTIONS(2522), - [sym_number_literal] = ACTIONS(2524), - [sym_char_literal] = ACTIONS(2524), - [sym_string_literal] = ACTIONS(2524), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2522), - [sym_comment] = ACTIONS(39), - }, - [1014] = { - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(2360), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_comment] = ACTIONS(39), - }, - [1015] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2535), - [sym_preproc_directive] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_typedef] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_auto] = ACTIONS(2535), - [anon_sym_register] = ACTIONS(2535), - [anon_sym_inline] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_restrict] = ACTIONS(2535), - [anon_sym_volatile] = ACTIONS(2535), - [anon_sym__Atomic] = ACTIONS(2535), - [anon_sym_unsigned] = ACTIONS(2535), - [anon_sym_long] = ACTIONS(2535), - [anon_sym_short] = ACTIONS(2535), - [sym_primitive_type] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_else] = ACTIONS(2535), - [anon_sym_switch] = ACTIONS(2535), - [anon_sym_case] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_do] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_goto] = ACTIONS(2535), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2537), - [anon_sym_TILDE] = ACTIONS(2537), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2537), - [anon_sym_PLUS_PLUS] = ACTIONS(2537), - [anon_sym_sizeof] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2537), - [sym_char_literal] = ACTIONS(2537), - [sym_string_literal] = ACTIONS(2537), - [sym_true] = ACTIONS(2535), - [sym_false] = ACTIONS(2535), - [sym_null] = ACTIONS(2535), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(39), - }, - [1016] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3243), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3241), - [sym_preproc_directive] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_typedef] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_auto] = ACTIONS(3241), - [anon_sym_register] = ACTIONS(3241), - [anon_sym_inline] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_restrict] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym__Atomic] = ACTIONS(3241), - [anon_sym_unsigned] = ACTIONS(3241), - [anon_sym_long] = ACTIONS(3241), - [anon_sym_short] = ACTIONS(3241), - [sym_primitive_type] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_union] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_sizeof] = ACTIONS(3241), - [sym_number_literal] = ACTIONS(3243), - [sym_char_literal] = ACTIONS(3243), - [sym_string_literal] = ACTIONS(3243), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_identifier] = ACTIONS(3241), - [sym_comment] = ACTIONS(39), - }, - [1017] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3245), - [sym_preproc_directive] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_typedef] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_auto] = ACTIONS(3245), - [anon_sym_register] = ACTIONS(3245), - [anon_sym_inline] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_restrict] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym__Atomic] = ACTIONS(3245), - [anon_sym_unsigned] = ACTIONS(3245), - [anon_sym_long] = ACTIONS(3245), - [anon_sym_short] = ACTIONS(3245), - [sym_primitive_type] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_sizeof] = ACTIONS(3245), - [sym_number_literal] = ACTIONS(3247), - [sym_char_literal] = ACTIONS(3247), - [sym_string_literal] = ACTIONS(3247), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_identifier] = ACTIONS(3245), - [sym_comment] = ACTIONS(39), - }, - [1018] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3249), - [sym_preproc_directive] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3249), - [anon_sym_extern] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_auto] = ACTIONS(3249), - [anon_sym_register] = ACTIONS(3249), - [anon_sym_inline] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_restrict] = ACTIONS(3249), - [anon_sym_volatile] = ACTIONS(3249), - [anon_sym__Atomic] = ACTIONS(3249), - [anon_sym_unsigned] = ACTIONS(3249), - [anon_sym_long] = ACTIONS(3249), - [anon_sym_short] = ACTIONS(3249), - [sym_primitive_type] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(3249), - [sym_number_literal] = ACTIONS(3251), - [sym_char_literal] = ACTIONS(3251), - [sym_string_literal] = ACTIONS(3251), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_identifier] = ACTIONS(3249), - [sym_comment] = ACTIONS(39), - }, - [1019] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3253), - [sym_preproc_directive] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_auto] = ACTIONS(3253), - [anon_sym_register] = ACTIONS(3253), - [anon_sym_inline] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_restrict] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym__Atomic] = ACTIONS(3253), - [anon_sym_unsigned] = ACTIONS(3253), - [anon_sym_long] = ACTIONS(3253), - [anon_sym_short] = ACTIONS(3253), - [sym_primitive_type] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_union] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_sizeof] = ACTIONS(3253), - [sym_number_literal] = ACTIONS(3255), - [sym_char_literal] = ACTIONS(3255), - [sym_string_literal] = ACTIONS(3255), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [sym_null] = ACTIONS(3253), - [sym_identifier] = ACTIONS(3253), - [sym_comment] = ACTIONS(39), - }, - [1020] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3259), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3257), - [sym_preproc_directive] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_auto] = ACTIONS(3257), - [anon_sym_register] = ACTIONS(3257), - [anon_sym_inline] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_restrict] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym__Atomic] = ACTIONS(3257), - [anon_sym_unsigned] = ACTIONS(3257), - [anon_sym_long] = ACTIONS(3257), - [anon_sym_short] = ACTIONS(3257), - [sym_primitive_type] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_union] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_sizeof] = ACTIONS(3257), - [sym_number_literal] = ACTIONS(3259), - [sym_char_literal] = ACTIONS(3259), - [sym_string_literal] = ACTIONS(3259), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3257), - [sym_comment] = ACTIONS(39), - }, - [1021] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3261), - [anon_sym_LPAREN] = ACTIONS(3263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3261), - [sym_preproc_directive] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_typedef] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_auto] = ACTIONS(3261), - [anon_sym_register] = ACTIONS(3261), - [anon_sym_inline] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_restrict] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym__Atomic] = ACTIONS(3261), - [anon_sym_unsigned] = ACTIONS(3261), - [anon_sym_long] = ACTIONS(3261), - [anon_sym_short] = ACTIONS(3261), - [sym_primitive_type] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_case] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_sizeof] = ACTIONS(3261), - [sym_number_literal] = ACTIONS(3263), - [sym_char_literal] = ACTIONS(3263), - [sym_string_literal] = ACTIONS(3263), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [sym_null] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3261), - [sym_comment] = ACTIONS(39), - }, - [1022] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), - [sym_comment] = ACTIONS(39), - }, - [1023] = { - [anon_sym_RPAREN] = ACTIONS(3265), - [sym_comment] = ACTIONS(39), - }, [1024] = { - [aux_sym_concatenated_string_repeat1] = STATE(1024), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_RPAREN] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_EQ] = ACTIONS(2530), - [anon_sym_QMARK] = ACTIONS(2528), - [anon_sym_STAR_EQ] = ACTIONS(2528), - [anon_sym_SLASH_EQ] = ACTIONS(2528), - [anon_sym_PERCENT_EQ] = ACTIONS(2528), - [anon_sym_PLUS_EQ] = ACTIONS(2528), - [anon_sym_DASH_EQ] = ACTIONS(2528), - [anon_sym_LT_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_GT_EQ] = ACTIONS(2528), - [anon_sym_AMP_EQ] = ACTIONS(2528), - [anon_sym_CARET_EQ] = ACTIONS(2528), - [anon_sym_PIPE_EQ] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE_PIPE] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_CARET] = ACTIONS(2530), - [anon_sym_EQ_EQ] = ACTIONS(2528), - [anon_sym_BANG_EQ] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_GT] = ACTIONS(2530), - [anon_sym_LT_EQ] = ACTIONS(2528), - [anon_sym_GT_EQ] = ACTIONS(2528), - [anon_sym_LT_LT] = ACTIONS(2530), - [anon_sym_GT_GT] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_PERCENT] = ACTIONS(2530), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DOT] = ACTIONS(2528), - [anon_sym_DASH_GT] = ACTIONS(2528), - [sym_string_literal] = ACTIONS(3267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2501), + [sym_preproc_directive] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_typedef] = ACTIONS(2501), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_auto] = ACTIONS(2501), + [anon_sym_register] = ACTIONS(2501), + [anon_sym_inline] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_restrict] = ACTIONS(2501), + [anon_sym_volatile] = ACTIONS(2501), + [anon_sym__Atomic] = ACTIONS(2501), + [anon_sym_unsigned] = ACTIONS(2501), + [anon_sym_long] = ACTIONS(2501), + [anon_sym_short] = ACTIONS(2501), + [sym_primitive_type] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_struct] = ACTIONS(2501), + [anon_sym_union] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_case] = ACTIONS(2501), + [anon_sym_default] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_goto] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_DASH_DASH] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_sizeof] = ACTIONS(2501), + [sym_number_literal] = ACTIONS(2503), + [sym_char_literal] = ACTIONS(2503), + [sym_string_literal] = ACTIONS(2503), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_null] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2501), [sym_comment] = ACTIONS(39), }, [1025] = { - [anon_sym_LPAREN] = ACTIONS(3270), + [sym__declarator] = STATE(889), + [sym_pointer_declarator] = STATE(889), + [sym_function_declarator] = STATE(889), + [sym_array_declarator] = STATE(889), + [sym_init_declarator] = STATE(161), + [anon_sym_LPAREN] = ACTIONS(90), + [anon_sym_STAR] = ACTIONS(524), + [sym_identifier] = ACTIONS(2387), [sym_comment] = ACTIONS(39), }, [1026] = { - [anon_sym_LPAREN] = ACTIONS(3272), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1027] = { - [sym__expression] = STATE(1123), - [sym_conditional_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1123), - [sym_pointer_expression] = STATE(1123), - [sym_logical_expression] = STATE(1123), - [sym_bitwise_expression] = STATE(1123), - [sym_equality_expression] = STATE(1123), - [sym_relational_expression] = STATE(1123), - [sym_shift_expression] = STATE(1123), - [sym_math_expression] = STATE(1123), - [sym_cast_expression] = STATE(1123), - [sym_sizeof_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_call_expression] = STATE(1123), - [sym_field_expression] = STATE(1123), - [sym_compound_literal_expression] = STATE(1123), - [sym_parenthesized_expression] = STATE(1123), - [sym_concatenated_string] = STATE(1123), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3274), - [sym_char_literal] = ACTIONS(3274), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [sym_null] = ACTIONS(3276), - [sym_identifier] = ACTIONS(3276), + [anon_sym_LPAREN] = ACTIONS(3252), [sym_comment] = ACTIONS(39), }, [1028] = { - [anon_sym_COLON] = ACTIONS(3278), + [sym__expression] = STATE(1136), + [sym_conditional_expression] = STATE(1136), + [sym_assignment_expression] = STATE(1136), + [sym_pointer_expression] = STATE(1136), + [sym_logical_expression] = STATE(1136), + [sym_bitwise_expression] = STATE(1136), + [sym_equality_expression] = STATE(1136), + [sym_relational_expression] = STATE(1136), + [sym_shift_expression] = STATE(1136), + [sym_math_expression] = STATE(1136), + [sym_cast_expression] = STATE(1136), + [sym_sizeof_expression] = STATE(1136), + [sym_subscript_expression] = STATE(1136), + [sym_call_expression] = STATE(1136), + [sym_field_expression] = STATE(1136), + [sym_compound_literal_expression] = STATE(1136), + [sym_parenthesized_expression] = STATE(1136), + [sym_concatenated_string] = STATE(1136), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3256), + [sym_char_literal] = ACTIONS(3256), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_identifier] = ACTIONS(3258), [sym_comment] = ACTIONS(39), }, [1029] = { - [anon_sym_LPAREN] = ACTIONS(3280), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1030] = { - [anon_sym_LPAREN] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2539), + [sym_preproc_directive] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_auto] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_inline] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_restrict] = ACTIONS(2539), + [anon_sym_volatile] = ACTIONS(2539), + [anon_sym__Atomic] = ACTIONS(2539), + [anon_sym_unsigned] = ACTIONS(2539), + [anon_sym_long] = ACTIONS(2539), + [anon_sym_short] = ACTIONS(2539), + [sym_primitive_type] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_goto] = ACTIONS(2539), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_number_literal] = ACTIONS(2541), + [sym_char_literal] = ACTIONS(2541), + [sym_string_literal] = ACTIONS(2541), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2539), [sym_comment] = ACTIONS(39), }, [1031] = { - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2543), + [sym_preproc_directive] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_typedef] = ACTIONS(2543), + [anon_sym_extern] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_auto] = ACTIONS(2543), + [anon_sym_register] = ACTIONS(2543), + [anon_sym_inline] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_restrict] = ACTIONS(2543), + [anon_sym_volatile] = ACTIONS(2543), + [anon_sym__Atomic] = ACTIONS(2543), + [anon_sym_unsigned] = ACTIONS(2543), + [anon_sym_long] = ACTIONS(2543), + [anon_sym_short] = ACTIONS(2543), + [sym_primitive_type] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_else] = ACTIONS(2543), + [anon_sym_switch] = ACTIONS(2543), + [anon_sym_case] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_do] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_goto] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2545), + [anon_sym_TILDE] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(2545), + [anon_sym_PLUS_PLUS] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2543), + [sym_number_literal] = ACTIONS(2545), + [sym_char_literal] = ACTIONS(2545), + [sym_string_literal] = ACTIONS(2545), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_null] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2543), [sym_comment] = ACTIONS(39), }, [1032] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_auto] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [sym_char_literal] = ACTIONS(3288), - [sym_string_literal] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_COLON] = ACTIONS(2381), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, [1033] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2555), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2558), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2556), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_auto] = ACTIONS(2556), + [anon_sym_register] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_restrict] = ACTIONS(2556), + [anon_sym_volatile] = ACTIONS(2556), + [anon_sym__Atomic] = ACTIONS(2556), + [anon_sym_unsigned] = ACTIONS(2556), + [anon_sym_long] = ACTIONS(2556), + [anon_sym_short] = ACTIONS(2556), + [sym_primitive_type] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_goto] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_sizeof] = ACTIONS(2556), + [sym_number_literal] = ACTIONS(2558), + [sym_char_literal] = ACTIONS(2558), + [sym_string_literal] = ACTIONS(2558), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [sym_null] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2556), [sym_comment] = ACTIONS(39), }, [1034] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(3292), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3264), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_auto] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [sym_char_literal] = ACTIONS(3264), + [sym_string_literal] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3262), [sym_comment] = ACTIONS(39), }, [1035] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3268), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_auto] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [sym_char_literal] = ACTIONS(3268), + [sym_string_literal] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_identifier] = ACTIONS(3266), [sym_comment] = ACTIONS(39), }, [1036] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3272), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3270), + [sym_preproc_directive] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_typedef] = ACTIONS(3270), + [anon_sym_extern] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_auto] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_restrict] = ACTIONS(3270), + [anon_sym_volatile] = ACTIONS(3270), + [anon_sym__Atomic] = ACTIONS(3270), + [anon_sym_unsigned] = ACTIONS(3270), + [anon_sym_long] = ACTIONS(3270), + [anon_sym_short] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_sizeof] = ACTIONS(3270), + [sym_number_literal] = ACTIONS(3272), + [sym_char_literal] = ACTIONS(3272), + [sym_string_literal] = ACTIONS(3272), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3270), [sym_comment] = ACTIONS(39), }, [1037] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2563), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2565), - [anon_sym_QMARK] = ACTIONS(2563), - [anon_sym_STAR_EQ] = ACTIONS(2563), - [anon_sym_SLASH_EQ] = ACTIONS(2563), - [anon_sym_PERCENT_EQ] = ACTIONS(2563), - [anon_sym_PLUS_EQ] = ACTIONS(2563), - [anon_sym_DASH_EQ] = ACTIONS(2563), - [anon_sym_LT_LT_EQ] = ACTIONS(2563), - [anon_sym_GT_GT_EQ] = ACTIONS(2563), - [anon_sym_AMP_EQ] = ACTIONS(2563), - [anon_sym_CARET_EQ] = ACTIONS(2563), - [anon_sym_PIPE_EQ] = ACTIONS(2563), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2563), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3276), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3274), + [sym_preproc_directive] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_typedef] = ACTIONS(3274), + [anon_sym_extern] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_auto] = ACTIONS(3274), + [anon_sym_register] = ACTIONS(3274), + [anon_sym_inline] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_restrict] = ACTIONS(3274), + [anon_sym_volatile] = ACTIONS(3274), + [anon_sym__Atomic] = ACTIONS(3274), + [anon_sym_unsigned] = ACTIONS(3274), + [anon_sym_long] = ACTIONS(3274), + [anon_sym_short] = ACTIONS(3274), + [sym_primitive_type] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_sizeof] = ACTIONS(3274), + [sym_number_literal] = ACTIONS(3276), + [sym_char_literal] = ACTIONS(3276), + [sym_string_literal] = ACTIONS(3276), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3274), [sym_comment] = ACTIONS(39), }, [1038] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3280), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_auto] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [sym_char_literal] = ACTIONS(3280), + [sym_string_literal] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3278), [sym_comment] = ACTIONS(39), }, [1039] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2561), - [anon_sym_QMARK] = ACTIONS(2559), - [anon_sym_STAR_EQ] = ACTIONS(2559), - [anon_sym_SLASH_EQ] = ACTIONS(2559), - [anon_sym_PERCENT_EQ] = ACTIONS(2559), - [anon_sym_PLUS_EQ] = ACTIONS(2559), - [anon_sym_DASH_EQ] = ACTIONS(2559), - [anon_sym_LT_LT_EQ] = ACTIONS(2559), - [anon_sym_GT_GT_EQ] = ACTIONS(2559), - [anon_sym_AMP_EQ] = ACTIONS(2559), - [anon_sym_CARET_EQ] = ACTIONS(2559), - [anon_sym_PIPE_EQ] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_CARET] = ACTIONS(2561), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3284), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_auto] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym_AMP] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [sym_char_literal] = ACTIONS(3284), + [sym_string_literal] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3282), [sym_comment] = ACTIONS(39), }, [1040] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2567), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2569), - [anon_sym_QMARK] = ACTIONS(2567), - [anon_sym_STAR_EQ] = ACTIONS(2567), - [anon_sym_SLASH_EQ] = ACTIONS(2567), - [anon_sym_PERCENT_EQ] = ACTIONS(2567), - [anon_sym_PLUS_EQ] = ACTIONS(2567), - [anon_sym_DASH_EQ] = ACTIONS(2567), - [anon_sym_LT_LT_EQ] = ACTIONS(2567), - [anon_sym_GT_GT_EQ] = ACTIONS(2567), - [anon_sym_AMP_EQ] = ACTIONS(2567), - [anon_sym_CARET_EQ] = ACTIONS(2567), - [anon_sym_PIPE_EQ] = ACTIONS(2567), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_PIPE_PIPE] = ACTIONS(2567), - [anon_sym_AMP_AMP] = ACTIONS(2567), - [anon_sym_PIPE] = ACTIONS(2569), - [anon_sym_CARET] = ACTIONS(2569), - [anon_sym_EQ_EQ] = ACTIONS(2567), - [anon_sym_BANG_EQ] = ACTIONS(2567), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(39), }, [1041] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2571), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2573), - [anon_sym_QMARK] = ACTIONS(2571), - [anon_sym_STAR_EQ] = ACTIONS(2571), - [anon_sym_SLASH_EQ] = ACTIONS(2571), - [anon_sym_PERCENT_EQ] = ACTIONS(2571), - [anon_sym_PLUS_EQ] = ACTIONS(2571), - [anon_sym_DASH_EQ] = ACTIONS(2571), - [anon_sym_LT_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_GT_EQ] = ACTIONS(2571), - [anon_sym_AMP_EQ] = ACTIONS(2571), - [anon_sym_CARET_EQ] = ACTIONS(2571), - [anon_sym_PIPE_EQ] = ACTIONS(2571), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_PIPE_PIPE] = ACTIONS(2571), - [anon_sym_AMP_AMP] = ACTIONS(2571), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_CARET] = ACTIONS(2573), - [anon_sym_EQ_EQ] = ACTIONS(2571), - [anon_sym_BANG_EQ] = ACTIONS(2571), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_GT] = ACTIONS(2573), - [anon_sym_LT_EQ] = ACTIONS(2571), - [anon_sym_GT_EQ] = ACTIONS(2571), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_RPAREN] = ACTIONS(3286), [sym_comment] = ACTIONS(39), }, [1042] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2577), - [anon_sym_QMARK] = ACTIONS(2575), - [anon_sym_STAR_EQ] = ACTIONS(2575), - [anon_sym_SLASH_EQ] = ACTIONS(2575), - [anon_sym_PERCENT_EQ] = ACTIONS(2575), - [anon_sym_PLUS_EQ] = ACTIONS(2575), - [anon_sym_DASH_EQ] = ACTIONS(2575), - [anon_sym_LT_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_GT_EQ] = ACTIONS(2575), - [anon_sym_AMP_EQ] = ACTIONS(2575), - [anon_sym_CARET_EQ] = ACTIONS(2575), - [anon_sym_PIPE_EQ] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_PIPE] = ACTIONS(2577), - [anon_sym_CARET] = ACTIONS(2577), - [anon_sym_EQ_EQ] = ACTIONS(2575), - [anon_sym_BANG_EQ] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_GT] = ACTIONS(2577), - [anon_sym_LT_EQ] = ACTIONS(2575), - [anon_sym_GT_EQ] = ACTIONS(2575), - [anon_sym_LT_LT] = ACTIONS(2577), - [anon_sym_GT_GT] = ACTIONS(2577), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1043] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), + [aux_sym_concatenated_string_repeat1] = STATE(1042), + [anon_sym_LPAREN] = ACTIONS(2549), [anon_sym_RPAREN] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2549), [anon_sym_EQ] = ACTIONS(2551), [anon_sym_QMARK] = ACTIONS(2549), [anon_sym_STAR_EQ] = ACTIONS(2549), @@ -40436,1806 +40172,2416 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(2551), [anon_sym_PLUS] = ACTIONS(2551), [anon_sym_DASH] = ACTIONS(2551), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_DOT] = ACTIONS(2549), + [anon_sym_DASH_GT] = ACTIONS(2549), + [sym_string_literal] = ACTIONS(3288), + [sym_comment] = ACTIONS(39), + }, + [1043] = { + [anon_sym_LPAREN] = ACTIONS(3291), [sym_comment] = ACTIONS(39), }, [1044] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3296), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_auto] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3296), - [sym_char_literal] = ACTIONS(3296), - [sym_string_literal] = ACTIONS(3296), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3293), [sym_comment] = ACTIONS(39), }, [1045] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_STAR_EQ] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3011), - [anon_sym_PERCENT_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3011), - [anon_sym_LT_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_GT_EQ] = ACTIONS(3011), - [anon_sym_AMP_EQ] = ACTIONS(3011), - [anon_sym_CARET_EQ] = ACTIONS(3011), - [anon_sym_PIPE_EQ] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3300), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_DASH_GT] = ACTIONS(3011), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [sym__expression] = STATE(1141), + [sym_conditional_expression] = STATE(1141), + [sym_assignment_expression] = STATE(1141), + [sym_pointer_expression] = STATE(1141), + [sym_logical_expression] = STATE(1141), + [sym_bitwise_expression] = STATE(1141), + [sym_equality_expression] = STATE(1141), + [sym_relational_expression] = STATE(1141), + [sym_shift_expression] = STATE(1141), + [sym_math_expression] = STATE(1141), + [sym_cast_expression] = STATE(1141), + [sym_sizeof_expression] = STATE(1141), + [sym_subscript_expression] = STATE(1141), + [sym_call_expression] = STATE(1141), + [sym_field_expression] = STATE(1141), + [sym_compound_literal_expression] = STATE(1141), + [sym_parenthesized_expression] = STATE(1141), + [sym_concatenated_string] = STATE(1141), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(3295), + [sym_char_literal] = ACTIONS(3295), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_null] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3297), [sym_comment] = ACTIONS(39), }, [1046] = { - [sym__expression] = STATE(1130), - [sym_conditional_expression] = STATE(1130), - [sym_assignment_expression] = STATE(1130), - [sym_pointer_expression] = STATE(1130), - [sym_logical_expression] = STATE(1130), - [sym_bitwise_expression] = STATE(1130), - [sym_equality_expression] = STATE(1130), - [sym_relational_expression] = STATE(1130), - [sym_shift_expression] = STATE(1130), - [sym_math_expression] = STATE(1130), - [sym_cast_expression] = STATE(1130), - [sym_sizeof_expression] = STATE(1130), - [sym_subscript_expression] = STATE(1130), - [sym_call_expression] = STATE(1130), - [sym_field_expression] = STATE(1130), - [sym_compound_literal_expression] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), - [sym_concatenated_string] = STATE(1130), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3302), - [sym_char_literal] = ACTIONS(3302), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_identifier] = ACTIONS(3304), + [anon_sym_COLON] = ACTIONS(3299), [sym_comment] = ACTIONS(39), }, [1047] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3308), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3306), - [sym_preproc_directive] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym_typedef] = ACTIONS(3306), - [anon_sym_extern] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_RBRACE] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_auto] = ACTIONS(3306), - [anon_sym_register] = ACTIONS(3306), - [anon_sym_inline] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_restrict] = ACTIONS(3306), - [anon_sym_volatile] = ACTIONS(3306), - [anon_sym__Atomic] = ACTIONS(3306), - [anon_sym_unsigned] = ACTIONS(3306), - [anon_sym_long] = ACTIONS(3306), - [anon_sym_short] = ACTIONS(3306), - [sym_primitive_type] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_union] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_else] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3306), - [anon_sym_default] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_goto] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_sizeof] = ACTIONS(3306), - [sym_number_literal] = ACTIONS(3308), - [sym_char_literal] = ACTIONS(3308), - [sym_string_literal] = ACTIONS(3308), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_null] = ACTIONS(3306), - [sym_identifier] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3301), [sym_comment] = ACTIONS(39), }, [1048] = { - [sym_compound_statement] = STATE(1138), - [sym_labeled_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_if_statement] = STATE(1138), - [sym_switch_statement] = STATE(1138), - [sym_case_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_return_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_goto_statement] = STATE(1138), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3303), [sym_comment] = ACTIONS(39), }, [1049] = { - [sym_compound_statement] = STATE(1044), - [sym_labeled_statement] = STATE(1044), - [sym_expression_statement] = STATE(1044), - [sym_if_statement] = STATE(1044), - [sym_switch_statement] = STATE(1044), - [sym_case_statement] = STATE(1044), - [sym_while_statement] = STATE(1044), - [sym_do_statement] = STATE(1044), - [sym_for_statement] = STATE(1044), - [sym_return_statement] = STATE(1044), - [sym_break_statement] = STATE(1044), - [sym_continue_statement] = STATE(1044), - [sym_goto_statement] = STATE(1044), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_COLON] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, [1050] = { - [sym_compound_statement] = STATE(1047), - [sym_labeled_statement] = STATE(1047), - [sym_expression_statement] = STATE(1047), - [sym_if_statement] = STATE(1047), - [sym_switch_statement] = STATE(1047), - [sym_case_statement] = STATE(1047), - [sym_while_statement] = STATE(1047), - [sym_do_statement] = STATE(1047), - [sym_for_statement] = STATE(1047), - [sym_return_statement] = STATE(1047), - [sym_break_statement] = STATE(1047), - [sym_continue_statement] = STATE(1047), - [sym_goto_statement] = STATE(1047), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3307), + [sym_preproc_directive] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_typedef] = ACTIONS(3307), + [anon_sym_extern] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_auto] = ACTIONS(3307), + [anon_sym_register] = ACTIONS(3307), + [anon_sym_inline] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_restrict] = ACTIONS(3307), + [anon_sym_volatile] = ACTIONS(3307), + [anon_sym__Atomic] = ACTIONS(3307), + [anon_sym_unsigned] = ACTIONS(3307), + [anon_sym_long] = ACTIONS(3307), + [anon_sym_short] = ACTIONS(3307), + [sym_primitive_type] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_union] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_case] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_goto] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3307), + [sym_number_literal] = ACTIONS(3309), + [sym_char_literal] = ACTIONS(3309), + [sym_string_literal] = ACTIONS(3309), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3307), [sym_comment] = ACTIONS(39), }, [1051] = { - [sym__expression] = STATE(1140), - [sym_conditional_expression] = STATE(1140), - [sym_assignment_expression] = STATE(1140), - [sym_pointer_expression] = STATE(1140), - [sym_logical_expression] = STATE(1140), - [sym_bitwise_expression] = STATE(1140), - [sym_equality_expression] = STATE(1140), - [sym_relational_expression] = STATE(1140), - [sym_shift_expression] = STATE(1140), - [sym_math_expression] = STATE(1140), - [sym_cast_expression] = STATE(1140), - [sym_sizeof_expression] = STATE(1140), - [sym_subscript_expression] = STATE(1140), - [sym_call_expression] = STATE(1140), - [sym_field_expression] = STATE(1140), - [sym_compound_literal_expression] = STATE(1140), - [sym_parenthesized_expression] = STATE(1140), - [sym_concatenated_string] = STATE(1140), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3324), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3326), - [sym_char_literal] = ACTIONS(3326), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_identifier] = ACTIONS(3328), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2576), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1052] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(3313), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1053] = { - [sym__expression] = STATE(1142), - [sym_conditional_expression] = STATE(1142), - [sym_assignment_expression] = STATE(1142), - [sym_pointer_expression] = STATE(1142), - [sym_logical_expression] = STATE(1142), - [sym_bitwise_expression] = STATE(1142), - [sym_equality_expression] = STATE(1142), - [sym_relational_expression] = STATE(1142), - [sym_shift_expression] = STATE(1142), - [sym_math_expression] = STATE(1142), - [sym_cast_expression] = STATE(1142), - [sym_sizeof_expression] = STATE(1142), - [sym_subscript_expression] = STATE(1142), - [sym_call_expression] = STATE(1142), - [sym_field_expression] = STATE(1142), - [sym_compound_literal_expression] = STATE(1142), - [sym_parenthesized_expression] = STATE(1142), - [sym_concatenated_string] = STATE(1142), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3332), - [sym_char_literal] = ACTIONS(3332), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3334), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2582), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1054] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1055] = { - [sym_compound_statement] = STATE(1144), - [sym_labeled_statement] = STATE(1144), - [sym_expression_statement] = STATE(1144), - [sym_if_statement] = STATE(1144), - [sym_switch_statement] = STATE(1144), - [sym_case_statement] = STATE(1144), - [sym_while_statement] = STATE(1144), - [sym_do_statement] = STATE(1144), - [sym_for_statement] = STATE(1144), - [sym_return_statement] = STATE(1144), - [sym_break_statement] = STATE(1144), - [sym_continue_statement] = STATE(1144), - [sym_goto_statement] = STATE(1144), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1701), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2586), + [anon_sym_QMARK] = ACTIONS(2584), + [anon_sym_STAR_EQ] = ACTIONS(2584), + [anon_sym_SLASH_EQ] = ACTIONS(2584), + [anon_sym_PERCENT_EQ] = ACTIONS(2584), + [anon_sym_PLUS_EQ] = ACTIONS(2584), + [anon_sym_DASH_EQ] = ACTIONS(2584), + [anon_sym_LT_LT_EQ] = ACTIONS(2584), + [anon_sym_GT_GT_EQ] = ACTIONS(2584), + [anon_sym_AMP_EQ] = ACTIONS(2584), + [anon_sym_CARET_EQ] = ACTIONS(2584), + [anon_sym_PIPE_EQ] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2584), + [anon_sym_AMP_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1056] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1146), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3338), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1057] = { - [sym__expression] = STATE(1147), - [sym_conditional_expression] = STATE(1147), - [sym_assignment_expression] = STATE(1147), - [sym_pointer_expression] = STATE(1147), - [sym_logical_expression] = STATE(1147), - [sym_bitwise_expression] = STATE(1147), - [sym_equality_expression] = STATE(1147), - [sym_relational_expression] = STATE(1147), - [sym_shift_expression] = STATE(1147), - [sym_math_expression] = STATE(1147), - [sym_cast_expression] = STATE(1147), - [sym_sizeof_expression] = STATE(1147), - [sym_subscript_expression] = STATE(1147), - [sym_call_expression] = STATE(1147), - [sym_field_expression] = STATE(1147), - [sym_compound_literal_expression] = STATE(1147), - [sym_parenthesized_expression] = STATE(1147), - [sym_concatenated_string] = STATE(1147), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3338), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3340), - [sym_char_literal] = ACTIONS(3340), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_identifier] = ACTIONS(3342), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_QMARK] = ACTIONS(2580), + [anon_sym_STAR_EQ] = ACTIONS(2580), + [anon_sym_SLASH_EQ] = ACTIONS(2580), + [anon_sym_PERCENT_EQ] = ACTIONS(2580), + [anon_sym_PLUS_EQ] = ACTIONS(2580), + [anon_sym_DASH_EQ] = ACTIONS(2580), + [anon_sym_LT_LT_EQ] = ACTIONS(2580), + [anon_sym_GT_GT_EQ] = ACTIONS(2580), + [anon_sym_AMP_EQ] = ACTIONS(2580), + [anon_sym_CARET_EQ] = ACTIONS(2580), + [anon_sym_PIPE_EQ] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2580), + [anon_sym_AMP_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_CARET] = ACTIONS(2582), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1058] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(2588), + [anon_sym_STAR_EQ] = ACTIONS(2588), + [anon_sym_SLASH_EQ] = ACTIONS(2588), + [anon_sym_PERCENT_EQ] = ACTIONS(2588), + [anon_sym_PLUS_EQ] = ACTIONS(2588), + [anon_sym_DASH_EQ] = ACTIONS(2588), + [anon_sym_LT_LT_EQ] = ACTIONS(2588), + [anon_sym_GT_GT_EQ] = ACTIONS(2588), + [anon_sym_AMP_EQ] = ACTIONS(2588), + [anon_sym_CARET_EQ] = ACTIONS(2588), + [anon_sym_PIPE_EQ] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE_PIPE] = ACTIONS(2588), + [anon_sym_AMP_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_CARET] = ACTIONS(2590), + [anon_sym_EQ_EQ] = ACTIONS(2588), + [anon_sym_BANG_EQ] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1059] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2594), + [anon_sym_QMARK] = ACTIONS(2592), + [anon_sym_STAR_EQ] = ACTIONS(2592), + [anon_sym_SLASH_EQ] = ACTIONS(2592), + [anon_sym_PERCENT_EQ] = ACTIONS(2592), + [anon_sym_PLUS_EQ] = ACTIONS(2592), + [anon_sym_DASH_EQ] = ACTIONS(2592), + [anon_sym_LT_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_GT_EQ] = ACTIONS(2592), + [anon_sym_AMP_EQ] = ACTIONS(2592), + [anon_sym_CARET_EQ] = ACTIONS(2592), + [anon_sym_PIPE_EQ] = ACTIONS(2592), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_PIPE_PIPE] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(2592), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_CARET] = ACTIONS(2594), + [anon_sym_EQ_EQ] = ACTIONS(2592), + [anon_sym_BANG_EQ] = ACTIONS(2592), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_GT] = ACTIONS(2594), + [anon_sym_LT_EQ] = ACTIONS(2592), + [anon_sym_GT_EQ] = ACTIONS(2592), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1060] = { - [anon_sym_LPAREN] = ACTIONS(3348), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_RPAREN] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3348), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_RBRACK] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(3350), - [anon_sym_COLON] = ACTIONS(3348), - [anon_sym_QMARK] = ACTIONS(3348), - [anon_sym_STAR_EQ] = ACTIONS(3348), - [anon_sym_SLASH_EQ] = ACTIONS(3348), - [anon_sym_PERCENT_EQ] = ACTIONS(3348), - [anon_sym_PLUS_EQ] = ACTIONS(3348), - [anon_sym_DASH_EQ] = ACTIONS(3348), - [anon_sym_LT_LT_EQ] = ACTIONS(3348), - [anon_sym_GT_GT_EQ] = ACTIONS(3348), - [anon_sym_AMP_EQ] = ACTIONS(3348), - [anon_sym_CARET_EQ] = ACTIONS(3348), - [anon_sym_PIPE_EQ] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3348), - [anon_sym_PIPE] = ACTIONS(3350), - [anon_sym_CARET] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_GT] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3348), - [anon_sym_GT_EQ] = ACTIONS(3348), - [anon_sym_LT_LT] = ACTIONS(3350), - [anon_sym_GT_GT] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3350), - [anon_sym_DASH] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3350), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3348), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_DASH_GT] = ACTIONS(3348), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2598), + [anon_sym_QMARK] = ACTIONS(2596), + [anon_sym_STAR_EQ] = ACTIONS(2596), + [anon_sym_SLASH_EQ] = ACTIONS(2596), + [anon_sym_PERCENT_EQ] = ACTIONS(2596), + [anon_sym_PLUS_EQ] = ACTIONS(2596), + [anon_sym_DASH_EQ] = ACTIONS(2596), + [anon_sym_LT_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_GT_EQ] = ACTIONS(2596), + [anon_sym_AMP_EQ] = ACTIONS(2596), + [anon_sym_CARET_EQ] = ACTIONS(2596), + [anon_sym_PIPE_EQ] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2598), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_CARET] = ACTIONS(2598), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_GT] = ACTIONS(2598), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2598), + [anon_sym_GT_GT] = ACTIONS(2598), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1061] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_RPAREN] = ACTIONS(3346), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2570), + [anon_sym_STAR_EQ] = ACTIONS(2570), + [anon_sym_SLASH_EQ] = ACTIONS(2570), + [anon_sym_PERCENT_EQ] = ACTIONS(2570), + [anon_sym_PLUS_EQ] = ACTIONS(2570), + [anon_sym_DASH_EQ] = ACTIONS(2570), + [anon_sym_LT_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_GT_EQ] = ACTIONS(2570), + [anon_sym_AMP_EQ] = ACTIONS(2570), + [anon_sym_CARET_EQ] = ACTIONS(2570), + [anon_sym_PIPE_EQ] = ACTIONS(2570), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2570), + [anon_sym_AMP_AMP] = ACTIONS(2570), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2570), + [anon_sym_BANG_EQ] = ACTIONS(2570), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2570), + [anon_sym_GT_EQ] = ACTIONS(2570), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1062] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1082), - [anon_sym_QMARK] = ACTIONS(1084), - [anon_sym_STAR_EQ] = ACTIONS(1086), - [anon_sym_SLASH_EQ] = ACTIONS(1086), - [anon_sym_PERCENT_EQ] = ACTIONS(1086), - [anon_sym_PLUS_EQ] = ACTIONS(1086), - [anon_sym_DASH_EQ] = ACTIONS(1086), - [anon_sym_LT_LT_EQ] = ACTIONS(1086), - [anon_sym_GT_GT_EQ] = ACTIONS(1086), - [anon_sym_AMP_EQ] = ACTIONS(1086), - [anon_sym_CARET_EQ] = ACTIONS(1086), - [anon_sym_PIPE_EQ] = ACTIONS(1086), - [anon_sym_AMP] = ACTIONS(1088), - [anon_sym_PIPE_PIPE] = ACTIONS(1090), - [anon_sym_AMP_AMP] = ACTIONS(1092), - [anon_sym_PIPE] = ACTIONS(1094), - [anon_sym_CARET] = ACTIONS(1096), - [anon_sym_EQ_EQ] = ACTIONS(1098), - [anon_sym_BANG_EQ] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1100), - [anon_sym_GT] = ACTIONS(1100), - [anon_sym_LT_EQ] = ACTIONS(1102), - [anon_sym_GT_EQ] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_PLUS] = ACTIONS(1106), - [anon_sym_DASH] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_PERCENT] = ACTIONS(1078), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3315), + [sym_preproc_directive] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_typedef] = ACTIONS(3315), + [anon_sym_extern] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_auto] = ACTIONS(3315), + [anon_sym_register] = ACTIONS(3315), + [anon_sym_inline] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_restrict] = ACTIONS(3315), + [anon_sym_volatile] = ACTIONS(3315), + [anon_sym__Atomic] = ACTIONS(3315), + [anon_sym_unsigned] = ACTIONS(3315), + [anon_sym_long] = ACTIONS(3315), + [anon_sym_short] = ACTIONS(3315), + [sym_primitive_type] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), + [anon_sym_struct] = ACTIONS(3315), + [anon_sym_union] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_case] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_goto] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_sizeof] = ACTIONS(3315), + [sym_number_literal] = ACTIONS(3317), + [sym_char_literal] = ACTIONS(3317), + [sym_string_literal] = ACTIONS(3317), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_identifier] = ACTIONS(3315), [sym_comment] = ACTIONS(39), }, [1063] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1130), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_RBRACK] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1134), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1138), - [anon_sym_PIPE_PIPE] = ACTIONS(1140), - [anon_sym_AMP_AMP] = ACTIONS(1142), - [anon_sym_PIPE] = ACTIONS(1144), - [anon_sym_CARET] = ACTIONS(1146), - [anon_sym_EQ_EQ] = ACTIONS(1148), - [anon_sym_BANG_EQ] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_LT_EQ] = ACTIONS(1152), - [anon_sym_GT_EQ] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_PLUS] = ACTIONS(1156), - [anon_sym_DASH] = ACTIONS(1156), - [anon_sym_SLASH] = ACTIONS(1130), - [anon_sym_PERCENT] = ACTIONS(1130), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_STAR_EQ] = ACTIONS(3032), + [anon_sym_SLASH_EQ] = ACTIONS(3032), + [anon_sym_PERCENT_EQ] = ACTIONS(3032), + [anon_sym_PLUS_EQ] = ACTIONS(3032), + [anon_sym_DASH_EQ] = ACTIONS(3032), + [anon_sym_LT_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_GT_EQ] = ACTIONS(3032), + [anon_sym_AMP_EQ] = ACTIONS(3032), + [anon_sym_CARET_EQ] = ACTIONS(3032), + [anon_sym_PIPE_EQ] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(39), }, [1064] = { - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_COMMA] = ACTIONS(3357), - [anon_sym_RPAREN] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_RBRACK] = ACTIONS(3357), - [anon_sym_EQ] = ACTIONS(3359), - [anon_sym_COLON] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3357), - [anon_sym_STAR_EQ] = ACTIONS(3357), - [anon_sym_SLASH_EQ] = ACTIONS(3357), - [anon_sym_PERCENT_EQ] = ACTIONS(3357), - [anon_sym_PLUS_EQ] = ACTIONS(3357), - [anon_sym_DASH_EQ] = ACTIONS(3357), - [anon_sym_LT_LT_EQ] = ACTIONS(3357), - [anon_sym_GT_GT_EQ] = ACTIONS(3357), - [anon_sym_AMP_EQ] = ACTIONS(3357), - [anon_sym_CARET_EQ] = ACTIONS(3357), - [anon_sym_PIPE_EQ] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3357), - [anon_sym_BANG_EQ] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_LT_EQ] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3357), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DOT] = ACTIONS(3357), - [anon_sym_DASH_GT] = ACTIONS(3357), + [sym__expression] = STATE(1148), + [sym_conditional_expression] = STATE(1148), + [sym_assignment_expression] = STATE(1148), + [sym_pointer_expression] = STATE(1148), + [sym_logical_expression] = STATE(1148), + [sym_bitwise_expression] = STATE(1148), + [sym_equality_expression] = STATE(1148), + [sym_relational_expression] = STATE(1148), + [sym_shift_expression] = STATE(1148), + [sym_math_expression] = STATE(1148), + [sym_cast_expression] = STATE(1148), + [sym_sizeof_expression] = STATE(1148), + [sym_subscript_expression] = STATE(1148), + [sym_call_expression] = STATE(1148), + [sym_field_expression] = STATE(1148), + [sym_compound_literal_expression] = STATE(1148), + [sym_parenthesized_expression] = STATE(1148), + [sym_concatenated_string] = STATE(1148), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(3323), + [sym_char_literal] = ACTIONS(3323), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(3325), + [sym_false] = ACTIONS(3325), + [sym_null] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3325), [sym_comment] = ACTIONS(39), }, [1065] = { - [sym__expression] = STATE(943), - [sym_conditional_expression] = STATE(943), - [sym_assignment_expression] = STATE(943), - [sym_pointer_expression] = STATE(943), - [sym_logical_expression] = STATE(943), - [sym_bitwise_expression] = STATE(943), - [sym_equality_expression] = STATE(943), - [sym_relational_expression] = STATE(943), - [sym_shift_expression] = STATE(943), - [sym_math_expression] = STATE(943), - [sym_cast_expression] = STATE(943), - [sym_sizeof_expression] = STATE(943), - [sym_subscript_expression] = STATE(943), - [sym_call_expression] = STATE(943), - [sym_field_expression] = STATE(943), - [sym_compound_literal_expression] = STATE(943), - [sym_parenthesized_expression] = STATE(943), - [sym_initializer_list] = STATE(944), - [sym_initializer_pair] = STATE(944), - [sym_subscript_designator] = STATE(483), - [sym_field_designator] = STATE(483), - [sym_concatenated_string] = STATE(943), - [aux_sym_initializer_pair_repeat1] = STATE(483), - [anon_sym_LPAREN] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(771), - [anon_sym_LBRACK] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(771), - [anon_sym_BANG] = ACTIONS(773), - [anon_sym_TILDE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(779), - [anon_sym_PLUS_PLUS] = ACTIONS(779), - [anon_sym_sizeof] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(1168), - [sym_number_literal] = ACTIONS(2602), - [sym_char_literal] = ACTIONS(2602), - [sym_string_literal] = ACTIONS(785), - [sym_true] = ACTIONS(2604), - [sym_false] = ACTIONS(2604), - [sym_null] = ACTIONS(2604), - [sym_identifier] = ACTIONS(2604), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3329), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3327), + [sym_preproc_directive] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3327), + [anon_sym_extern] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_auto] = ACTIONS(3327), + [anon_sym_register] = ACTIONS(3327), + [anon_sym_inline] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_restrict] = ACTIONS(3327), + [anon_sym_volatile] = ACTIONS(3327), + [anon_sym__Atomic] = ACTIONS(3327), + [anon_sym_unsigned] = ACTIONS(3327), + [anon_sym_long] = ACTIONS(3327), + [anon_sym_short] = ACTIONS(3327), + [sym_primitive_type] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), + [anon_sym_struct] = ACTIONS(3327), + [anon_sym_union] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_case] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_goto] = ACTIONS(3327), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_sizeof] = ACTIONS(3327), + [sym_number_literal] = ACTIONS(3329), + [sym_char_literal] = ACTIONS(3329), + [sym_string_literal] = ACTIONS(3329), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3327), [sym_comment] = ACTIONS(39), }, [1066] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1315), - [anon_sym_QMARK] = ACTIONS(1317), - [anon_sym_STAR_EQ] = ACTIONS(1319), - [anon_sym_SLASH_EQ] = ACTIONS(1319), - [anon_sym_PERCENT_EQ] = ACTIONS(1319), - [anon_sym_PLUS_EQ] = ACTIONS(1319), - [anon_sym_DASH_EQ] = ACTIONS(1319), - [anon_sym_LT_LT_EQ] = ACTIONS(1319), - [anon_sym_GT_GT_EQ] = ACTIONS(1319), - [anon_sym_AMP_EQ] = ACTIONS(1319), - [anon_sym_CARET_EQ] = ACTIONS(1319), - [anon_sym_PIPE_EQ] = ACTIONS(1319), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(1323), - [anon_sym_AMP_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1327), - [anon_sym_CARET] = ACTIONS(1329), - [anon_sym_EQ_EQ] = ACTIONS(1331), - [anon_sym_BANG_EQ] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1335), - [anon_sym_LT_LT] = ACTIONS(1337), - [anon_sym_GT_GT] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_PERCENT] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_compound_statement] = STATE(1156), + [sym_labeled_statement] = STATE(1156), + [sym_expression_statement] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_switch_statement] = STATE(1156), + [sym_case_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_do_statement] = STATE(1156), + [sym_for_statement] = STATE(1156), + [sym_return_statement] = STATE(1156), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1156), + [sym_goto_statement] = STATE(1156), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3343), [sym_comment] = ACTIONS(39), }, [1067] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_compound_statement] = STATE(1062), + [sym_labeled_statement] = STATE(1062), + [sym_expression_statement] = STATE(1062), + [sym_if_statement] = STATE(1062), + [sym_switch_statement] = STATE(1062), + [sym_case_statement] = STATE(1062), + [sym_while_statement] = STATE(1062), + [sym_do_statement] = STATE(1062), + [sym_for_statement] = STATE(1062), + [sym_return_statement] = STATE(1062), + [sym_break_statement] = STATE(1062), + [sym_continue_statement] = STATE(1062), + [sym_goto_statement] = STATE(1062), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, [1068] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_compound_statement] = STATE(1065), + [sym_labeled_statement] = STATE(1065), + [sym_expression_statement] = STATE(1065), + [sym_if_statement] = STATE(1065), + [sym_switch_statement] = STATE(1065), + [sym_case_statement] = STATE(1065), + [sym_while_statement] = STATE(1065), + [sym_do_statement] = STATE(1065), + [sym_for_statement] = STATE(1065), + [sym_return_statement] = STATE(1065), + [sym_break_statement] = STATE(1065), + [sym_continue_statement] = STATE(1065), + [sym_goto_statement] = STATE(1065), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, [1069] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2789), - [sym_preproc_directive] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_auto] = ACTIONS(2789), - [anon_sym_register] = ACTIONS(2789), - [anon_sym_inline] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_restrict] = ACTIONS(2789), - [anon_sym_volatile] = ACTIONS(2789), - [anon_sym__Atomic] = ACTIONS(2789), - [anon_sym_unsigned] = ACTIONS(2789), - [anon_sym_long] = ACTIONS(2789), - [anon_sym_short] = ACTIONS(2789), - [sym_primitive_type] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_goto] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_sizeof] = ACTIONS(2789), - [sym_number_literal] = ACTIONS(2791), - [sym_char_literal] = ACTIONS(2791), - [sym_string_literal] = ACTIONS(2791), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [sym_identifier] = ACTIONS(2789), + [sym__expression] = STATE(1158), + [sym_conditional_expression] = STATE(1158), + [sym_assignment_expression] = STATE(1158), + [sym_pointer_expression] = STATE(1158), + [sym_logical_expression] = STATE(1158), + [sym_bitwise_expression] = STATE(1158), + [sym_equality_expression] = STATE(1158), + [sym_relational_expression] = STATE(1158), + [sym_shift_expression] = STATE(1158), + [sym_math_expression] = STATE(1158), + [sym_cast_expression] = STATE(1158), + [sym_sizeof_expression] = STATE(1158), + [sym_subscript_expression] = STATE(1158), + [sym_call_expression] = STATE(1158), + [sym_field_expression] = STATE(1158), + [sym_compound_literal_expression] = STATE(1158), + [sym_parenthesized_expression] = STATE(1158), + [sym_concatenated_string] = STATE(1158), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3345), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3347), + [sym_char_literal] = ACTIONS(3347), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_null] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3349), [sym_comment] = ACTIONS(39), }, [1070] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2793), - [sym_preproc_directive] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_auto] = ACTIONS(2793), - [anon_sym_register] = ACTIONS(2793), - [anon_sym_inline] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_restrict] = ACTIONS(2793), - [anon_sym_volatile] = ACTIONS(2793), - [anon_sym__Atomic] = ACTIONS(2793), - [anon_sym_unsigned] = ACTIONS(2793), - [anon_sym_long] = ACTIONS(2793), - [anon_sym_short] = ACTIONS(2793), - [sym_primitive_type] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_goto] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2793), - [sym_number_literal] = ACTIONS(2795), - [sym_char_literal] = ACTIONS(2795), - [sym_string_literal] = ACTIONS(2795), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), - [sym_identifier] = ACTIONS(2793), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1071] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2799), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2797), - [sym_preproc_directive] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_auto] = ACTIONS(2797), - [anon_sym_register] = ACTIONS(2797), - [anon_sym_inline] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_restrict] = ACTIONS(2797), - [anon_sym_volatile] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(2797), - [anon_sym_unsigned] = ACTIONS(2797), - [anon_sym_long] = ACTIONS(2797), - [anon_sym_short] = ACTIONS(2797), - [sym_primitive_type] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_goto] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_sizeof] = ACTIONS(2797), - [sym_number_literal] = ACTIONS(2799), - [sym_char_literal] = ACTIONS(2799), - [sym_string_literal] = ACTIONS(2799), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), - [sym_identifier] = ACTIONS(2797), + [sym__expression] = STATE(1160), + [sym_conditional_expression] = STATE(1160), + [sym_assignment_expression] = STATE(1160), + [sym_pointer_expression] = STATE(1160), + [sym_logical_expression] = STATE(1160), + [sym_bitwise_expression] = STATE(1160), + [sym_equality_expression] = STATE(1160), + [sym_relational_expression] = STATE(1160), + [sym_shift_expression] = STATE(1160), + [sym_math_expression] = STATE(1160), + [sym_cast_expression] = STATE(1160), + [sym_sizeof_expression] = STATE(1160), + [sym_subscript_expression] = STATE(1160), + [sym_call_expression] = STATE(1160), + [sym_field_expression] = STATE(1160), + [sym_compound_literal_expression] = STATE(1160), + [sym_parenthesized_expression] = STATE(1160), + [sym_concatenated_string] = STATE(1160), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3353), + [sym_char_literal] = ACTIONS(3353), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3355), + [sym_false] = ACTIONS(3355), + [sym_null] = ACTIONS(3355), + [sym_identifier] = ACTIONS(3355), [sym_comment] = ACTIONS(39), }, [1072] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3361), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1073] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3363), + [sym_compound_statement] = STATE(1162), + [sym_labeled_statement] = STATE(1162), + [sym_expression_statement] = STATE(1162), + [sym_if_statement] = STATE(1162), + [sym_switch_statement] = STATE(1162), + [sym_case_statement] = STATE(1162), + [sym_while_statement] = STATE(1162), + [sym_do_statement] = STATE(1162), + [sym_for_statement] = STATE(1162), + [sym_return_statement] = STATE(1162), + [sym_break_statement] = STATE(1162), + [sym_continue_statement] = STATE(1162), + [sym_goto_statement] = STATE(1162), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1715), [sym_comment] = ACTIONS(39), }, [1074] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2878), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2876), - [sym_preproc_directive] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_auto] = ACTIONS(2876), - [anon_sym_register] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_restrict] = ACTIONS(2876), - [anon_sym_volatile] = ACTIONS(2876), - [anon_sym__Atomic] = ACTIONS(2876), - [anon_sym_unsigned] = ACTIONS(2876), - [anon_sym_long] = ACTIONS(2876), - [anon_sym_short] = ACTIONS(2876), - [sym_primitive_type] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_case] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_sizeof] = ACTIONS(2876), - [sym_number_literal] = ACTIONS(2878), - [sym_char_literal] = ACTIONS(2878), - [sym_string_literal] = ACTIONS(2878), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_null] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2876), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1164), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1075] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2880), - [sym_preproc_directive] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_typedef] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_auto] = ACTIONS(2880), - [anon_sym_register] = ACTIONS(2880), - [anon_sym_inline] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_restrict] = ACTIONS(2880), - [anon_sym_volatile] = ACTIONS(2880), - [anon_sym__Atomic] = ACTIONS(2880), - [anon_sym_unsigned] = ACTIONS(2880), - [anon_sym_long] = ACTIONS(2880), - [anon_sym_short] = ACTIONS(2880), - [sym_primitive_type] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_switch] = ACTIONS(2880), - [anon_sym_case] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_do] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_sizeof] = ACTIONS(2880), - [sym_number_literal] = ACTIONS(2882), - [sym_char_literal] = ACTIONS(2882), - [sym_string_literal] = ACTIONS(2882), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_null] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2880), + [sym__expression] = STATE(1165), + [sym_conditional_expression] = STATE(1165), + [sym_assignment_expression] = STATE(1165), + [sym_pointer_expression] = STATE(1165), + [sym_logical_expression] = STATE(1165), + [sym_bitwise_expression] = STATE(1165), + [sym_equality_expression] = STATE(1165), + [sym_relational_expression] = STATE(1165), + [sym_shift_expression] = STATE(1165), + [sym_math_expression] = STATE(1165), + [sym_cast_expression] = STATE(1165), + [sym_sizeof_expression] = STATE(1165), + [sym_subscript_expression] = STATE(1165), + [sym_call_expression] = STATE(1165), + [sym_field_expression] = STATE(1165), + [sym_compound_literal_expression] = STATE(1165), + [sym_parenthesized_expression] = STATE(1165), + [sym_concatenated_string] = STATE(1165), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3361), + [sym_char_literal] = ACTIONS(3361), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_identifier] = ACTIONS(3363), [sym_comment] = ACTIONS(39), }, [1076] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2886), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2884), - [sym_preproc_directive] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_typedef] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_auto] = ACTIONS(2884), - [anon_sym_register] = ACTIONS(2884), - [anon_sym_inline] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_restrict] = ACTIONS(2884), - [anon_sym_volatile] = ACTIONS(2884), - [anon_sym__Atomic] = ACTIONS(2884), - [anon_sym_unsigned] = ACTIONS(2884), - [anon_sym_long] = ACTIONS(2884), - [anon_sym_short] = ACTIONS(2884), - [sym_primitive_type] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_switch] = ACTIONS(2884), - [anon_sym_case] = ACTIONS(2884), - [anon_sym_default] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_do] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_sizeof] = ACTIONS(2884), - [sym_number_literal] = ACTIONS(2886), - [sym_char_literal] = ACTIONS(2886), - [sym_string_literal] = ACTIONS(2886), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_null] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2884), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1077] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3365), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(3367), + [anon_sym_RPAREN] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1078] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_COMMA] = ACTIONS(3369), + [anon_sym_RPAREN] = ACTIONS(3369), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_RBRACK] = ACTIONS(3369), + [anon_sym_EQ] = ACTIONS(3371), + [anon_sym_COLON] = ACTIONS(3369), + [anon_sym_QMARK] = ACTIONS(3369), + [anon_sym_STAR_EQ] = ACTIONS(3369), + [anon_sym_SLASH_EQ] = ACTIONS(3369), + [anon_sym_PERCENT_EQ] = ACTIONS(3369), + [anon_sym_PLUS_EQ] = ACTIONS(3369), + [anon_sym_DASH_EQ] = ACTIONS(3369), + [anon_sym_LT_LT_EQ] = ACTIONS(3369), + [anon_sym_GT_GT_EQ] = ACTIONS(3369), + [anon_sym_AMP_EQ] = ACTIONS(3369), + [anon_sym_CARET_EQ] = ACTIONS(3369), + [anon_sym_PIPE_EQ] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3371), + [anon_sym_PIPE_PIPE] = ACTIONS(3369), + [anon_sym_AMP_AMP] = ACTIONS(3369), + [anon_sym_PIPE] = ACTIONS(3371), + [anon_sym_CARET] = ACTIONS(3371), + [anon_sym_EQ_EQ] = ACTIONS(3369), + [anon_sym_BANG_EQ] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_GT] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3369), + [anon_sym_GT_EQ] = ACTIONS(3369), + [anon_sym_LT_LT] = ACTIONS(3371), + [anon_sym_GT_GT] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PERCENT] = ACTIONS(3371), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DOT] = ACTIONS(3369), + [anon_sym_DASH_GT] = ACTIONS(3369), [sym_comment] = ACTIONS(39), }, [1079] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2894), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2892), - [sym_preproc_directive] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2892), - [anon_sym_extern] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_static] = ACTIONS(2892), - [anon_sym_auto] = ACTIONS(2892), - [anon_sym_register] = ACTIONS(2892), - [anon_sym_inline] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_restrict] = ACTIONS(2892), - [anon_sym_volatile] = ACTIONS(2892), - [anon_sym__Atomic] = ACTIONS(2892), - [anon_sym_unsigned] = ACTIONS(2892), - [anon_sym_long] = ACTIONS(2892), - [anon_sym_short] = ACTIONS(2892), - [sym_primitive_type] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_switch] = ACTIONS(2892), - [anon_sym_case] = ACTIONS(2892), - [anon_sym_default] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_goto] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_sizeof] = ACTIONS(2892), - [sym_number_literal] = ACTIONS(2894), - [sym_char_literal] = ACTIONS(2894), - [sym_string_literal] = ACTIONS(2894), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_null] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2892), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(3373), + [anon_sym_RPAREN] = ACTIONS(3367), [sym_comment] = ACTIONS(39), }, [1080] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2898), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2896), - [sym_preproc_directive] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2896), - [anon_sym_extern] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2896), - [anon_sym_auto] = ACTIONS(2896), - [anon_sym_register] = ACTIONS(2896), - [anon_sym_inline] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_restrict] = ACTIONS(2896), - [anon_sym_volatile] = ACTIONS(2896), - [anon_sym__Atomic] = ACTIONS(2896), - [anon_sym_unsigned] = ACTIONS(2896), - [anon_sym_long] = ACTIONS(2896), - [anon_sym_short] = ACTIONS(2896), - [sym_primitive_type] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_switch] = ACTIONS(2896), - [anon_sym_case] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2896), - [anon_sym_while] = ACTIONS(2896), - [anon_sym_do] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), - [anon_sym_goto] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_sizeof] = ACTIONS(2896), - [sym_number_literal] = ACTIONS(2898), - [sym_char_literal] = ACTIONS(2898), - [sym_string_literal] = ACTIONS(2898), - [sym_true] = ACTIONS(2896), - [sym_false] = ACTIONS(2896), - [sym_null] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2896), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(1090), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1094), + [anon_sym_QMARK] = ACTIONS(1096), + [anon_sym_STAR_EQ] = ACTIONS(1098), + [anon_sym_SLASH_EQ] = ACTIONS(1098), + [anon_sym_PERCENT_EQ] = ACTIONS(1098), + [anon_sym_PLUS_EQ] = ACTIONS(1098), + [anon_sym_DASH_EQ] = ACTIONS(1098), + [anon_sym_LT_LT_EQ] = ACTIONS(1098), + [anon_sym_GT_GT_EQ] = ACTIONS(1098), + [anon_sym_AMP_EQ] = ACTIONS(1098), + [anon_sym_CARET_EQ] = ACTIONS(1098), + [anon_sym_PIPE_EQ] = ACTIONS(1098), + [anon_sym_AMP] = ACTIONS(1100), + [anon_sym_PIPE_PIPE] = ACTIONS(1102), + [anon_sym_AMP_AMP] = ACTIONS(1104), + [anon_sym_PIPE] = ACTIONS(1106), + [anon_sym_CARET] = ACTIONS(1108), + [anon_sym_EQ_EQ] = ACTIONS(1110), + [anon_sym_BANG_EQ] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1112), + [anon_sym_GT] = ACTIONS(1112), + [anon_sym_LT_EQ] = ACTIONS(1114), + [anon_sym_GT_EQ] = ACTIONS(1114), + [anon_sym_LT_LT] = ACTIONS(1116), + [anon_sym_GT_GT] = ACTIONS(1116), + [anon_sym_PLUS] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1118), + [anon_sym_SLASH] = ACTIONS(1090), + [anon_sym_PERCENT] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1081] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2900), - [sym_preproc_directive] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_typedef] = ACTIONS(2900), - [anon_sym_extern] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_auto] = ACTIONS(2900), - [anon_sym_register] = ACTIONS(2900), - [anon_sym_inline] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_restrict] = ACTIONS(2900), - [anon_sym_volatile] = ACTIONS(2900), - [anon_sym__Atomic] = ACTIONS(2900), - [anon_sym_unsigned] = ACTIONS(2900), - [anon_sym_long] = ACTIONS(2900), - [anon_sym_short] = ACTIONS(2900), - [sym_primitive_type] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_switch] = ACTIONS(2900), - [anon_sym_case] = ACTIONS(2900), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_goto] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_sizeof] = ACTIONS(2900), - [sym_number_literal] = ACTIONS(2902), - [sym_char_literal] = ACTIONS(2902), - [sym_string_literal] = ACTIONS(2902), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_null] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2900), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1142), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_RBRACK] = ACTIONS(3376), + [anon_sym_EQ] = ACTIONS(1144), + [anon_sym_QMARK] = ACTIONS(1146), + [anon_sym_STAR_EQ] = ACTIONS(1148), + [anon_sym_SLASH_EQ] = ACTIONS(1148), + [anon_sym_PERCENT_EQ] = ACTIONS(1148), + [anon_sym_PLUS_EQ] = ACTIONS(1148), + [anon_sym_DASH_EQ] = ACTIONS(1148), + [anon_sym_LT_LT_EQ] = ACTIONS(1148), + [anon_sym_GT_GT_EQ] = ACTIONS(1148), + [anon_sym_AMP_EQ] = ACTIONS(1148), + [anon_sym_CARET_EQ] = ACTIONS(1148), + [anon_sym_PIPE_EQ] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1152), + [anon_sym_AMP_AMP] = ACTIONS(1154), + [anon_sym_PIPE] = ACTIONS(1156), + [anon_sym_CARET] = ACTIONS(1158), + [anon_sym_EQ_EQ] = ACTIONS(1160), + [anon_sym_BANG_EQ] = ACTIONS(1160), + [anon_sym_LT] = ACTIONS(1162), + [anon_sym_GT] = ACTIONS(1162), + [anon_sym_LT_EQ] = ACTIONS(1164), + [anon_sym_GT_EQ] = ACTIONS(1164), + [anon_sym_LT_LT] = ACTIONS(1166), + [anon_sym_GT_GT] = ACTIONS(1166), + [anon_sym_PLUS] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1142), + [anon_sym_PERCENT] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1082] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(3378), + [anon_sym_RPAREN] = ACTIONS(3378), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_RBRACK] = ACTIONS(3378), + [anon_sym_EQ] = ACTIONS(3380), + [anon_sym_COLON] = ACTIONS(3378), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_STAR_EQ] = ACTIONS(3378), + [anon_sym_SLASH_EQ] = ACTIONS(3378), + [anon_sym_PERCENT_EQ] = ACTIONS(3378), + [anon_sym_PLUS_EQ] = ACTIONS(3378), + [anon_sym_DASH_EQ] = ACTIONS(3378), + [anon_sym_LT_LT_EQ] = ACTIONS(3378), + [anon_sym_GT_GT_EQ] = ACTIONS(3378), + [anon_sym_AMP_EQ] = ACTIONS(3378), + [anon_sym_CARET_EQ] = ACTIONS(3378), + [anon_sym_PIPE_EQ] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_PIPE_PIPE] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3380), + [anon_sym_CARET] = ACTIONS(3380), + [anon_sym_EQ_EQ] = ACTIONS(3378), + [anon_sym_BANG_EQ] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_GT] = ACTIONS(3380), + [anon_sym_LT_EQ] = ACTIONS(3378), + [anon_sym_GT_EQ] = ACTIONS(3378), + [anon_sym_LT_LT] = ACTIONS(3380), + [anon_sym_GT_GT] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3380), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_DASH_GT] = ACTIONS(3378), [sym_comment] = ACTIONS(39), }, [1083] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3371), + [sym__expression] = STATE(960), + [sym_conditional_expression] = STATE(960), + [sym_assignment_expression] = STATE(960), + [sym_pointer_expression] = STATE(960), + [sym_logical_expression] = STATE(960), + [sym_bitwise_expression] = STATE(960), + [sym_equality_expression] = STATE(960), + [sym_relational_expression] = STATE(960), + [sym_shift_expression] = STATE(960), + [sym_math_expression] = STATE(960), + [sym_cast_expression] = STATE(960), + [sym_sizeof_expression] = STATE(960), + [sym_subscript_expression] = STATE(960), + [sym_call_expression] = STATE(960), + [sym_field_expression] = STATE(960), + [sym_compound_literal_expression] = STATE(960), + [sym_parenthesized_expression] = STATE(960), + [sym_initializer_list] = STATE(961), + [sym_initializer_pair] = STATE(961), + [sym_subscript_designator] = STATE(493), + [sym_field_designator] = STATE(493), + [sym_concatenated_string] = STATE(960), + [aux_sym_initializer_pair_repeat1] = STATE(493), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_TILDE] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(781), + [anon_sym_DASH] = ACTIONS(781), + [anon_sym_DASH_DASH] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(783), + [anon_sym_sizeof] = ACTIONS(785), + [anon_sym_DOT] = ACTIONS(1180), + [sym_number_literal] = ACTIONS(2623), + [sym_char_literal] = ACTIONS(2623), + [sym_string_literal] = ACTIONS(789), + [sym_true] = ACTIONS(2625), + [sym_false] = ACTIONS(2625), + [sym_null] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2625), [sym_comment] = ACTIONS(39), }, [1084] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2286), - [sym_preproc_directive] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_typedef] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2286), - [anon_sym_auto] = ACTIONS(2286), - [anon_sym_register] = ACTIONS(2286), - [anon_sym_inline] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [anon_sym_restrict] = ACTIONS(2286), - [anon_sym_volatile] = ACTIONS(2286), - [anon_sym__Atomic] = ACTIONS(2286), - [anon_sym_unsigned] = ACTIONS(2286), - [anon_sym_long] = ACTIONS(2286), - [anon_sym_short] = ACTIONS(2286), - [sym_primitive_type] = ACTIONS(2286), - [anon_sym_enum] = ACTIONS(2286), - [anon_sym_struct] = ACTIONS(2286), - [anon_sym_union] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2286), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_do] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_goto] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2286), - [anon_sym_DASH] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_sizeof] = ACTIONS(2286), - [sym_number_literal] = ACTIONS(2288), - [sym_char_literal] = ACTIONS(2288), - [sym_string_literal] = ACTIONS(2288), - [sym_true] = ACTIONS(2286), - [sym_false] = ACTIONS(2286), - [sym_null] = ACTIONS(2286), - [sym_identifier] = ACTIONS(2286), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(3376), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1331), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(1349), + [anon_sym_LT_LT] = ACTIONS(1351), + [anon_sym_GT_GT] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1085] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3373), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1086] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3375), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(3376), + [anon_sym_RPAREN] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1087] = { - [sym_preproc_include] = STATE(877), - [sym_preproc_def] = STATE(877), - [sym_preproc_function_def] = STATE(877), - [sym_preproc_call] = STATE(877), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(1158), - [sym_preproc_elif_in_compound_statement] = STATE(1159), - [sym_declaration] = STATE(877), - [sym_type_definition] = STATE(877), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(877), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2810), + [sym_preproc_directive] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2810), + [anon_sym_extern] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2810), + [anon_sym_auto] = ACTIONS(2810), + [anon_sym_register] = ACTIONS(2810), + [anon_sym_inline] = ACTIONS(2810), + [anon_sym_const] = ACTIONS(2810), + [anon_sym_restrict] = ACTIONS(2810), + [anon_sym_volatile] = ACTIONS(2810), + [anon_sym__Atomic] = ACTIONS(2810), + [anon_sym_unsigned] = ACTIONS(2810), + [anon_sym_long] = ACTIONS(2810), + [anon_sym_short] = ACTIONS(2810), + [sym_primitive_type] = ACTIONS(2810), + [anon_sym_enum] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2810), + [anon_sym_union] = ACTIONS(2810), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_switch] = ACTIONS(2810), + [anon_sym_case] = ACTIONS(2810), + [anon_sym_default] = ACTIONS(2810), + [anon_sym_while] = ACTIONS(2810), + [anon_sym_do] = ACTIONS(2810), + [anon_sym_for] = ACTIONS(2810), + [anon_sym_return] = ACTIONS(2810), + [anon_sym_break] = ACTIONS(2810), + [anon_sym_continue] = ACTIONS(2810), + [anon_sym_goto] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_TILDE] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2812), + [anon_sym_sizeof] = ACTIONS(2810), + [sym_number_literal] = ACTIONS(2812), + [sym_char_literal] = ACTIONS(2812), + [sym_string_literal] = ACTIONS(2812), + [sym_true] = ACTIONS(2810), + [sym_false] = ACTIONS(2810), + [sym_null] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2810), + [sym_comment] = ACTIONS(39), + }, + [1088] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2816), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2814), + [sym_preproc_directive] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2814), + [anon_sym_extern] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2814), + [anon_sym_auto] = ACTIONS(2814), + [anon_sym_register] = ACTIONS(2814), + [anon_sym_inline] = ACTIONS(2814), + [anon_sym_const] = ACTIONS(2814), + [anon_sym_restrict] = ACTIONS(2814), + [anon_sym_volatile] = ACTIONS(2814), + [anon_sym__Atomic] = ACTIONS(2814), + [anon_sym_unsigned] = ACTIONS(2814), + [anon_sym_long] = ACTIONS(2814), + [anon_sym_short] = ACTIONS(2814), + [sym_primitive_type] = ACTIONS(2814), + [anon_sym_enum] = ACTIONS(2814), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_union] = ACTIONS(2814), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_switch] = ACTIONS(2814), + [anon_sym_case] = ACTIONS(2814), + [anon_sym_default] = ACTIONS(2814), + [anon_sym_while] = ACTIONS(2814), + [anon_sym_do] = ACTIONS(2814), + [anon_sym_for] = ACTIONS(2814), + [anon_sym_return] = ACTIONS(2814), + [anon_sym_break] = ACTIONS(2814), + [anon_sym_continue] = ACTIONS(2814), + [anon_sym_goto] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_TILDE] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2816), + [anon_sym_PLUS_PLUS] = ACTIONS(2816), + [anon_sym_sizeof] = ACTIONS(2814), + [sym_number_literal] = ACTIONS(2816), + [sym_char_literal] = ACTIONS(2816), + [sym_string_literal] = ACTIONS(2816), + [sym_true] = ACTIONS(2814), + [sym_false] = ACTIONS(2814), + [sym_null] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2814), + [sym_comment] = ACTIONS(39), + }, + [1089] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2818), + [anon_sym_LPAREN] = ACTIONS(2820), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2818), + [sym_preproc_directive] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2818), + [anon_sym_extern] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2818), + [anon_sym_auto] = ACTIONS(2818), + [anon_sym_register] = ACTIONS(2818), + [anon_sym_inline] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2818), + [anon_sym_restrict] = ACTIONS(2818), + [anon_sym_volatile] = ACTIONS(2818), + [anon_sym__Atomic] = ACTIONS(2818), + [anon_sym_unsigned] = ACTIONS(2818), + [anon_sym_long] = ACTIONS(2818), + [anon_sym_short] = ACTIONS(2818), + [sym_primitive_type] = ACTIONS(2818), + [anon_sym_enum] = ACTIONS(2818), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2818), + [anon_sym_if] = ACTIONS(2818), + [anon_sym_switch] = ACTIONS(2818), + [anon_sym_case] = ACTIONS(2818), + [anon_sym_default] = ACTIONS(2818), + [anon_sym_while] = ACTIONS(2818), + [anon_sym_do] = ACTIONS(2818), + [anon_sym_for] = ACTIONS(2818), + [anon_sym_return] = ACTIONS(2818), + [anon_sym_break] = ACTIONS(2818), + [anon_sym_continue] = ACTIONS(2818), + [anon_sym_goto] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2820), + [anon_sym_sizeof] = ACTIONS(2818), + [sym_number_literal] = ACTIONS(2820), + [sym_char_literal] = ACTIONS(2820), + [sym_string_literal] = ACTIONS(2820), + [sym_true] = ACTIONS(2818), + [sym_false] = ACTIONS(2818), + [sym_null] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2818), + [sym_comment] = ACTIONS(39), + }, + [1090] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3382), + [sym_comment] = ACTIONS(39), + }, + [1091] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3384), + [sym_comment] = ACTIONS(39), + }, + [1092] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2897), + [anon_sym_LPAREN] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2897), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2897), + [anon_sym_extern] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2897), + [anon_sym_auto] = ACTIONS(2897), + [anon_sym_register] = ACTIONS(2897), + [anon_sym_inline] = ACTIONS(2897), + [anon_sym_const] = ACTIONS(2897), + [anon_sym_restrict] = ACTIONS(2897), + [anon_sym_volatile] = ACTIONS(2897), + [anon_sym__Atomic] = ACTIONS(2897), + [anon_sym_unsigned] = ACTIONS(2897), + [anon_sym_long] = ACTIONS(2897), + [anon_sym_short] = ACTIONS(2897), + [sym_primitive_type] = ACTIONS(2897), + [anon_sym_enum] = ACTIONS(2897), + [anon_sym_struct] = ACTIONS(2897), + [anon_sym_union] = ACTIONS(2897), + [anon_sym_if] = ACTIONS(2897), + [anon_sym_switch] = ACTIONS(2897), + [anon_sym_case] = ACTIONS(2897), + [anon_sym_default] = ACTIONS(2897), + [anon_sym_while] = ACTIONS(2897), + [anon_sym_do] = ACTIONS(2897), + [anon_sym_for] = ACTIONS(2897), + [anon_sym_return] = ACTIONS(2897), + [anon_sym_break] = ACTIONS(2897), + [anon_sym_continue] = ACTIONS(2897), + [anon_sym_goto] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_sizeof] = ACTIONS(2897), + [sym_number_literal] = ACTIONS(2899), + [sym_char_literal] = ACTIONS(2899), + [sym_string_literal] = ACTIONS(2899), + [sym_true] = ACTIONS(2897), + [sym_false] = ACTIONS(2897), + [sym_null] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2897), + [sym_comment] = ACTIONS(39), + }, + [1093] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2903), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2901), + [sym_preproc_directive] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym_typedef] = ACTIONS(2901), + [anon_sym_extern] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_auto] = ACTIONS(2901), + [anon_sym_register] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_restrict] = ACTIONS(2901), + [anon_sym_volatile] = ACTIONS(2901), + [anon_sym__Atomic] = ACTIONS(2901), + [anon_sym_unsigned] = ACTIONS(2901), + [anon_sym_long] = ACTIONS(2901), + [anon_sym_short] = ACTIONS(2901), + [sym_primitive_type] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_union] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_case] = ACTIONS(2901), + [anon_sym_default] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_goto] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_sizeof] = ACTIONS(2901), + [sym_number_literal] = ACTIONS(2903), + [sym_char_literal] = ACTIONS(2903), + [sym_string_literal] = ACTIONS(2903), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [sym_null] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2901), + [sym_comment] = ACTIONS(39), + }, + [1094] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2907), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2905), + [sym_preproc_directive] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_auto] = ACTIONS(2905), + [anon_sym_register] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym_unsigned] = ACTIONS(2905), + [anon_sym_long] = ACTIONS(2905), + [anon_sym_short] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_case] = ACTIONS(2905), + [anon_sym_default] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_goto] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2907), + [sym_char_literal] = ACTIONS(2907), + [sym_string_literal] = ACTIONS(2907), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_null] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2905), + [sym_comment] = ACTIONS(39), + }, + [1095] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3386), + [sym_comment] = ACTIONS(39), + }, + [1096] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3388), + [sym_comment] = ACTIONS(39), + }, + [1097] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2913), + [sym_preproc_directive] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_typedef] = ACTIONS(2913), + [anon_sym_extern] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_auto] = ACTIONS(2913), + [anon_sym_register] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_restrict] = ACTIONS(2913), + [anon_sym_volatile] = ACTIONS(2913), + [anon_sym__Atomic] = ACTIONS(2913), + [anon_sym_unsigned] = ACTIONS(2913), + [anon_sym_long] = ACTIONS(2913), + [anon_sym_short] = ACTIONS(2913), + [sym_primitive_type] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_union] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_goto] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_sizeof] = ACTIONS(2913), + [sym_number_literal] = ACTIONS(2915), + [sym_char_literal] = ACTIONS(2915), + [sym_string_literal] = ACTIONS(2915), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_null] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2913), + [sym_comment] = ACTIONS(39), + }, + [1098] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2917), + [sym_preproc_directive] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym_typedef] = ACTIONS(2917), + [anon_sym_extern] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2917), + [anon_sym_auto] = ACTIONS(2917), + [anon_sym_register] = ACTIONS(2917), + [anon_sym_inline] = ACTIONS(2917), + [anon_sym_const] = ACTIONS(2917), + [anon_sym_restrict] = ACTIONS(2917), + [anon_sym_volatile] = ACTIONS(2917), + [anon_sym__Atomic] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(2917), + [anon_sym_long] = ACTIONS(2917), + [anon_sym_short] = ACTIONS(2917), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_union] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_switch] = ACTIONS(2917), + [anon_sym_case] = ACTIONS(2917), + [anon_sym_default] = ACTIONS(2917), + [anon_sym_while] = ACTIONS(2917), + [anon_sym_do] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(2917), + [sym_number_literal] = ACTIONS(2919), + [sym_char_literal] = ACTIONS(2919), + [sym_string_literal] = ACTIONS(2919), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [sym_null] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(39), + }, + [1099] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2921), + [sym_preproc_directive] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_auto] = ACTIONS(2921), + [anon_sym_register] = ACTIONS(2921), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_restrict] = ACTIONS(2921), + [anon_sym_volatile] = ACTIONS(2921), + [anon_sym__Atomic] = ACTIONS(2921), + [anon_sym_unsigned] = ACTIONS(2921), + [anon_sym_long] = ACTIONS(2921), + [anon_sym_short] = ACTIONS(2921), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_switch] = ACTIONS(2921), + [anon_sym_case] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_do] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_goto] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2921), + [sym_number_literal] = ACTIONS(2923), + [sym_char_literal] = ACTIONS(2923), + [sym_string_literal] = ACTIONS(2923), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [sym_null] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2921), + [sym_comment] = ACTIONS(39), + }, + [1100] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3390), + [sym_comment] = ACTIONS(39), + }, + [1101] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3392), + [sym_comment] = ACTIONS(39), + }, + [1102] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2307), + [sym_preproc_directive] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_typedef] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_auto] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_inline] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_restrict] = ACTIONS(2307), + [anon_sym_volatile] = ACTIONS(2307), + [anon_sym__Atomic] = ACTIONS(2307), + [anon_sym_unsigned] = ACTIONS(2307), + [anon_sym_long] = ACTIONS(2307), + [anon_sym_short] = ACTIONS(2307), + [sym_primitive_type] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_switch] = ACTIONS(2307), + [anon_sym_case] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_goto] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_TILDE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_DASH_DASH] = ACTIONS(2309), + [anon_sym_PLUS_PLUS] = ACTIONS(2309), + [anon_sym_sizeof] = ACTIONS(2307), + [sym_number_literal] = ACTIONS(2309), + [sym_char_literal] = ACTIONS(2309), + [sym_string_literal] = ACTIONS(2309), + [sym_true] = ACTIONS(2307), + [sym_false] = ACTIONS(2307), + [sym_null] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2307), + [sym_comment] = ACTIONS(39), + }, + [1103] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3394), + [sym_comment] = ACTIONS(39), + }, + [1104] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3396), + [sym_comment] = ACTIONS(39), + }, + [1105] = { + [sym_preproc_include] = STATE(894), + [sym_preproc_def] = STATE(894), + [sym_preproc_function_def] = STATE(894), + [sym_preproc_call] = STATE(894), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(1176), + [sym_preproc_elif_in_compound_statement] = STATE(1177), + [sym_declaration] = STATE(894), + [sym_type_definition] = STATE(894), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(894), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -42243,57 +42589,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(877), + [sym_labeled_statement] = STATE(894), + [sym_expression_statement] = STATE(894), + [sym_if_statement] = STATE(894), + [sym_switch_statement] = STATE(894), + [sym_case_statement] = STATE(894), + [sym_while_statement] = STATE(894), + [sym_do_statement] = STATE(894), + [sym_for_statement] = STATE(894), + [sym_return_statement] = STATE(894), + [sym_break_statement] = STATE(894), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(894), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(894), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(877), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(894), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3377), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3398), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -42309,112 +42655,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [1088] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2372), - [anon_sym_LPAREN] = ACTIONS(2374), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2372), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2372), - [sym_preproc_directive] = ACTIONS(2372), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_typedef] = ACTIONS(2372), - [anon_sym_extern] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2372), - [anon_sym_auto] = ACTIONS(2372), - [anon_sym_register] = ACTIONS(2372), - [anon_sym_inline] = ACTIONS(2372), - [anon_sym_const] = ACTIONS(2372), - [anon_sym_restrict] = ACTIONS(2372), - [anon_sym_volatile] = ACTIONS(2372), - [anon_sym__Atomic] = ACTIONS(2372), - [anon_sym_unsigned] = ACTIONS(2372), - [anon_sym_long] = ACTIONS(2372), - [anon_sym_short] = ACTIONS(2372), - [sym_primitive_type] = ACTIONS(2372), - [anon_sym_enum] = ACTIONS(2372), - [anon_sym_struct] = ACTIONS(2372), - [anon_sym_union] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2372), - [anon_sym_switch] = ACTIONS(2372), - [anon_sym_case] = ACTIONS(2372), - [anon_sym_default] = ACTIONS(2372), - [anon_sym_while] = ACTIONS(2372), - [anon_sym_do] = ACTIONS(2372), - [anon_sym_for] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2372), - [anon_sym_break] = ACTIONS(2372), - [anon_sym_continue] = ACTIONS(2372), - [anon_sym_goto] = ACTIONS(2372), - [anon_sym_AMP] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2372), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_sizeof] = ACTIONS(2372), - [sym_number_literal] = ACTIONS(2374), - [sym_char_literal] = ACTIONS(2374), - [sym_string_literal] = ACTIONS(2374), - [sym_true] = ACTIONS(2372), - [sym_false] = ACTIONS(2372), - [sym_null] = ACTIONS(2372), - [sym_identifier] = ACTIONS(2372), + [1106] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2395), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2393), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2393), + [sym_preproc_directive] = ACTIONS(2393), + [anon_sym_SEMI] = ACTIONS(2395), + [anon_sym_typedef] = ACTIONS(2393), + [anon_sym_extern] = ACTIONS(2393), + [anon_sym_LBRACE] = ACTIONS(2395), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_static] = ACTIONS(2393), + [anon_sym_auto] = ACTIONS(2393), + [anon_sym_register] = ACTIONS(2393), + [anon_sym_inline] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [anon_sym_restrict] = ACTIONS(2393), + [anon_sym_volatile] = ACTIONS(2393), + [anon_sym__Atomic] = ACTIONS(2393), + [anon_sym_unsigned] = ACTIONS(2393), + [anon_sym_long] = ACTIONS(2393), + [anon_sym_short] = ACTIONS(2393), + [sym_primitive_type] = ACTIONS(2393), + [anon_sym_enum] = ACTIONS(2393), + [anon_sym_struct] = ACTIONS(2393), + [anon_sym_union] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_switch] = ACTIONS(2393), + [anon_sym_case] = ACTIONS(2393), + [anon_sym_default] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_goto] = ACTIONS(2393), + [anon_sym_AMP] = ACTIONS(2395), + [anon_sym_BANG] = ACTIONS(2395), + [anon_sym_TILDE] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(2393), + [anon_sym_DASH] = ACTIONS(2393), + [anon_sym_DASH_DASH] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2395), + [anon_sym_sizeof] = ACTIONS(2393), + [sym_number_literal] = ACTIONS(2395), + [sym_char_literal] = ACTIONS(2395), + [sym_string_literal] = ACTIONS(2395), + [sym_true] = ACTIONS(2393), + [sym_false] = ACTIONS(2393), + [sym_null] = ACTIONS(2393), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(39), }, - [1089] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3379), + [1107] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3400), [sym_comment] = ACTIONS(39), }, - [1090] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3381), + [1108] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3402), [sym_comment] = ACTIONS(39), }, - [1091] = { - [sym_preproc_include] = STATE(877), - [sym_preproc_def] = STATE(877), - [sym_preproc_function_def] = STATE(877), - [sym_preproc_call] = STATE(877), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(1163), - [sym_preproc_elif_in_compound_statement] = STATE(1164), - [sym_declaration] = STATE(877), - [sym_type_definition] = STATE(877), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(877), + [1109] = { + [sym_preproc_include] = STATE(894), + [sym_preproc_def] = STATE(894), + [sym_preproc_function_def] = STATE(894), + [sym_preproc_call] = STATE(894), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(1181), + [sym_preproc_elif_in_compound_statement] = STATE(1182), + [sym_declaration] = STATE(894), + [sym_type_definition] = STATE(894), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(894), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -42422,57 +42768,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(877), + [sym_labeled_statement] = STATE(894), + [sym_expression_statement] = STATE(894), + [sym_if_statement] = STATE(894), + [sym_switch_statement] = STATE(894), + [sym_case_statement] = STATE(894), + [sym_while_statement] = STATE(894), + [sym_do_statement] = STATE(894), + [sym_for_statement] = STATE(894), + [sym_return_statement] = STATE(894), + [sym_break_statement] = STATE(894), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(894), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(894), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(877), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(894), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3404), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -42488,112 +42834,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [1092] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2384), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2382), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2382), - [sym_preproc_directive] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_typedef] = ACTIONS(2382), - [anon_sym_extern] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_auto] = ACTIONS(2382), - [anon_sym_register] = ACTIONS(2382), - [anon_sym_inline] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_restrict] = ACTIONS(2382), - [anon_sym_volatile] = ACTIONS(2382), - [anon_sym__Atomic] = ACTIONS(2382), - [anon_sym_unsigned] = ACTIONS(2382), - [anon_sym_long] = ACTIONS(2382), - [anon_sym_short] = ACTIONS(2382), - [sym_primitive_type] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(2382), - [anon_sym_union] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_case] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_goto] = ACTIONS(2382), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_TILDE] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2384), - [anon_sym_PLUS_PLUS] = ACTIONS(2384), - [anon_sym_sizeof] = ACTIONS(2382), - [sym_number_literal] = ACTIONS(2384), - [sym_char_literal] = ACTIONS(2384), - [sym_string_literal] = ACTIONS(2384), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_identifier] = ACTIONS(2382), + [1110] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2403), + [sym_preproc_directive] = ACTIONS(2403), + [anon_sym_SEMI] = ACTIONS(2405), + [anon_sym_typedef] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_auto] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_inline] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [anon_sym_restrict] = ACTIONS(2403), + [anon_sym_volatile] = ACTIONS(2403), + [anon_sym__Atomic] = ACTIONS(2403), + [anon_sym_unsigned] = ACTIONS(2403), + [anon_sym_long] = ACTIONS(2403), + [anon_sym_short] = ACTIONS(2403), + [sym_primitive_type] = ACTIONS(2403), + [anon_sym_enum] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(2403), + [anon_sym_union] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_switch] = ACTIONS(2403), + [anon_sym_case] = ACTIONS(2403), + [anon_sym_default] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_goto] = ACTIONS(2403), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_sizeof] = ACTIONS(2403), + [sym_number_literal] = ACTIONS(2405), + [sym_char_literal] = ACTIONS(2405), + [sym_string_literal] = ACTIONS(2405), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), + [sym_identifier] = ACTIONS(2403), [sym_comment] = ACTIONS(39), }, - [1093] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3385), + [1111] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3406), [sym_comment] = ACTIONS(39), }, - [1094] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3387), + [1112] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3408), [sym_comment] = ACTIONS(39), }, - [1095] = { - [sym_preproc_include] = STATE(877), - [sym_preproc_def] = STATE(877), - [sym_preproc_function_def] = STATE(877), - [sym_preproc_call] = STATE(877), - [sym_preproc_if_in_compound_statement] = STATE(639), - [sym_preproc_ifdef_in_compound_statement] = STATE(640), - [sym_preproc_else_in_compound_statement] = STATE(1168), - [sym_preproc_elif_in_compound_statement] = STATE(1169), - [sym_declaration] = STATE(877), - [sym_type_definition] = STATE(877), - [sym__declaration_specifiers] = STATE(643), - [sym_compound_statement] = STATE(877), + [1113] = { + [sym_preproc_include] = STATE(894), + [sym_preproc_def] = STATE(894), + [sym_preproc_function_def] = STATE(894), + [sym_preproc_call] = STATE(894), + [sym_preproc_if_in_compound_statement] = STATE(654), + [sym_preproc_ifdef_in_compound_statement] = STATE(655), + [sym_preproc_else_in_compound_statement] = STATE(1186), + [sym_preproc_elif_in_compound_statement] = STATE(1187), + [sym_declaration] = STATE(894), + [sym_type_definition] = STATE(894), + [sym__declaration_specifiers] = STATE(658), + [sym_compound_statement] = STATE(894), [sym_storage_class_specifier] = STATE(20), [sym_type_qualifier] = STATE(20), [sym__type_specifier] = STATE(18), @@ -42601,57 +42947,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(18), [sym_struct_specifier] = STATE(18), [sym_union_specifier] = STATE(18), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym__empty_declaration] = STATE(877), + [sym_labeled_statement] = STATE(894), + [sym_expression_statement] = STATE(894), + [sym_if_statement] = STATE(894), + [sym_switch_statement] = STATE(894), + [sym_case_statement] = STATE(894), + [sym_while_statement] = STATE(894), + [sym_do_statement] = STATE(894), + [sym_for_statement] = STATE(894), + [sym_return_statement] = STATE(894), + [sym_break_statement] = STATE(894), + [sym_continue_statement] = STATE(894), + [sym_goto_statement] = STATE(894), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [sym__empty_declaration] = STATE(894), [sym_macro_type_specifier] = STATE(18), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(877), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(894), [aux_sym__declaration_specifiers_repeat1] = STATE(20), [aux_sym_sized_type_specifier_repeat1] = STATE(21), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(127), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(528), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1519), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1523), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1525), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1527), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(532), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1533), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3410), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1537), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1543), [sym_preproc_directive] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_SEMI] = ACTIONS(1545), [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -42667,121 +43013,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(1573), [sym_comment] = ACTIONS(39), }, - [1096] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1114] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1097] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1115] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1098] = { - [sym_declaration] = STATE(1172), - [sym_type_definition] = STATE(1172), - [sym__declaration_specifiers] = STATE(1101), - [sym_compound_statement] = STATE(1172), + [1116] = { + [sym_declaration] = STATE(1190), + [sym_type_definition] = STATE(1190), + [sym__declaration_specifiers] = STATE(1119), + [sym_compound_statement] = STATE(1190), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -42789,46 +43135,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(1172), - [sym_expression_statement] = STATE(1172), - [sym_if_statement] = STATE(1172), - [sym_switch_statement] = STATE(1172), - [sym_case_statement] = STATE(1172), - [sym_while_statement] = STATE(1172), - [sym_do_statement] = STATE(1172), - [sym_for_statement] = STATE(1172), - [sym_return_statement] = STATE(1172), - [sym_break_statement] = STATE(1172), - [sym_continue_statement] = STATE(1172), - [sym_goto_statement] = STATE(1172), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), + [sym_labeled_statement] = STATE(1190), + [sym_expression_statement] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_case_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_goto_statement] = STATE(1190), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), [anon_sym_typedef] = ACTIONS(362), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -42844,42 +43190,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3151), [sym_comment] = ACTIONS(39), }, - [1099] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), + [1117] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_static] = ACTIONS(86), [anon_sym_auto] = ACTIONS(86), [anon_sym_register] = ACTIONS(86), @@ -42888,978 +43234,154 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(86), [anon_sym_volatile] = ACTIONS(86), [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(2749), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(2770), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [1100] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), - [sym_preproc_directive] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_typedef] = ACTIONS(2480), - [anon_sym_extern] = ACTIONS(2480), - [anon_sym_LBRACE] = ACTIONS(2482), - [anon_sym_STAR] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2480), - [anon_sym_auto] = ACTIONS(2480), - [anon_sym_register] = ACTIONS(2480), - [anon_sym_inline] = ACTIONS(2480), - [anon_sym_const] = ACTIONS(2480), - [anon_sym_restrict] = ACTIONS(2480), - [anon_sym_volatile] = ACTIONS(2480), - [anon_sym__Atomic] = ACTIONS(2480), - [anon_sym_unsigned] = ACTIONS(2480), - [anon_sym_long] = ACTIONS(2480), - [anon_sym_short] = ACTIONS(2480), - [sym_primitive_type] = ACTIONS(2480), - [anon_sym_enum] = ACTIONS(2480), - [anon_sym_struct] = ACTIONS(2480), - [anon_sym_union] = ACTIONS(2480), - [anon_sym_if] = ACTIONS(2480), - [anon_sym_else] = ACTIONS(2480), - [anon_sym_switch] = ACTIONS(2480), - [anon_sym_case] = ACTIONS(2480), - [anon_sym_default] = ACTIONS(2480), - [anon_sym_while] = ACTIONS(2480), - [anon_sym_do] = ACTIONS(2480), - [anon_sym_for] = ACTIONS(2480), - [anon_sym_return] = ACTIONS(2480), - [anon_sym_break] = ACTIONS(2480), - [anon_sym_continue] = ACTIONS(2480), - [anon_sym_goto] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(2482), - [anon_sym_TILDE] = ACTIONS(2482), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2482), - [anon_sym_PLUS_PLUS] = ACTIONS(2482), - [anon_sym_sizeof] = ACTIONS(2480), - [sym_number_literal] = ACTIONS(2482), - [sym_char_literal] = ACTIONS(2482), - [sym_string_literal] = ACTIONS(2482), - [sym_true] = ACTIONS(2480), - [sym_false] = ACTIONS(2480), - [sym_null] = ACTIONS(2480), - [sym_identifier] = ACTIONS(2480), - [sym_comment] = ACTIONS(39), - }, - [1101] = { - [sym__declarator] = STATE(996), - [sym_pointer_declarator] = STATE(996), - [sym_function_declarator] = STATE(996), - [sym_array_declarator] = STATE(996), - [sym_init_declarator] = STATE(297), - [anon_sym_LPAREN] = ACTIONS(90), - [anon_sym_STAR] = ACTIONS(520), - [sym_identifier] = ACTIONS(2751), - [sym_comment] = ACTIONS(39), - }, - [1102] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1103] = { - [anon_sym_LPAREN] = ACTIONS(3397), - [sym_comment] = ACTIONS(39), - }, - [1104] = { - [sym__expression] = STATE(1176), - [sym_conditional_expression] = STATE(1176), - [sym_assignment_expression] = STATE(1176), - [sym_pointer_expression] = STATE(1176), - [sym_logical_expression] = STATE(1176), - [sym_bitwise_expression] = STATE(1176), - [sym_equality_expression] = STATE(1176), - [sym_relational_expression] = STATE(1176), - [sym_shift_expression] = STATE(1176), - [sym_math_expression] = STATE(1176), - [sym_cast_expression] = STATE(1176), - [sym_sizeof_expression] = STATE(1176), - [sym_subscript_expression] = STATE(1176), - [sym_call_expression] = STATE(1176), - [sym_field_expression] = STATE(1176), - [sym_compound_literal_expression] = STATE(1176), - [sym_parenthesized_expression] = STATE(1176), - [sym_concatenated_string] = STATE(1176), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3401), - [sym_char_literal] = ACTIONS(3401), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_identifier] = ACTIONS(3403), - [sym_comment] = ACTIONS(39), - }, - [1105] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1106] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2518), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2518), - [sym_preproc_directive] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_typedef] = ACTIONS(2518), - [anon_sym_extern] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_STAR] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_auto] = ACTIONS(2518), - [anon_sym_register] = ACTIONS(2518), - [anon_sym_inline] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_restrict] = ACTIONS(2518), - [anon_sym_volatile] = ACTIONS(2518), - [anon_sym__Atomic] = ACTIONS(2518), - [anon_sym_unsigned] = ACTIONS(2518), - [anon_sym_long] = ACTIONS(2518), - [anon_sym_short] = ACTIONS(2518), - [sym_primitive_type] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - [anon_sym_struct] = ACTIONS(2518), - [anon_sym_union] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_case] = ACTIONS(2518), - [anon_sym_default] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_goto] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_sizeof] = ACTIONS(2518), - [sym_number_literal] = ACTIONS(2520), - [sym_char_literal] = ACTIONS(2520), - [sym_string_literal] = ACTIONS(2520), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_identifier] = ACTIONS(2518), - [sym_comment] = ACTIONS(39), - }, - [1107] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2524), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2522), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2522), - [sym_preproc_directive] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_typedef] = ACTIONS(2522), - [anon_sym_extern] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_auto] = ACTIONS(2522), - [anon_sym_register] = ACTIONS(2522), - [anon_sym_inline] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_restrict] = ACTIONS(2522), - [anon_sym_volatile] = ACTIONS(2522), - [anon_sym__Atomic] = ACTIONS(2522), - [anon_sym_unsigned] = ACTIONS(2522), - [anon_sym_long] = ACTIONS(2522), - [anon_sym_short] = ACTIONS(2522), - [sym_primitive_type] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_union] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_goto] = ACTIONS(2522), - [anon_sym_AMP] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_sizeof] = ACTIONS(2522), - [sym_number_literal] = ACTIONS(2524), - [sym_char_literal] = ACTIONS(2524), - [sym_string_literal] = ACTIONS(2524), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_identifier] = ACTIONS(2522), - [sym_comment] = ACTIONS(39), - }, - [1108] = { - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(2749), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_comment] = ACTIONS(39), - }, - [1109] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2537), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2535), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2535), - [sym_preproc_directive] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_typedef] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_auto] = ACTIONS(2535), - [anon_sym_register] = ACTIONS(2535), - [anon_sym_inline] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_restrict] = ACTIONS(2535), - [anon_sym_volatile] = ACTIONS(2535), - [anon_sym__Atomic] = ACTIONS(2535), - [anon_sym_unsigned] = ACTIONS(2535), - [anon_sym_long] = ACTIONS(2535), - [anon_sym_short] = ACTIONS(2535), - [sym_primitive_type] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_else] = ACTIONS(2535), - [anon_sym_switch] = ACTIONS(2535), - [anon_sym_case] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_do] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_goto] = ACTIONS(2535), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2537), - [anon_sym_TILDE] = ACTIONS(2537), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_DASH_DASH] = ACTIONS(2537), - [anon_sym_PLUS_PLUS] = ACTIONS(2537), - [anon_sym_sizeof] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2537), - [sym_char_literal] = ACTIONS(2537), - [sym_string_literal] = ACTIONS(2537), - [sym_true] = ACTIONS(2535), - [sym_false] = ACTIONS(2535), - [sym_null] = ACTIONS(2535), - [sym_identifier] = ACTIONS(2535), - [sym_comment] = ACTIONS(39), - }, - [1110] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3407), - [sym_comment] = ACTIONS(39), - }, - [1111] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3409), - [sym_comment] = ACTIONS(39), - }, - [1112] = { - [sym_compound_statement] = STATE(1185), - [sym_labeled_statement] = STATE(1185), - [sym_expression_statement] = STATE(1185), - [sym_if_statement] = STATE(1185), - [sym_switch_statement] = STATE(1185), - [sym_case_statement] = STATE(1185), - [sym_while_statement] = STATE(1185), - [sym_do_statement] = STATE(1185), - [sym_for_statement] = STATE(1185), - [sym_return_statement] = STATE(1185), - [sym_break_statement] = STATE(1185), - [sym_continue_statement] = STATE(1185), - [sym_goto_statement] = STATE(1185), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3423), - [sym_comment] = ACTIONS(39), - }, - [1113] = { - [sym_compound_statement] = STATE(1186), - [sym_labeled_statement] = STATE(1186), - [sym_expression_statement] = STATE(1186), - [sym_if_statement] = STATE(1186), - [sym_switch_statement] = STATE(1186), - [sym_case_statement] = STATE(1186), - [sym_while_statement] = STATE(1186), - [sym_do_statement] = STATE(1186), - [sym_for_statement] = STATE(1186), - [sym_return_statement] = STATE(1186), - [sym_break_statement] = STATE(1186), - [sym_continue_statement] = STATE(1186), - [sym_goto_statement] = STATE(1186), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(2787), - [sym_comment] = ACTIONS(39), - }, - [1114] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2975), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2975), - [anon_sym_extern] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2975), - [anon_sym_auto] = ACTIONS(2975), - [anon_sym_register] = ACTIONS(2975), - [anon_sym_inline] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2975), - [anon_sym_restrict] = ACTIONS(2975), - [anon_sym_volatile] = ACTIONS(2975), - [anon_sym__Atomic] = ACTIONS(2975), - [anon_sym_unsigned] = ACTIONS(2975), - [anon_sym_long] = ACTIONS(2975), - [anon_sym_short] = ACTIONS(2975), - [sym_primitive_type] = ACTIONS(2975), - [anon_sym_enum] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2975), - [anon_sym_union] = ACTIONS(2975), - [anon_sym_if] = ACTIONS(2975), - [anon_sym_else] = ACTIONS(2975), - [anon_sym_switch] = ACTIONS(2975), - [anon_sym_case] = ACTIONS(2975), - [anon_sym_default] = ACTIONS(2975), - [anon_sym_while] = ACTIONS(2975), - [anon_sym_do] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2975), - [anon_sym_return] = ACTIONS(2975), - [anon_sym_break] = ACTIONS(2975), - [anon_sym_continue] = ACTIONS(2975), - [anon_sym_goto] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_DASH_DASH] = ACTIONS(2977), - [anon_sym_PLUS_PLUS] = ACTIONS(2977), - [anon_sym_sizeof] = ACTIONS(2975), - [sym_number_literal] = ACTIONS(2977), - [sym_char_literal] = ACTIONS(2977), - [sym_string_literal] = ACTIONS(2977), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2975), - [sym_comment] = ACTIONS(39), - }, - [1115] = { - [sym_compound_statement] = STATE(1187), - [sym_labeled_statement] = STATE(1187), - [sym_expression_statement] = STATE(1187), - [sym_if_statement] = STATE(1187), - [sym_switch_statement] = STATE(1187), - [sym_case_statement] = STATE(1187), - [sym_while_statement] = STATE(1187), - [sym_do_statement] = STATE(1187), - [sym_for_statement] = STATE(1187), - [sym_return_statement] = STATE(1187), - [sym_break_statement] = STATE(1187), - [sym_continue_statement] = STATE(1187), - [sym_goto_statement] = STATE(1187), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(2787), - [sym_comment] = ACTIONS(39), - }, - [1116] = { - [sym__expression] = STATE(1188), - [sym_conditional_expression] = STATE(1188), - [sym_assignment_expression] = STATE(1188), - [sym_pointer_expression] = STATE(1188), - [sym_logical_expression] = STATE(1188), - [sym_bitwise_expression] = STATE(1188), - [sym_equality_expression] = STATE(1188), - [sym_relational_expression] = STATE(1188), - [sym_shift_expression] = STATE(1188), - [sym_math_expression] = STATE(1188), - [sym_cast_expression] = STATE(1188), - [sym_sizeof_expression] = STATE(1188), - [sym_subscript_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_field_expression] = STATE(1188), - [sym_compound_literal_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_concatenated_string] = STATE(1188), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3425), - [sym_char_literal] = ACTIONS(3425), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_identifier] = ACTIONS(3427), - [sym_comment] = ACTIONS(39), - }, - [1117] = { - [sym__expression] = STATE(1190), - [sym_conditional_expression] = STATE(1190), - [sym_assignment_expression] = STATE(1190), - [sym_pointer_expression] = STATE(1190), - [sym_logical_expression] = STATE(1190), - [sym_bitwise_expression] = STATE(1190), - [sym_equality_expression] = STATE(1190), - [sym_relational_expression] = STATE(1190), - [sym_shift_expression] = STATE(1190), - [sym_math_expression] = STATE(1190), - [sym_cast_expression] = STATE(1190), - [sym_sizeof_expression] = STATE(1190), - [sym_subscript_expression] = STATE(1190), - [sym_call_expression] = STATE(1190), - [sym_field_expression] = STATE(1190), - [sym_compound_literal_expression] = STATE(1190), - [sym_parenthesized_expression] = STATE(1190), - [sym_concatenated_string] = STATE(1190), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3429), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3431), - [sym_char_literal] = ACTIONS(3431), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_null] = ACTIONS(3433), - [sym_identifier] = ACTIONS(3433), - [sym_comment] = ACTIONS(39), - }, [1118] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2503), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2501), + [sym_preproc_directive] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_typedef] = ACTIONS(2501), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_auto] = ACTIONS(2501), + [anon_sym_register] = ACTIONS(2501), + [anon_sym_inline] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_restrict] = ACTIONS(2501), + [anon_sym_volatile] = ACTIONS(2501), + [anon_sym__Atomic] = ACTIONS(2501), + [anon_sym_unsigned] = ACTIONS(2501), + [anon_sym_long] = ACTIONS(2501), + [anon_sym_short] = ACTIONS(2501), + [sym_primitive_type] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_struct] = ACTIONS(2501), + [anon_sym_union] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_else] = ACTIONS(2501), + [anon_sym_switch] = ACTIONS(2501), + [anon_sym_case] = ACTIONS(2501), + [anon_sym_default] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_goto] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_DASH_DASH] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_sizeof] = ACTIONS(2501), + [sym_number_literal] = ACTIONS(2503), + [sym_char_literal] = ACTIONS(2503), + [sym_string_literal] = ACTIONS(2503), + [sym_true] = ACTIONS(2501), + [sym_false] = ACTIONS(2501), + [sym_null] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2501), [sym_comment] = ACTIONS(39), }, [1119] = { - [sym__expression] = STATE(1192), - [sym_conditional_expression] = STATE(1192), - [sym_assignment_expression] = STATE(1192), - [sym_pointer_expression] = STATE(1192), - [sym_logical_expression] = STATE(1192), - [sym_bitwise_expression] = STATE(1192), - [sym_equality_expression] = STATE(1192), - [sym_relational_expression] = STATE(1192), - [sym_shift_expression] = STATE(1192), - [sym_math_expression] = STATE(1192), - [sym_cast_expression] = STATE(1192), - [sym_sizeof_expression] = STATE(1192), - [sym_subscript_expression] = STATE(1192), - [sym_call_expression] = STATE(1192), - [sym_field_expression] = STATE(1192), - [sym_compound_literal_expression] = STATE(1192), - [sym_parenthesized_expression] = STATE(1192), - [sym_concatenated_string] = STATE(1192), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3437), - [sym_char_literal] = ACTIONS(3437), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3439), - [sym_false] = ACTIONS(3439), - [sym_null] = ACTIONS(3439), - [sym_identifier] = ACTIONS(3439), + [sym__declarator] = STATE(1014), + [sym_pointer_declarator] = STATE(1014), + [sym_function_declarator] = STATE(1014), + [sym_array_declarator] = STATE(1014), + [sym_init_declarator] = STATE(302), + [anon_sym_LPAREN] = ACTIONS(90), + [anon_sym_STAR] = ACTIONS(524), + [sym_identifier] = ACTIONS(2772), [sym_comment] = ACTIONS(39), }, [1120] = { - [sym__expression] = STATE(829), - [sym_conditional_expression] = STATE(829), - [sym_assignment_expression] = STATE(829), - [sym_pointer_expression] = STATE(829), - [sym_logical_expression] = STATE(829), - [sym_bitwise_expression] = STATE(829), - [sym_equality_expression] = STATE(829), - [sym_relational_expression] = STATE(829), - [sym_shift_expression] = STATE(829), - [sym_math_expression] = STATE(829), - [sym_cast_expression] = STATE(829), - [sym_sizeof_expression] = STATE(829), - [sym_subscript_expression] = STATE(829), - [sym_call_expression] = STATE(829), - [sym_field_expression] = STATE(829), - [sym_compound_literal_expression] = STATE(829), - [sym_parenthesized_expression] = STATE(829), - [sym_initializer_list] = STATE(830), - [sym_concatenated_string] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(610), - [anon_sym_STAR] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_STAR_EQ] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3011), - [anon_sym_PERCENT_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3011), - [anon_sym_LT_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_GT_EQ] = ACTIONS(3011), - [anon_sym_AMP_EQ] = ACTIONS(3011), - [anon_sym_CARET_EQ] = ACTIONS(3011), - [anon_sym_PIPE_EQ] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_DASH_GT] = ACTIONS(3011), - [sym_number_literal] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(2282), - [sym_false] = ACTIONS(2282), - [sym_null] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2282), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3416), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1121] = { - [sym__expression] = STATE(1193), - [sym_conditional_expression] = STATE(1193), - [sym_assignment_expression] = STATE(1193), - [sym_pointer_expression] = STATE(1193), - [sym_logical_expression] = STATE(1193), - [sym_bitwise_expression] = STATE(1193), - [sym_equality_expression] = STATE(1193), - [sym_relational_expression] = STATE(1193), - [sym_shift_expression] = STATE(1193), - [sym_math_expression] = STATE(1193), - [sym_cast_expression] = STATE(1193), - [sym_sizeof_expression] = STATE(1193), - [sym_subscript_expression] = STATE(1193), - [sym_call_expression] = STATE(1193), - [sym_field_expression] = STATE(1193), - [sym_compound_literal_expression] = STATE(1193), - [sym_parenthesized_expression] = STATE(1193), - [sym_concatenated_string] = STATE(1193), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3445), - [sym_char_literal] = ACTIONS(3445), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_identifier] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3418), [sym_comment] = ACTIONS(39), }, [1122] = { @@ -43868,702 +43390,825 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_assignment_expression] = STATE(1194), [sym_pointer_expression] = STATE(1194), [sym_logical_expression] = STATE(1194), - [sym_bitwise_expression] = STATE(1194), - [sym_equality_expression] = STATE(1194), - [sym_relational_expression] = STATE(1194), - [sym_shift_expression] = STATE(1194), - [sym_math_expression] = STATE(1194), - [sym_cast_expression] = STATE(1194), - [sym_sizeof_expression] = STATE(1194), - [sym_subscript_expression] = STATE(1194), - [sym_call_expression] = STATE(1194), - [sym_field_expression] = STATE(1194), - [sym_compound_literal_expression] = STATE(1194), - [sym_parenthesized_expression] = STATE(1194), - [sym_concatenated_string] = STATE(1194), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3449), - [sym_char_literal] = ACTIONS(3449), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_identifier] = ACTIONS(3451), - [sym_comment] = ACTIONS(39), - }, - [1123] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(3453), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1124] = { - [sym_declaration] = STATE(682), - [sym_type_definition] = STATE(682), - [sym__declaration_specifiers] = STATE(683), - [sym_compound_statement] = STATE(682), - [sym_storage_class_specifier] = STATE(93), - [sym_type_qualifier] = STATE(93), - [sym__type_specifier] = STATE(92), - [sym_sized_type_specifier] = STATE(92), - [sym_enum_specifier] = STATE(92), - [sym_struct_specifier] = STATE(92), - [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(682), - [sym_expression_statement] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_switch_statement] = STATE(682), - [sym_case_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_do_statement] = STATE(682), - [sym_for_statement] = STATE(682), - [sym_return_statement] = STATE(682), - [sym_break_statement] = STATE(682), - [sym_continue_statement] = STATE(682), - [sym_goto_statement] = STATE(682), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [sym_macro_type_specifier] = STATE(92), - [aux_sym__declaration_specifiers_repeat1] = STATE(93), - [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(171), - [anon_sym_long] = ACTIONS(171), - [anon_sym_short] = ACTIONS(171), - [sym_primitive_type] = ACTIONS(173), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3455), + [sym_bitwise_expression] = STATE(1194), + [sym_equality_expression] = STATE(1194), + [sym_relational_expression] = STATE(1194), + [sym_shift_expression] = STATE(1194), + [sym_math_expression] = STATE(1194), + [sym_cast_expression] = STATE(1194), + [sym_sizeof_expression] = STATE(1194), + [sym_subscript_expression] = STATE(1194), + [sym_call_expression] = STATE(1194), + [sym_field_expression] = STATE(1194), + [sym_compound_literal_expression] = STATE(1194), + [sym_parenthesized_expression] = STATE(1194), + [sym_concatenated_string] = STATE(1194), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3422), + [sym_char_literal] = ACTIONS(3422), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3424), + [sym_false] = ACTIONS(3424), + [sym_null] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3424), + [sym_comment] = ACTIONS(39), + }, + [1123] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3426), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [1124] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2541), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2539), + [sym_preproc_directive] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_auto] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_inline] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_restrict] = ACTIONS(2539), + [anon_sym_volatile] = ACTIONS(2539), + [anon_sym__Atomic] = ACTIONS(2539), + [anon_sym_unsigned] = ACTIONS(2539), + [anon_sym_long] = ACTIONS(2539), + [anon_sym_short] = ACTIONS(2539), + [sym_primitive_type] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_switch] = ACTIONS(2539), + [anon_sym_case] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_goto] = ACTIONS(2539), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_TILDE] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_DASH_DASH] = ACTIONS(2541), + [anon_sym_PLUS_PLUS] = ACTIONS(2541), + [anon_sym_sizeof] = ACTIONS(2539), + [sym_number_literal] = ACTIONS(2541), + [sym_char_literal] = ACTIONS(2541), + [sym_string_literal] = ACTIONS(2541), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2539), [sym_comment] = ACTIONS(39), }, [1125] = { - [sym__expression] = STATE(1197), - [sym_conditional_expression] = STATE(1197), - [sym_assignment_expression] = STATE(1197), - [sym_pointer_expression] = STATE(1197), - [sym_logical_expression] = STATE(1197), - [sym_bitwise_expression] = STATE(1197), - [sym_equality_expression] = STATE(1197), - [sym_relational_expression] = STATE(1197), - [sym_shift_expression] = STATE(1197), - [sym_math_expression] = STATE(1197), - [sym_cast_expression] = STATE(1197), - [sym_sizeof_expression] = STATE(1197), - [sym_subscript_expression] = STATE(1197), - [sym_call_expression] = STATE(1197), - [sym_field_expression] = STATE(1197), - [sym_compound_literal_expression] = STATE(1197), - [sym_parenthesized_expression] = STATE(1197), - [sym_concatenated_string] = STATE(1197), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3457), - [sym_char_literal] = ACTIONS(3457), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_identifier] = ACTIONS(3459), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2543), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2543), + [sym_preproc_directive] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_typedef] = ACTIONS(2543), + [anon_sym_extern] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_auto] = ACTIONS(2543), + [anon_sym_register] = ACTIONS(2543), + [anon_sym_inline] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_restrict] = ACTIONS(2543), + [anon_sym_volatile] = ACTIONS(2543), + [anon_sym__Atomic] = ACTIONS(2543), + [anon_sym_unsigned] = ACTIONS(2543), + [anon_sym_long] = ACTIONS(2543), + [anon_sym_short] = ACTIONS(2543), + [sym_primitive_type] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_else] = ACTIONS(2543), + [anon_sym_switch] = ACTIONS(2543), + [anon_sym_case] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_do] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_goto] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2545), + [anon_sym_TILDE] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_DASH_DASH] = ACTIONS(2545), + [anon_sym_PLUS_PLUS] = ACTIONS(2545), + [anon_sym_sizeof] = ACTIONS(2543), + [sym_number_literal] = ACTIONS(2545), + [sym_char_literal] = ACTIONS(2545), + [sym_string_literal] = ACTIONS(2545), + [sym_true] = ACTIONS(2543), + [sym_false] = ACTIONS(2543), + [sym_null] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2543), [sym_comment] = ACTIONS(39), }, [1126] = { - [sym_declaration] = STATE(1198), - [sym__declaration_specifiers] = STATE(683), - [sym_storage_class_specifier] = STATE(93), - [sym_type_qualifier] = STATE(93), - [sym__type_specifier] = STATE(92), - [sym_sized_type_specifier] = STATE(92), - [sym_enum_specifier] = STATE(92), - [sym_struct_specifier] = STATE(92), - [sym_union_specifier] = STATE(92), - [sym__expression] = STATE(1199), - [sym_conditional_expression] = STATE(1199), - [sym_assignment_expression] = STATE(1199), - [sym_pointer_expression] = STATE(1199), - [sym_logical_expression] = STATE(1199), - [sym_bitwise_expression] = STATE(1199), - [sym_equality_expression] = STATE(1199), - [sym_relational_expression] = STATE(1199), - [sym_shift_expression] = STATE(1199), - [sym_math_expression] = STATE(1199), - [sym_cast_expression] = STATE(1199), - [sym_sizeof_expression] = STATE(1199), - [sym_subscript_expression] = STATE(1199), - [sym_call_expression] = STATE(1199), - [sym_field_expression] = STATE(1199), - [sym_compound_literal_expression] = STATE(1199), - [sym_parenthesized_expression] = STATE(1199), - [sym_concatenated_string] = STATE(1199), - [sym_macro_type_specifier] = STATE(92), - [aux_sym__declaration_specifiers_repeat1] = STATE(93), - [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(171), - [anon_sym_long] = ACTIONS(171), - [anon_sym_short] = ACTIONS(171), - [sym_primitive_type] = ACTIONS(173), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3463), - [sym_char_literal] = ACTIONS(3463), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3465), - [sym_false] = ACTIONS(3465), - [sym_null] = ACTIONS(3465), - [sym_identifier] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_COLON] = ACTIONS(2770), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, [1127] = { - [sym_compound_statement] = STATE(701), - [sym_labeled_statement] = STATE(701), - [sym_expression_statement] = STATE(701), - [sym_if_statement] = STATE(701), - [sym_switch_statement] = STATE(701), - [sym_case_statement] = STATE(701), - [sym_while_statement] = STATE(701), - [sym_do_statement] = STATE(701), - [sym_for_statement] = STATE(701), - [sym_return_statement] = STATE(701), - [sym_break_statement] = STATE(701), - [sym_continue_statement] = STATE(701), - [sym_goto_statement] = STATE(701), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2924), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2558), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2556), + [anon_sym_SEMI] = ACTIONS(2558), + [anon_sym_typedef] = ACTIONS(2556), + [anon_sym_extern] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_auto] = ACTIONS(2556), + [anon_sym_register] = ACTIONS(2556), + [anon_sym_inline] = ACTIONS(2556), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_restrict] = ACTIONS(2556), + [anon_sym_volatile] = ACTIONS(2556), + [anon_sym__Atomic] = ACTIONS(2556), + [anon_sym_unsigned] = ACTIONS(2556), + [anon_sym_long] = ACTIONS(2556), + [anon_sym_short] = ACTIONS(2556), + [sym_primitive_type] = ACTIONS(2556), + [anon_sym_enum] = ACTIONS(2556), + [anon_sym_struct] = ACTIONS(2556), + [anon_sym_union] = ACTIONS(2556), + [anon_sym_if] = ACTIONS(2556), + [anon_sym_else] = ACTIONS(2556), + [anon_sym_switch] = ACTIONS(2556), + [anon_sym_case] = ACTIONS(2556), + [anon_sym_default] = ACTIONS(2556), + [anon_sym_while] = ACTIONS(2556), + [anon_sym_do] = ACTIONS(2556), + [anon_sym_for] = ACTIONS(2556), + [anon_sym_return] = ACTIONS(2556), + [anon_sym_break] = ACTIONS(2556), + [anon_sym_continue] = ACTIONS(2556), + [anon_sym_goto] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_TILDE] = ACTIONS(2558), + [anon_sym_PLUS] = ACTIONS(2556), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_DASH_DASH] = ACTIONS(2558), + [anon_sym_PLUS_PLUS] = ACTIONS(2558), + [anon_sym_sizeof] = ACTIONS(2556), + [sym_number_literal] = ACTIONS(2558), + [sym_char_literal] = ACTIONS(2558), + [sym_string_literal] = ACTIONS(2558), + [sym_true] = ACTIONS(2556), + [sym_false] = ACTIONS(2556), + [sym_null] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2556), [sym_comment] = ACTIONS(39), }, [1128] = { - [sym_compound_statement] = STATE(1200), - [sym_labeled_statement] = STATE(1200), - [sym_expression_statement] = STATE(1200), - [sym_if_statement] = STATE(1200), - [sym_switch_statement] = STATE(1200), - [sym_case_statement] = STATE(1200), - [sym_while_statement] = STATE(1200), - [sym_do_statement] = STATE(1200), - [sym_for_statement] = STATE(1200), - [sym_return_statement] = STATE(1200), - [sym_break_statement] = STATE(1200), - [sym_continue_statement] = STATE(1200), - [sym_goto_statement] = STATE(1200), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3428), [sym_comment] = ACTIONS(39), }, [1129] = { - [sym__expression] = STATE(1201), - [sym_conditional_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1201), - [sym_pointer_expression] = STATE(1201), - [sym_logical_expression] = STATE(1201), - [sym_bitwise_expression] = STATE(1201), - [sym_equality_expression] = STATE(1201), - [sym_relational_expression] = STATE(1201), - [sym_shift_expression] = STATE(1201), - [sym_math_expression] = STATE(1201), - [sym_cast_expression] = STATE(1201), - [sym_sizeof_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_call_expression] = STATE(1201), - [sym_field_expression] = STATE(1201), - [sym_compound_literal_expression] = STATE(1201), - [sym_parenthesized_expression] = STATE(1201), - [sym_concatenated_string] = STATE(1201), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3467), - [sym_char_literal] = ACTIONS(3467), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3469), - [sym_false] = ACTIONS(3469), - [sym_null] = ACTIONS(3469), - [sym_identifier] = ACTIONS(3469), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3430), [sym_comment] = ACTIONS(39), }, [1130] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(3355), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_compound_statement] = STATE(1203), + [sym_labeled_statement] = STATE(1203), + [sym_expression_statement] = STATE(1203), + [sym_if_statement] = STATE(1203), + [sym_switch_statement] = STATE(1203), + [sym_case_statement] = STATE(1203), + [sym_while_statement] = STATE(1203), + [sym_do_statement] = STATE(1203), + [sym_for_statement] = STATE(1203), + [sym_return_statement] = STATE(1203), + [sym_break_statement] = STATE(1203), + [sym_continue_statement] = STATE(1203), + [sym_goto_statement] = STATE(1203), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3444), [sym_comment] = ACTIONS(39), }, [1131] = { - [anon_sym_LPAREN] = ACTIONS(3471), + [sym_compound_statement] = STATE(1204), + [sym_labeled_statement] = STATE(1204), + [sym_expression_statement] = STATE(1204), + [sym_if_statement] = STATE(1204), + [sym_switch_statement] = STATE(1204), + [sym_case_statement] = STATE(1204), + [sym_while_statement] = STATE(1204), + [sym_do_statement] = STATE(1204), + [sym_for_statement] = STATE(1204), + [sym_return_statement] = STATE(1204), + [sym_break_statement] = STATE(1204), + [sym_continue_statement] = STATE(1204), + [sym_goto_statement] = STATE(1204), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(2808), [sym_comment] = ACTIONS(39), }, [1132] = { - [anon_sym_LPAREN] = ACTIONS(3473), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2996), + [anon_sym_LPAREN] = ACTIONS(2998), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2996), + [sym_preproc_directive] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_typedef] = ACTIONS(2996), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_auto] = ACTIONS(2996), + [anon_sym_register] = ACTIONS(2996), + [anon_sym_inline] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_restrict] = ACTIONS(2996), + [anon_sym_volatile] = ACTIONS(2996), + [anon_sym__Atomic] = ACTIONS(2996), + [anon_sym_unsigned] = ACTIONS(2996), + [anon_sym_long] = ACTIONS(2996), + [anon_sym_short] = ACTIONS(2996), + [sym_primitive_type] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_else] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2996), + [anon_sym_case] = ACTIONS(2996), + [anon_sym_default] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_do] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_goto] = ACTIONS(2996), + [anon_sym_AMP] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(2998), + [anon_sym_sizeof] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [sym_char_literal] = ACTIONS(2998), + [sym_string_literal] = ACTIONS(2998), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [sym_null] = ACTIONS(2996), + [sym_identifier] = ACTIONS(2996), [sym_comment] = ACTIONS(39), }, [1133] = { - [sym__expression] = STATE(1204), - [sym_conditional_expression] = STATE(1204), - [sym_assignment_expression] = STATE(1204), - [sym_pointer_expression] = STATE(1204), - [sym_logical_expression] = STATE(1204), - [sym_bitwise_expression] = STATE(1204), - [sym_equality_expression] = STATE(1204), - [sym_relational_expression] = STATE(1204), - [sym_shift_expression] = STATE(1204), - [sym_math_expression] = STATE(1204), - [sym_cast_expression] = STATE(1204), - [sym_sizeof_expression] = STATE(1204), - [sym_subscript_expression] = STATE(1204), - [sym_call_expression] = STATE(1204), - [sym_field_expression] = STATE(1204), - [sym_compound_literal_expression] = STATE(1204), - [sym_parenthesized_expression] = STATE(1204), - [sym_concatenated_string] = STATE(1204), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3475), - [sym_char_literal] = ACTIONS(3475), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(3477), - [sym_false] = ACTIONS(3477), - [sym_null] = ACTIONS(3477), - [sym_identifier] = ACTIONS(3477), + [sym_compound_statement] = STATE(1205), + [sym_labeled_statement] = STATE(1205), + [sym_expression_statement] = STATE(1205), + [sym_if_statement] = STATE(1205), + [sym_switch_statement] = STATE(1205), + [sym_case_statement] = STATE(1205), + [sym_while_statement] = STATE(1205), + [sym_do_statement] = STATE(1205), + [sym_for_statement] = STATE(1205), + [sym_return_statement] = STATE(1205), + [sym_break_statement] = STATE(1205), + [sym_continue_statement] = STATE(1205), + [sym_goto_statement] = STATE(1205), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(2808), [sym_comment] = ACTIONS(39), }, [1134] = { - [anon_sym_COLON] = ACTIONS(3479), + [sym__expression] = STATE(1206), + [sym_conditional_expression] = STATE(1206), + [sym_assignment_expression] = STATE(1206), + [sym_pointer_expression] = STATE(1206), + [sym_logical_expression] = STATE(1206), + [sym_bitwise_expression] = STATE(1206), + [sym_equality_expression] = STATE(1206), + [sym_relational_expression] = STATE(1206), + [sym_shift_expression] = STATE(1206), + [sym_math_expression] = STATE(1206), + [sym_cast_expression] = STATE(1206), + [sym_sizeof_expression] = STATE(1206), + [sym_subscript_expression] = STATE(1206), + [sym_call_expression] = STATE(1206), + [sym_field_expression] = STATE(1206), + [sym_compound_literal_expression] = STATE(1206), + [sym_parenthesized_expression] = STATE(1206), + [sym_concatenated_string] = STATE(1206), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3446), + [sym_char_literal] = ACTIONS(3446), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [sym_null] = ACTIONS(3448), + [sym_identifier] = ACTIONS(3448), [sym_comment] = ACTIONS(39), }, [1135] = { - [anon_sym_LPAREN] = ACTIONS(3481), + [sym__expression] = STATE(1208), + [sym_conditional_expression] = STATE(1208), + [sym_assignment_expression] = STATE(1208), + [sym_pointer_expression] = STATE(1208), + [sym_logical_expression] = STATE(1208), + [sym_bitwise_expression] = STATE(1208), + [sym_equality_expression] = STATE(1208), + [sym_relational_expression] = STATE(1208), + [sym_shift_expression] = STATE(1208), + [sym_math_expression] = STATE(1208), + [sym_cast_expression] = STATE(1208), + [sym_sizeof_expression] = STATE(1208), + [sym_subscript_expression] = STATE(1208), + [sym_call_expression] = STATE(1208), + [sym_field_expression] = STATE(1208), + [sym_compound_literal_expression] = STATE(1208), + [sym_parenthesized_expression] = STATE(1208), + [sym_concatenated_string] = STATE(1208), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3450), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3452), + [sym_char_literal] = ACTIONS(3452), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_identifier] = ACTIONS(3454), [sym_comment] = ACTIONS(39), }, [1136] = { - [anon_sym_LPAREN] = ACTIONS(3483), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1137] = { - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [sym__expression] = STATE(1210), + [sym_conditional_expression] = STATE(1210), + [sym_assignment_expression] = STATE(1210), + [sym_pointer_expression] = STATE(1210), + [sym_logical_expression] = STATE(1210), + [sym_bitwise_expression] = STATE(1210), + [sym_equality_expression] = STATE(1210), + [sym_relational_expression] = STATE(1210), + [sym_shift_expression] = STATE(1210), + [sym_math_expression] = STATE(1210), + [sym_cast_expression] = STATE(1210), + [sym_sizeof_expression] = STATE(1210), + [sym_subscript_expression] = STATE(1210), + [sym_call_expression] = STATE(1210), + [sym_field_expression] = STATE(1210), + [sym_compound_literal_expression] = STATE(1210), + [sym_parenthesized_expression] = STATE(1210), + [sym_concatenated_string] = STATE(1210), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3458), + [sym_char_literal] = ACTIONS(3458), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3460), + [sym_false] = ACTIONS(3460), + [sym_null] = ACTIONS(3460), + [sym_identifier] = ACTIONS(3460), [sym_comment] = ACTIONS(39), }, [1138] = { - [anon_sym_else] = ACTIONS(3487), - [anon_sym_while] = ACTIONS(3288), + [sym__expression] = STATE(846), + [sym_conditional_expression] = STATE(846), + [sym_assignment_expression] = STATE(846), + [sym_pointer_expression] = STATE(846), + [sym_logical_expression] = STATE(846), + [sym_bitwise_expression] = STATE(846), + [sym_equality_expression] = STATE(846), + [sym_relational_expression] = STATE(846), + [sym_shift_expression] = STATE(846), + [sym_math_expression] = STATE(846), + [sym_cast_expression] = STATE(846), + [sym_sizeof_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_call_expression] = STATE(846), + [sym_field_expression] = STATE(846), + [sym_compound_literal_expression] = STATE(846), + [sym_parenthesized_expression] = STATE(846), + [sym_initializer_list] = STATE(847), + [sym_concatenated_string] = STATE(846), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_RPAREN] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_EQ] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(3032), + [anon_sym_STAR_EQ] = ACTIONS(3032), + [anon_sym_SLASH_EQ] = ACTIONS(3032), + [anon_sym_PERCENT_EQ] = ACTIONS(3032), + [anon_sym_PLUS_EQ] = ACTIONS(3032), + [anon_sym_DASH_EQ] = ACTIONS(3032), + [anon_sym_LT_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_GT_EQ] = ACTIONS(3032), + [anon_sym_AMP_EQ] = ACTIONS(3032), + [anon_sym_CARET_EQ] = ACTIONS(3032), + [anon_sym_PIPE_EQ] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3462), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_PIPE] = ACTIONS(3036), + [anon_sym_CARET] = ACTIONS(3036), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3036), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LT_LT] = ACTIONS(3036), + [anon_sym_GT_GT] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(3036), + [anon_sym_PERCENT] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(2303), + [sym_false] = ACTIONS(2303), + [sym_null] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2303), [sym_comment] = ACTIONS(39), }, [1139] = { - [sym_compound_statement] = STATE(1144), - [sym_labeled_statement] = STATE(1144), - [sym_expression_statement] = STATE(1144), - [sym_if_statement] = STATE(1144), - [sym_switch_statement] = STATE(1144), - [sym_case_statement] = STATE(1144), - [sym_while_statement] = STATE(1144), - [sym_do_statement] = STATE(1144), - [sym_for_statement] = STATE(1144), - [sym_return_statement] = STATE(1144), - [sym_break_statement] = STATE(1144), - [sym_continue_statement] = STATE(1144), - [sym_goto_statement] = STATE(1144), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), + [sym__expression] = STATE(1211), + [sym_conditional_expression] = STATE(1211), + [sym_assignment_expression] = STATE(1211), + [sym_pointer_expression] = STATE(1211), + [sym_logical_expression] = STATE(1211), + [sym_bitwise_expression] = STATE(1211), + [sym_equality_expression] = STATE(1211), + [sym_relational_expression] = STATE(1211), + [sym_shift_expression] = STATE(1211), + [sym_math_expression] = STATE(1211), + [sym_cast_expression] = STATE(1211), + [sym_sizeof_expression] = STATE(1211), + [sym_subscript_expression] = STATE(1211), + [sym_call_expression] = STATE(1211), + [sym_field_expression] = STATE(1211), + [sym_compound_literal_expression] = STATE(1211), + [sym_parenthesized_expression] = STATE(1211), + [sym_concatenated_string] = STATE(1211), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3466), + [sym_char_literal] = ACTIONS(3466), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [sym_null] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3468), [sym_comment] = ACTIONS(39), }, [1140] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1211), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1141] = { [sym__expression] = STATE(1212), [sym_conditional_expression] = STATE(1212), [sym_assignment_expression] = STATE(1212), @@ -44582,298 +44227,209 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1212), [sym_parenthesized_expression] = STATE(1212), [sym_concatenated_string] = STATE(1212), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3491), - [sym_char_literal] = ACTIONS(3491), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3493), - [sym_false] = ACTIONS(3493), - [sym_null] = ACTIONS(3493), - [sym_identifier] = ACTIONS(3493), - [sym_comment] = ACTIONS(39), - }, - [1142] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1143] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3497), - [sym_preproc_directive] = ACTIONS(3497), - [anon_sym_SEMI] = ACTIONS(3499), - [anon_sym_typedef] = ACTIONS(3497), - [anon_sym_extern] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(3499), - [anon_sym_RBRACE] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3499), - [anon_sym_static] = ACTIONS(3497), - [anon_sym_auto] = ACTIONS(3497), - [anon_sym_register] = ACTIONS(3497), - [anon_sym_inline] = ACTIONS(3497), - [anon_sym_const] = ACTIONS(3497), - [anon_sym_restrict] = ACTIONS(3497), - [anon_sym_volatile] = ACTIONS(3497), - [anon_sym__Atomic] = ACTIONS(3497), - [anon_sym_unsigned] = ACTIONS(3497), - [anon_sym_long] = ACTIONS(3497), - [anon_sym_short] = ACTIONS(3497), - [sym_primitive_type] = ACTIONS(3497), - [anon_sym_enum] = ACTIONS(3497), - [anon_sym_struct] = ACTIONS(3497), - [anon_sym_union] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_else] = ACTIONS(3497), - [anon_sym_switch] = ACTIONS(3497), - [anon_sym_case] = ACTIONS(3497), - [anon_sym_default] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_break] = ACTIONS(3497), - [anon_sym_continue] = ACTIONS(3497), - [anon_sym_goto] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3499), - [anon_sym_BANG] = ACTIONS(3499), - [anon_sym_TILDE] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_DASH_DASH] = ACTIONS(3499), - [anon_sym_PLUS_PLUS] = ACTIONS(3499), - [anon_sym_sizeof] = ACTIONS(3497), - [sym_number_literal] = ACTIONS(3499), - [sym_char_literal] = ACTIONS(3499), - [sym_string_literal] = ACTIONS(3499), - [sym_true] = ACTIONS(3497), - [sym_false] = ACTIONS(3497), - [sym_null] = ACTIONS(3497), - [sym_identifier] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3470), + [sym_char_literal] = ACTIONS(3470), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3472), + [sym_false] = ACTIONS(3472), + [sym_null] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3472), [sym_comment] = ACTIONS(39), }, - [1144] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3503), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3501), - [sym_preproc_directive] = ACTIONS(3501), - [anon_sym_SEMI] = ACTIONS(3503), - [anon_sym_typedef] = ACTIONS(3501), - [anon_sym_extern] = ACTIONS(3501), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(3503), - [anon_sym_STAR] = ACTIONS(3503), - [anon_sym_static] = ACTIONS(3501), - [anon_sym_auto] = ACTIONS(3501), - [anon_sym_register] = ACTIONS(3501), - [anon_sym_inline] = ACTIONS(3501), - [anon_sym_const] = ACTIONS(3501), - [anon_sym_restrict] = ACTIONS(3501), - [anon_sym_volatile] = ACTIONS(3501), - [anon_sym__Atomic] = ACTIONS(3501), - [anon_sym_unsigned] = ACTIONS(3501), - [anon_sym_long] = ACTIONS(3501), - [anon_sym_short] = ACTIONS(3501), - [sym_primitive_type] = ACTIONS(3501), - [anon_sym_enum] = ACTIONS(3501), - [anon_sym_struct] = ACTIONS(3501), - [anon_sym_union] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_else] = ACTIONS(3501), - [anon_sym_switch] = ACTIONS(3501), - [anon_sym_case] = ACTIONS(3501), - [anon_sym_default] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_break] = ACTIONS(3501), - [anon_sym_continue] = ACTIONS(3501), - [anon_sym_goto] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3503), - [anon_sym_BANG] = ACTIONS(3503), - [anon_sym_TILDE] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_DASH_DASH] = ACTIONS(3503), - [anon_sym_PLUS_PLUS] = ACTIONS(3503), - [anon_sym_sizeof] = ACTIONS(3501), - [sym_number_literal] = ACTIONS(3503), - [sym_char_literal] = ACTIONS(3503), - [sym_string_literal] = ACTIONS(3503), - [sym_true] = ACTIONS(3501), - [sym_false] = ACTIONS(3501), - [sym_null] = ACTIONS(3501), - [sym_identifier] = ACTIONS(3501), + [1141] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(3474), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1145] = { - [sym_compound_statement] = STATE(1214), - [sym_labeled_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_case_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_goto_statement] = STATE(1214), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [1142] = { + [sym_declaration] = STATE(697), + [sym_type_definition] = STATE(697), + [sym__declaration_specifiers] = STATE(698), + [sym_compound_statement] = STATE(697), + [sym_storage_class_specifier] = STATE(93), + [sym_type_qualifier] = STATE(93), + [sym__type_specifier] = STATE(92), + [sym_sized_type_specifier] = STATE(92), + [sym_enum_specifier] = STATE(92), + [sym_struct_specifier] = STATE(92), + [sym_union_specifier] = STATE(92), + [sym_labeled_statement] = STATE(697), + [sym_expression_statement] = STATE(697), + [sym_if_statement] = STATE(697), + [sym_switch_statement] = STATE(697), + [sym_case_statement] = STATE(697), + [sym_while_statement] = STATE(697), + [sym_do_statement] = STATE(697), + [sym_for_statement] = STATE(697), + [sym_return_statement] = STATE(697), + [sym_break_statement] = STATE(697), + [sym_continue_statement] = STATE(697), + [sym_goto_statement] = STATE(697), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [sym_macro_type_specifier] = STATE(92), + [aux_sym__declaration_specifiers_repeat1] = STATE(93), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_typedef] = ACTIONS(19), + [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1701), - [sym_comment] = ACTIONS(39), - }, - [1146] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(171), + [anon_sym_long] = ACTIONS(171), + [anon_sym_short] = ACTIONS(171), + [sym_primitive_type] = ACTIONS(173), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3476), [sym_comment] = ACTIONS(39), }, - [1147] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1216), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1143] = { + [sym__expression] = STATE(1215), + [sym_conditional_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1215), + [sym_pointer_expression] = STATE(1215), + [sym_logical_expression] = STATE(1215), + [sym_bitwise_expression] = STATE(1215), + [sym_equality_expression] = STATE(1215), + [sym_relational_expression] = STATE(1215), + [sym_shift_expression] = STATE(1215), + [sym_math_expression] = STATE(1215), + [sym_cast_expression] = STATE(1215), + [sym_sizeof_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_call_expression] = STATE(1215), + [sym_field_expression] = STATE(1215), + [sym_compound_literal_expression] = STATE(1215), + [sym_parenthesized_expression] = STATE(1215), + [sym_concatenated_string] = STATE(1215), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3478), + [sym_char_literal] = ACTIONS(3478), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3480), + [sym_false] = ACTIONS(3480), + [sym_null] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3480), [sym_comment] = ACTIONS(39), }, - [1148] = { + [1144] = { + [sym_declaration] = STATE(1216), + [sym__declaration_specifiers] = STATE(698), + [sym_storage_class_specifier] = STATE(93), + [sym_type_qualifier] = STATE(93), + [sym__type_specifier] = STATE(92), + [sym_sized_type_specifier] = STATE(92), + [sym_enum_specifier] = STATE(92), + [sym_struct_specifier] = STATE(92), + [sym_union_specifier] = STATE(92), [sym__expression] = STATE(1217), [sym_conditional_expression] = STATE(1217), [sym_assignment_expression] = STATE(1217), @@ -44892,1923 +44448,2713 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1217), [sym_parenthesized_expression] = STATE(1217), [sym_concatenated_string] = STATE(1217), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3507), - [sym_char_literal] = ACTIONS(3507), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3509), - [sym_false] = ACTIONS(3509), - [sym_null] = ACTIONS(3509), - [sym_identifier] = ACTIONS(3509), + [sym_macro_type_specifier] = STATE(92), + [aux_sym__declaration_specifiers_repeat1] = STATE(93), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3482), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(171), + [anon_sym_long] = ACTIONS(171), + [anon_sym_short] = ACTIONS(171), + [sym_primitive_type] = ACTIONS(173), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3484), + [sym_char_literal] = ACTIONS(3484), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [sym_null] = ACTIONS(3486), + [sym_identifier] = ACTIONS(1675), + [sym_comment] = ACTIONS(39), + }, + [1145] = { + [sym_compound_statement] = STATE(716), + [sym_labeled_statement] = STATE(716), + [sym_expression_statement] = STATE(716), + [sym_if_statement] = STATE(716), + [sym_switch_statement] = STATE(716), + [sym_case_statement] = STATE(716), + [sym_while_statement] = STATE(716), + [sym_do_statement] = STATE(716), + [sym_for_statement] = STATE(716), + [sym_return_statement] = STATE(716), + [sym_break_statement] = STATE(716), + [sym_continue_statement] = STATE(716), + [sym_goto_statement] = STATE(716), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2945), + [sym_comment] = ACTIONS(39), + }, + [1146] = { + [sym_compound_statement] = STATE(1218), + [sym_labeled_statement] = STATE(1218), + [sym_expression_statement] = STATE(1218), + [sym_if_statement] = STATE(1218), + [sym_switch_statement] = STATE(1218), + [sym_case_statement] = STATE(1218), + [sym_while_statement] = STATE(1218), + [sym_do_statement] = STATE(1218), + [sym_for_statement] = STATE(1218), + [sym_return_statement] = STATE(1218), + [sym_break_statement] = STATE(1218), + [sym_continue_statement] = STATE(1218), + [sym_goto_statement] = STATE(1218), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1715), + [sym_comment] = ACTIONS(39), + }, + [1147] = { + [sym__expression] = STATE(1219), + [sym_conditional_expression] = STATE(1219), + [sym_assignment_expression] = STATE(1219), + [sym_pointer_expression] = STATE(1219), + [sym_logical_expression] = STATE(1219), + [sym_bitwise_expression] = STATE(1219), + [sym_equality_expression] = STATE(1219), + [sym_relational_expression] = STATE(1219), + [sym_shift_expression] = STATE(1219), + [sym_math_expression] = STATE(1219), + [sym_cast_expression] = STATE(1219), + [sym_sizeof_expression] = STATE(1219), + [sym_subscript_expression] = STATE(1219), + [sym_call_expression] = STATE(1219), + [sym_field_expression] = STATE(1219), + [sym_compound_literal_expression] = STATE(1219), + [sym_parenthesized_expression] = STATE(1219), + [sym_concatenated_string] = STATE(1219), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3488), + [sym_char_literal] = ACTIONS(3488), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [sym_null] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3490), + [sym_comment] = ACTIONS(39), + }, + [1148] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(3376), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1149] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3243), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3241), - [sym_preproc_directive] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_typedef] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_auto] = ACTIONS(3241), - [anon_sym_register] = ACTIONS(3241), - [anon_sym_inline] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_restrict] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym__Atomic] = ACTIONS(3241), - [anon_sym_unsigned] = ACTIONS(3241), - [anon_sym_long] = ACTIONS(3241), - [anon_sym_short] = ACTIONS(3241), - [sym_primitive_type] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_union] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_sizeof] = ACTIONS(3241), - [sym_number_literal] = ACTIONS(3243), - [sym_char_literal] = ACTIONS(3243), - [sym_string_literal] = ACTIONS(3243), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_identifier] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3492), [sym_comment] = ACTIONS(39), }, [1150] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3245), - [sym_preproc_directive] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_typedef] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_auto] = ACTIONS(3245), - [anon_sym_register] = ACTIONS(3245), - [anon_sym_inline] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_restrict] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym__Atomic] = ACTIONS(3245), - [anon_sym_unsigned] = ACTIONS(3245), - [anon_sym_long] = ACTIONS(3245), - [anon_sym_short] = ACTIONS(3245), - [sym_primitive_type] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_sizeof] = ACTIONS(3245), - [sym_number_literal] = ACTIONS(3247), - [sym_char_literal] = ACTIONS(3247), - [sym_string_literal] = ACTIONS(3247), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_identifier] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3494), [sym_comment] = ACTIONS(39), }, [1151] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3249), - [sym_preproc_directive] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3249), - [anon_sym_extern] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_auto] = ACTIONS(3249), - [anon_sym_register] = ACTIONS(3249), - [anon_sym_inline] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_restrict] = ACTIONS(3249), - [anon_sym_volatile] = ACTIONS(3249), - [anon_sym__Atomic] = ACTIONS(3249), - [anon_sym_unsigned] = ACTIONS(3249), - [anon_sym_long] = ACTIONS(3249), - [anon_sym_short] = ACTIONS(3249), - [sym_primitive_type] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(3249), - [sym_number_literal] = ACTIONS(3251), - [sym_char_literal] = ACTIONS(3251), - [sym_string_literal] = ACTIONS(3251), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_identifier] = ACTIONS(3249), + [sym__expression] = STATE(1222), + [sym_conditional_expression] = STATE(1222), + [sym_assignment_expression] = STATE(1222), + [sym_pointer_expression] = STATE(1222), + [sym_logical_expression] = STATE(1222), + [sym_bitwise_expression] = STATE(1222), + [sym_equality_expression] = STATE(1222), + [sym_relational_expression] = STATE(1222), + [sym_shift_expression] = STATE(1222), + [sym_math_expression] = STATE(1222), + [sym_cast_expression] = STATE(1222), + [sym_sizeof_expression] = STATE(1222), + [sym_subscript_expression] = STATE(1222), + [sym_call_expression] = STATE(1222), + [sym_field_expression] = STATE(1222), + [sym_compound_literal_expression] = STATE(1222), + [sym_parenthesized_expression] = STATE(1222), + [sym_concatenated_string] = STATE(1222), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(3496), + [sym_char_literal] = ACTIONS(3496), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [sym_null] = ACTIONS(3498), + [sym_identifier] = ACTIONS(3498), [sym_comment] = ACTIONS(39), }, [1152] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3253), - [sym_preproc_directive] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_auto] = ACTIONS(3253), - [anon_sym_register] = ACTIONS(3253), - [anon_sym_inline] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_restrict] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym__Atomic] = ACTIONS(3253), - [anon_sym_unsigned] = ACTIONS(3253), - [anon_sym_long] = ACTIONS(3253), - [anon_sym_short] = ACTIONS(3253), - [sym_primitive_type] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_union] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_sizeof] = ACTIONS(3253), - [sym_number_literal] = ACTIONS(3255), - [sym_char_literal] = ACTIONS(3255), - [sym_string_literal] = ACTIONS(3255), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [sym_null] = ACTIONS(3253), - [sym_identifier] = ACTIONS(3253), + [anon_sym_COLON] = ACTIONS(3500), [sym_comment] = ACTIONS(39), }, [1153] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3259), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3257), - [sym_preproc_directive] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_auto] = ACTIONS(3257), - [anon_sym_register] = ACTIONS(3257), - [anon_sym_inline] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_restrict] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym__Atomic] = ACTIONS(3257), - [anon_sym_unsigned] = ACTIONS(3257), - [anon_sym_long] = ACTIONS(3257), - [anon_sym_short] = ACTIONS(3257), - [sym_primitive_type] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_union] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_sizeof] = ACTIONS(3257), - [sym_number_literal] = ACTIONS(3259), - [sym_char_literal] = ACTIONS(3259), - [sym_string_literal] = ACTIONS(3259), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3502), [sym_comment] = ACTIONS(39), }, [1154] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3261), - [anon_sym_LPAREN] = ACTIONS(3263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3261), - [sym_preproc_directive] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_typedef] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_auto] = ACTIONS(3261), - [anon_sym_register] = ACTIONS(3261), - [anon_sym_inline] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_restrict] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym__Atomic] = ACTIONS(3261), - [anon_sym_unsigned] = ACTIONS(3261), - [anon_sym_long] = ACTIONS(3261), - [anon_sym_short] = ACTIONS(3261), - [sym_primitive_type] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_case] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_sizeof] = ACTIONS(3261), - [sym_number_literal] = ACTIONS(3263), - [sym_char_literal] = ACTIONS(3263), - [sym_string_literal] = ACTIONS(3263), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [sym_null] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3504), [sym_comment] = ACTIONS(39), }, [1155] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2789), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2789), - [sym_preproc_directive] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_auto] = ACTIONS(2789), - [anon_sym_register] = ACTIONS(2789), - [anon_sym_inline] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_restrict] = ACTIONS(2789), - [anon_sym_volatile] = ACTIONS(2789), - [anon_sym__Atomic] = ACTIONS(2789), - [anon_sym_unsigned] = ACTIONS(2789), - [anon_sym_long] = ACTIONS(2789), - [anon_sym_short] = ACTIONS(2789), - [sym_primitive_type] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_goto] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_sizeof] = ACTIONS(2789), - [sym_number_literal] = ACTIONS(2791), - [sym_char_literal] = ACTIONS(2791), - [sym_string_literal] = ACTIONS(2791), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [sym_identifier] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_COLON] = ACTIONS(3506), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, [1156] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2795), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2793), - [sym_preproc_directive] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_auto] = ACTIONS(2793), - [anon_sym_register] = ACTIONS(2793), - [anon_sym_inline] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_restrict] = ACTIONS(2793), - [anon_sym_volatile] = ACTIONS(2793), - [anon_sym__Atomic] = ACTIONS(2793), - [anon_sym_unsigned] = ACTIONS(2793), - [anon_sym_long] = ACTIONS(2793), - [anon_sym_short] = ACTIONS(2793), - [sym_primitive_type] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_goto] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2793), - [sym_number_literal] = ACTIONS(2795), - [sym_char_literal] = ACTIONS(2795), - [sym_string_literal] = ACTIONS(2795), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), - [sym_identifier] = ACTIONS(2793), + [anon_sym_else] = ACTIONS(3508), + [anon_sym_while] = ACTIONS(3309), [sym_comment] = ACTIONS(39), }, [1157] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2799), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2797), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2797), - [sym_preproc_directive] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_auto] = ACTIONS(2797), - [anon_sym_register] = ACTIONS(2797), - [anon_sym_inline] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_restrict] = ACTIONS(2797), - [anon_sym_volatile] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(2797), - [anon_sym_unsigned] = ACTIONS(2797), - [anon_sym_long] = ACTIONS(2797), - [anon_sym_short] = ACTIONS(2797), - [sym_primitive_type] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_goto] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_sizeof] = ACTIONS(2797), - [sym_number_literal] = ACTIONS(2799), - [sym_char_literal] = ACTIONS(2799), - [sym_string_literal] = ACTIONS(2799), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), - [sym_identifier] = ACTIONS(2797), + [sym_compound_statement] = STATE(1162), + [sym_labeled_statement] = STATE(1162), + [sym_expression_statement] = STATE(1162), + [sym_if_statement] = STATE(1162), + [sym_switch_statement] = STATE(1162), + [sym_case_statement] = STATE(1162), + [sym_while_statement] = STATE(1162), + [sym_do_statement] = STATE(1162), + [sym_for_statement] = STATE(1162), + [sym_return_statement] = STATE(1162), + [sym_break_statement] = STATE(1162), + [sym_continue_statement] = STATE(1162), + [sym_goto_statement] = STATE(1162), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, [1158] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3511), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1229), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3510), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1159] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3513), + [sym__expression] = STATE(1230), + [sym_conditional_expression] = STATE(1230), + [sym_assignment_expression] = STATE(1230), + [sym_pointer_expression] = STATE(1230), + [sym_logical_expression] = STATE(1230), + [sym_bitwise_expression] = STATE(1230), + [sym_equality_expression] = STATE(1230), + [sym_relational_expression] = STATE(1230), + [sym_shift_expression] = STATE(1230), + [sym_math_expression] = STATE(1230), + [sym_cast_expression] = STATE(1230), + [sym_sizeof_expression] = STATE(1230), + [sym_subscript_expression] = STATE(1230), + [sym_call_expression] = STATE(1230), + [sym_field_expression] = STATE(1230), + [sym_compound_literal_expression] = STATE(1230), + [sym_parenthesized_expression] = STATE(1230), + [sym_concatenated_string] = STATE(1230), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3510), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3512), + [sym_char_literal] = ACTIONS(3512), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [sym_null] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3514), [sym_comment] = ACTIONS(39), }, [1160] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2878), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2876), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2876), - [sym_preproc_directive] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_auto] = ACTIONS(2876), - [anon_sym_register] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_restrict] = ACTIONS(2876), - [anon_sym_volatile] = ACTIONS(2876), - [anon_sym__Atomic] = ACTIONS(2876), - [anon_sym_unsigned] = ACTIONS(2876), - [anon_sym_long] = ACTIONS(2876), - [anon_sym_short] = ACTIONS(2876), - [sym_primitive_type] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_case] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_sizeof] = ACTIONS(2876), - [sym_number_literal] = ACTIONS(2878), - [sym_char_literal] = ACTIONS(2878), - [sym_string_literal] = ACTIONS(2878), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_null] = ACTIONS(2876), - [sym_identifier] = ACTIONS(2876), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1161] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2882), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2880), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2880), - [sym_preproc_directive] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_typedef] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_auto] = ACTIONS(2880), - [anon_sym_register] = ACTIONS(2880), - [anon_sym_inline] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_restrict] = ACTIONS(2880), - [anon_sym_volatile] = ACTIONS(2880), - [anon_sym__Atomic] = ACTIONS(2880), - [anon_sym_unsigned] = ACTIONS(2880), - [anon_sym_long] = ACTIONS(2880), - [anon_sym_short] = ACTIONS(2880), - [sym_primitive_type] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_switch] = ACTIONS(2880), - [anon_sym_case] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_do] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_sizeof] = ACTIONS(2880), - [sym_number_literal] = ACTIONS(2882), - [sym_char_literal] = ACTIONS(2882), - [sym_string_literal] = ACTIONS(2882), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_null] = ACTIONS(2880), - [sym_identifier] = ACTIONS(2880), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_auto] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [sym_char_literal] = ACTIONS(3520), + [sym_string_literal] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3518), [sym_comment] = ACTIONS(39), }, [1162] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2886), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2884), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2884), - [sym_preproc_directive] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_typedef] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_auto] = ACTIONS(2884), - [anon_sym_register] = ACTIONS(2884), - [anon_sym_inline] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_restrict] = ACTIONS(2884), - [anon_sym_volatile] = ACTIONS(2884), - [anon_sym__Atomic] = ACTIONS(2884), - [anon_sym_unsigned] = ACTIONS(2884), - [anon_sym_long] = ACTIONS(2884), - [anon_sym_short] = ACTIONS(2884), - [sym_primitive_type] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_switch] = ACTIONS(2884), - [anon_sym_case] = ACTIONS(2884), - [anon_sym_default] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_do] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_sizeof] = ACTIONS(2884), - [sym_number_literal] = ACTIONS(2886), - [sym_char_literal] = ACTIONS(2886), - [sym_string_literal] = ACTIONS(2886), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_null] = ACTIONS(2884), - [sym_identifier] = ACTIONS(2884), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3524), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3522), + [sym_preproc_directive] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_typedef] = ACTIONS(3522), + [anon_sym_extern] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_auto] = ACTIONS(3522), + [anon_sym_register] = ACTIONS(3522), + [anon_sym_inline] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_restrict] = ACTIONS(3522), + [anon_sym_volatile] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3522), + [anon_sym_unsigned] = ACTIONS(3522), + [anon_sym_long] = ACTIONS(3522), + [anon_sym_short] = ACTIONS(3522), + [sym_primitive_type] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_union] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_case] = ACTIONS(3522), + [anon_sym_default] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_goto] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_sizeof] = ACTIONS(3522), + [sym_number_literal] = ACTIONS(3524), + [sym_char_literal] = ACTIONS(3524), + [sym_string_literal] = ACTIONS(3524), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [sym_null] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3522), [sym_comment] = ACTIONS(39), }, [1163] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3515), + [sym_compound_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1715), [sym_comment] = ACTIONS(39), }, [1164] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3517), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3526), [sym_comment] = ACTIONS(39), }, [1165] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2892), - [anon_sym_LPAREN] = ACTIONS(2894), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2892), - [sym_preproc_directive] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2892), - [anon_sym_extern] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_static] = ACTIONS(2892), - [anon_sym_auto] = ACTIONS(2892), - [anon_sym_register] = ACTIONS(2892), - [anon_sym_inline] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_restrict] = ACTIONS(2892), - [anon_sym_volatile] = ACTIONS(2892), - [anon_sym__Atomic] = ACTIONS(2892), - [anon_sym_unsigned] = ACTIONS(2892), - [anon_sym_long] = ACTIONS(2892), - [anon_sym_short] = ACTIONS(2892), - [sym_primitive_type] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_switch] = ACTIONS(2892), - [anon_sym_case] = ACTIONS(2892), - [anon_sym_default] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_goto] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_sizeof] = ACTIONS(2892), - [sym_number_literal] = ACTIONS(2894), - [sym_char_literal] = ACTIONS(2894), - [sym_string_literal] = ACTIONS(2894), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_null] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2892), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1234), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3526), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1166] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2896), - [anon_sym_LPAREN] = ACTIONS(2898), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2896), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2896), - [sym_preproc_directive] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2896), - [anon_sym_extern] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(2896), - [anon_sym_auto] = ACTIONS(2896), - [anon_sym_register] = ACTIONS(2896), - [anon_sym_inline] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_restrict] = ACTIONS(2896), - [anon_sym_volatile] = ACTIONS(2896), - [anon_sym__Atomic] = ACTIONS(2896), - [anon_sym_unsigned] = ACTIONS(2896), - [anon_sym_long] = ACTIONS(2896), - [anon_sym_short] = ACTIONS(2896), - [sym_primitive_type] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_switch] = ACTIONS(2896), - [anon_sym_case] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2896), - [anon_sym_while] = ACTIONS(2896), - [anon_sym_do] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), - [anon_sym_goto] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_sizeof] = ACTIONS(2896), - [sym_number_literal] = ACTIONS(2898), - [sym_char_literal] = ACTIONS(2898), - [sym_string_literal] = ACTIONS(2898), - [sym_true] = ACTIONS(2896), - [sym_false] = ACTIONS(2896), - [sym_null] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2896), + [sym__expression] = STATE(1235), + [sym_conditional_expression] = STATE(1235), + [sym_assignment_expression] = STATE(1235), + [sym_pointer_expression] = STATE(1235), + [sym_logical_expression] = STATE(1235), + [sym_bitwise_expression] = STATE(1235), + [sym_equality_expression] = STATE(1235), + [sym_relational_expression] = STATE(1235), + [sym_shift_expression] = STATE(1235), + [sym_math_expression] = STATE(1235), + [sym_cast_expression] = STATE(1235), + [sym_sizeof_expression] = STATE(1235), + [sym_subscript_expression] = STATE(1235), + [sym_call_expression] = STATE(1235), + [sym_field_expression] = STATE(1235), + [sym_compound_literal_expression] = STATE(1235), + [sym_parenthesized_expression] = STATE(1235), + [sym_concatenated_string] = STATE(1235), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3526), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3528), + [sym_char_literal] = ACTIONS(3528), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [sym_null] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3530), [sym_comment] = ACTIONS(39), }, [1167] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2900), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2900), - [sym_preproc_directive] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_typedef] = ACTIONS(2900), - [anon_sym_extern] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_auto] = ACTIONS(2900), - [anon_sym_register] = ACTIONS(2900), - [anon_sym_inline] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_restrict] = ACTIONS(2900), - [anon_sym_volatile] = ACTIONS(2900), - [anon_sym__Atomic] = ACTIONS(2900), - [anon_sym_unsigned] = ACTIONS(2900), - [anon_sym_long] = ACTIONS(2900), - [anon_sym_short] = ACTIONS(2900), - [sym_primitive_type] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_switch] = ACTIONS(2900), - [anon_sym_case] = ACTIONS(2900), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_goto] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_sizeof] = ACTIONS(2900), - [sym_number_literal] = ACTIONS(2902), - [sym_char_literal] = ACTIONS(2902), - [sym_string_literal] = ACTIONS(2902), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_null] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2900), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3264), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_auto] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [sym_char_literal] = ACTIONS(3264), + [sym_string_literal] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3262), [sym_comment] = ACTIONS(39), }, [1168] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3268), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_auto] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [sym_char_literal] = ACTIONS(3268), + [sym_string_literal] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_identifier] = ACTIONS(3266), [sym_comment] = ACTIONS(39), }, [1169] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3272), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3270), + [sym_preproc_directive] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_typedef] = ACTIONS(3270), + [anon_sym_extern] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_auto] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_restrict] = ACTIONS(3270), + [anon_sym_volatile] = ACTIONS(3270), + [anon_sym__Atomic] = ACTIONS(3270), + [anon_sym_unsigned] = ACTIONS(3270), + [anon_sym_long] = ACTIONS(3270), + [anon_sym_short] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_sizeof] = ACTIONS(3270), + [sym_number_literal] = ACTIONS(3272), + [sym_char_literal] = ACTIONS(3272), + [sym_string_literal] = ACTIONS(3272), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3270), [sym_comment] = ACTIONS(39), }, [1170] = { - [sym_compound_statement] = STATE(1231), - [sym_labeled_statement] = STATE(1231), - [sym_expression_statement] = STATE(1231), - [sym_if_statement] = STATE(1231), - [sym_switch_statement] = STATE(1231), - [sym_case_statement] = STATE(1231), - [sym_while_statement] = STATE(1231), - [sym_do_statement] = STATE(1231), - [sym_for_statement] = STATE(1231), - [sym_return_statement] = STATE(1231), - [sym_break_statement] = STATE(1231), - [sym_continue_statement] = STATE(1231), - [sym_goto_statement] = STATE(1231), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3535), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3276), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3274), + [sym_preproc_directive] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_typedef] = ACTIONS(3274), + [anon_sym_extern] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_auto] = ACTIONS(3274), + [anon_sym_register] = ACTIONS(3274), + [anon_sym_inline] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_restrict] = ACTIONS(3274), + [anon_sym_volatile] = ACTIONS(3274), + [anon_sym__Atomic] = ACTIONS(3274), + [anon_sym_unsigned] = ACTIONS(3274), + [anon_sym_long] = ACTIONS(3274), + [anon_sym_short] = ACTIONS(3274), + [sym_primitive_type] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_sizeof] = ACTIONS(3274), + [sym_number_literal] = ACTIONS(3276), + [sym_char_literal] = ACTIONS(3276), + [sym_string_literal] = ACTIONS(3276), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3274), [sym_comment] = ACTIONS(39), }, [1171] = { - [sym_compound_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3148), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3280), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_auto] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [sym_char_literal] = ACTIONS(3280), + [sym_string_literal] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3278), [sym_comment] = ACTIONS(39), }, [1172] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2975), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2975), - [sym_preproc_directive] = ACTIONS(2975), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_typedef] = ACTIONS(2975), - [anon_sym_extern] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2975), - [anon_sym_auto] = ACTIONS(2975), - [anon_sym_register] = ACTIONS(2975), - [anon_sym_inline] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2975), - [anon_sym_restrict] = ACTIONS(2975), - [anon_sym_volatile] = ACTIONS(2975), - [anon_sym__Atomic] = ACTIONS(2975), - [anon_sym_unsigned] = ACTIONS(2975), - [anon_sym_long] = ACTIONS(2975), - [anon_sym_short] = ACTIONS(2975), - [sym_primitive_type] = ACTIONS(2975), - [anon_sym_enum] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2975), - [anon_sym_union] = ACTIONS(2975), - [anon_sym_if] = ACTIONS(2975), - [anon_sym_else] = ACTIONS(2975), - [anon_sym_switch] = ACTIONS(2975), - [anon_sym_case] = ACTIONS(2975), - [anon_sym_default] = ACTIONS(2975), - [anon_sym_while] = ACTIONS(2975), - [anon_sym_do] = ACTIONS(2975), - [anon_sym_for] = ACTIONS(2975), - [anon_sym_return] = ACTIONS(2975), - [anon_sym_break] = ACTIONS(2975), - [anon_sym_continue] = ACTIONS(2975), - [anon_sym_goto] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_DASH_DASH] = ACTIONS(2977), - [anon_sym_PLUS_PLUS] = ACTIONS(2977), - [anon_sym_sizeof] = ACTIONS(2975), - [sym_number_literal] = ACTIONS(2977), - [sym_char_literal] = ACTIONS(2977), - [sym_string_literal] = ACTIONS(2977), - [sym_true] = ACTIONS(2975), - [sym_false] = ACTIONS(2975), - [sym_null] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2975), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3284), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_auto] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym_AMP] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [sym_char_literal] = ACTIONS(3284), + [sym_string_literal] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3282), [sym_comment] = ACTIONS(39), }, [1173] = { - [sym_compound_statement] = STATE(1233), - [sym_labeled_statement] = STATE(1233), - [sym_expression_statement] = STATE(1233), - [sym_if_statement] = STATE(1233), - [sym_switch_statement] = STATE(1233), - [sym_case_statement] = STATE(1233), - [sym_while_statement] = STATE(1233), - [sym_do_statement] = STATE(1233), - [sym_for_statement] = STATE(1233), - [sym_return_statement] = STATE(1233), - [sym_break_statement] = STATE(1233), - [sym_continue_statement] = STATE(1233), - [sym_goto_statement] = STATE(1233), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3148), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2810), + [anon_sym_LPAREN] = ACTIONS(2812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2810), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2810), + [sym_preproc_directive] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2812), + [anon_sym_typedef] = ACTIONS(2810), + [anon_sym_extern] = ACTIONS(2810), + [anon_sym_LBRACE] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(2810), + [anon_sym_auto] = ACTIONS(2810), + [anon_sym_register] = ACTIONS(2810), + [anon_sym_inline] = ACTIONS(2810), + [anon_sym_const] = ACTIONS(2810), + [anon_sym_restrict] = ACTIONS(2810), + [anon_sym_volatile] = ACTIONS(2810), + [anon_sym__Atomic] = ACTIONS(2810), + [anon_sym_unsigned] = ACTIONS(2810), + [anon_sym_long] = ACTIONS(2810), + [anon_sym_short] = ACTIONS(2810), + [sym_primitive_type] = ACTIONS(2810), + [anon_sym_enum] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2810), + [anon_sym_union] = ACTIONS(2810), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_switch] = ACTIONS(2810), + [anon_sym_case] = ACTIONS(2810), + [anon_sym_default] = ACTIONS(2810), + [anon_sym_while] = ACTIONS(2810), + [anon_sym_do] = ACTIONS(2810), + [anon_sym_for] = ACTIONS(2810), + [anon_sym_return] = ACTIONS(2810), + [anon_sym_break] = ACTIONS(2810), + [anon_sym_continue] = ACTIONS(2810), + [anon_sym_goto] = ACTIONS(2810), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_TILDE] = ACTIONS(2812), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2812), + [anon_sym_PLUS_PLUS] = ACTIONS(2812), + [anon_sym_sizeof] = ACTIONS(2810), + [sym_number_literal] = ACTIONS(2812), + [sym_char_literal] = ACTIONS(2812), + [sym_string_literal] = ACTIONS(2812), + [sym_true] = ACTIONS(2810), + [sym_false] = ACTIONS(2810), + [sym_null] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2810), [sym_comment] = ACTIONS(39), }, [1174] = { - [sym__expression] = STATE(1234), - [sym_conditional_expression] = STATE(1234), - [sym_assignment_expression] = STATE(1234), - [sym_pointer_expression] = STATE(1234), - [sym_logical_expression] = STATE(1234), - [sym_bitwise_expression] = STATE(1234), - [sym_equality_expression] = STATE(1234), - [sym_relational_expression] = STATE(1234), - [sym_shift_expression] = STATE(1234), - [sym_math_expression] = STATE(1234), - [sym_cast_expression] = STATE(1234), - [sym_sizeof_expression] = STATE(1234), - [sym_subscript_expression] = STATE(1234), - [sym_call_expression] = STATE(1234), - [sym_field_expression] = STATE(1234), - [sym_compound_literal_expression] = STATE(1234), - [sym_parenthesized_expression] = STATE(1234), - [sym_concatenated_string] = STATE(1234), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3537), - [sym_char_literal] = ACTIONS(3537), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3539), - [sym_false] = ACTIONS(3539), - [sym_null] = ACTIONS(3539), - [sym_identifier] = ACTIONS(3539), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2814), + [anon_sym_LPAREN] = ACTIONS(2816), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2814), + [sym_preproc_directive] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2816), + [anon_sym_typedef] = ACTIONS(2814), + [anon_sym_extern] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2816), + [anon_sym_static] = ACTIONS(2814), + [anon_sym_auto] = ACTIONS(2814), + [anon_sym_register] = ACTIONS(2814), + [anon_sym_inline] = ACTIONS(2814), + [anon_sym_const] = ACTIONS(2814), + [anon_sym_restrict] = ACTIONS(2814), + [anon_sym_volatile] = ACTIONS(2814), + [anon_sym__Atomic] = ACTIONS(2814), + [anon_sym_unsigned] = ACTIONS(2814), + [anon_sym_long] = ACTIONS(2814), + [anon_sym_short] = ACTIONS(2814), + [sym_primitive_type] = ACTIONS(2814), + [anon_sym_enum] = ACTIONS(2814), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_union] = ACTIONS(2814), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_switch] = ACTIONS(2814), + [anon_sym_case] = ACTIONS(2814), + [anon_sym_default] = ACTIONS(2814), + [anon_sym_while] = ACTIONS(2814), + [anon_sym_do] = ACTIONS(2814), + [anon_sym_for] = ACTIONS(2814), + [anon_sym_return] = ACTIONS(2814), + [anon_sym_break] = ACTIONS(2814), + [anon_sym_continue] = ACTIONS(2814), + [anon_sym_goto] = ACTIONS(2814), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_TILDE] = ACTIONS(2816), + [anon_sym_PLUS] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_DASH_DASH] = ACTIONS(2816), + [anon_sym_PLUS_PLUS] = ACTIONS(2816), + [anon_sym_sizeof] = ACTIONS(2814), + [sym_number_literal] = ACTIONS(2816), + [sym_char_literal] = ACTIONS(2816), + [sym_string_literal] = ACTIONS(2816), + [sym_true] = ACTIONS(2814), + [sym_false] = ACTIONS(2814), + [sym_null] = ACTIONS(2814), + [sym_identifier] = ACTIONS(2814), [sym_comment] = ACTIONS(39), }, [1175] = { - [sym__expression] = STATE(1236), - [sym_conditional_expression] = STATE(1236), - [sym_assignment_expression] = STATE(1236), - [sym_pointer_expression] = STATE(1236), - [sym_logical_expression] = STATE(1236), - [sym_bitwise_expression] = STATE(1236), - [sym_equality_expression] = STATE(1236), - [sym_relational_expression] = STATE(1236), - [sym_shift_expression] = STATE(1236), - [sym_math_expression] = STATE(1236), - [sym_cast_expression] = STATE(1236), - [sym_sizeof_expression] = STATE(1236), - [sym_subscript_expression] = STATE(1236), - [sym_call_expression] = STATE(1236), - [sym_field_expression] = STATE(1236), - [sym_compound_literal_expression] = STATE(1236), - [sym_parenthesized_expression] = STATE(1236), - [sym_concatenated_string] = STATE(1236), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3541), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3543), - [sym_char_literal] = ACTIONS(3543), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3545), - [sym_false] = ACTIONS(3545), - [sym_null] = ACTIONS(3545), - [sym_identifier] = ACTIONS(3545), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2818), + [anon_sym_LPAREN] = ACTIONS(2820), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2818), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2818), + [sym_preproc_directive] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_typedef] = ACTIONS(2818), + [anon_sym_extern] = ACTIONS(2818), + [anon_sym_LBRACE] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_static] = ACTIONS(2818), + [anon_sym_auto] = ACTIONS(2818), + [anon_sym_register] = ACTIONS(2818), + [anon_sym_inline] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2818), + [anon_sym_restrict] = ACTIONS(2818), + [anon_sym_volatile] = ACTIONS(2818), + [anon_sym__Atomic] = ACTIONS(2818), + [anon_sym_unsigned] = ACTIONS(2818), + [anon_sym_long] = ACTIONS(2818), + [anon_sym_short] = ACTIONS(2818), + [sym_primitive_type] = ACTIONS(2818), + [anon_sym_enum] = ACTIONS(2818), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2818), + [anon_sym_if] = ACTIONS(2818), + [anon_sym_switch] = ACTIONS(2818), + [anon_sym_case] = ACTIONS(2818), + [anon_sym_default] = ACTIONS(2818), + [anon_sym_while] = ACTIONS(2818), + [anon_sym_do] = ACTIONS(2818), + [anon_sym_for] = ACTIONS(2818), + [anon_sym_return] = ACTIONS(2818), + [anon_sym_break] = ACTIONS(2818), + [anon_sym_continue] = ACTIONS(2818), + [anon_sym_goto] = ACTIONS(2818), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2820), + [anon_sym_TILDE] = ACTIONS(2820), + [anon_sym_PLUS] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_DASH_DASH] = ACTIONS(2820), + [anon_sym_PLUS_PLUS] = ACTIONS(2820), + [anon_sym_sizeof] = ACTIONS(2818), + [sym_number_literal] = ACTIONS(2820), + [sym_char_literal] = ACTIONS(2820), + [sym_string_literal] = ACTIONS(2820), + [sym_true] = ACTIONS(2818), + [sym_false] = ACTIONS(2818), + [sym_null] = ACTIONS(2818), + [sym_identifier] = ACTIONS(2818), [sym_comment] = ACTIONS(39), }, [1176] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3547), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3532), [sym_comment] = ACTIONS(39), }, [1177] = { - [sym__expression] = STATE(1238), - [sym_conditional_expression] = STATE(1238), - [sym_assignment_expression] = STATE(1238), - [sym_pointer_expression] = STATE(1238), - [sym_logical_expression] = STATE(1238), - [sym_bitwise_expression] = STATE(1238), - [sym_equality_expression] = STATE(1238), - [sym_relational_expression] = STATE(1238), - [sym_shift_expression] = STATE(1238), - [sym_math_expression] = STATE(1238), - [sym_cast_expression] = STATE(1238), - [sym_sizeof_expression] = STATE(1238), - [sym_subscript_expression] = STATE(1238), - [sym_call_expression] = STATE(1238), - [sym_field_expression] = STATE(1238), - [sym_compound_literal_expression] = STATE(1238), - [sym_parenthesized_expression] = STATE(1238), - [sym_concatenated_string] = STATE(1238), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3547), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3549), - [sym_char_literal] = ACTIONS(3549), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3551), - [sym_false] = ACTIONS(3551), - [sym_null] = ACTIONS(3551), - [sym_identifier] = ACTIONS(3551), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3534), [sym_comment] = ACTIONS(39), }, [1178] = { - [anon_sym_LPAREN] = ACTIONS(3553), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2897), + [anon_sym_LPAREN] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2897), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2897), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2897), + [anon_sym_extern] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2897), + [anon_sym_auto] = ACTIONS(2897), + [anon_sym_register] = ACTIONS(2897), + [anon_sym_inline] = ACTIONS(2897), + [anon_sym_const] = ACTIONS(2897), + [anon_sym_restrict] = ACTIONS(2897), + [anon_sym_volatile] = ACTIONS(2897), + [anon_sym__Atomic] = ACTIONS(2897), + [anon_sym_unsigned] = ACTIONS(2897), + [anon_sym_long] = ACTIONS(2897), + [anon_sym_short] = ACTIONS(2897), + [sym_primitive_type] = ACTIONS(2897), + [anon_sym_enum] = ACTIONS(2897), + [anon_sym_struct] = ACTIONS(2897), + [anon_sym_union] = ACTIONS(2897), + [anon_sym_if] = ACTIONS(2897), + [anon_sym_switch] = ACTIONS(2897), + [anon_sym_case] = ACTIONS(2897), + [anon_sym_default] = ACTIONS(2897), + [anon_sym_while] = ACTIONS(2897), + [anon_sym_do] = ACTIONS(2897), + [anon_sym_for] = ACTIONS(2897), + [anon_sym_return] = ACTIONS(2897), + [anon_sym_break] = ACTIONS(2897), + [anon_sym_continue] = ACTIONS(2897), + [anon_sym_goto] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_sizeof] = ACTIONS(2897), + [sym_number_literal] = ACTIONS(2899), + [sym_char_literal] = ACTIONS(2899), + [sym_string_literal] = ACTIONS(2899), + [sym_true] = ACTIONS(2897), + [sym_false] = ACTIONS(2897), + [sym_null] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2897), [sym_comment] = ACTIONS(39), }, [1179] = { - [anon_sym_LPAREN] = ACTIONS(3555), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2903), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2901), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2901), + [sym_preproc_directive] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym_typedef] = ACTIONS(2901), + [anon_sym_extern] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_auto] = ACTIONS(2901), + [anon_sym_register] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_restrict] = ACTIONS(2901), + [anon_sym_volatile] = ACTIONS(2901), + [anon_sym__Atomic] = ACTIONS(2901), + [anon_sym_unsigned] = ACTIONS(2901), + [anon_sym_long] = ACTIONS(2901), + [anon_sym_short] = ACTIONS(2901), + [sym_primitive_type] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_union] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_case] = ACTIONS(2901), + [anon_sym_default] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_goto] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_sizeof] = ACTIONS(2901), + [sym_number_literal] = ACTIONS(2903), + [sym_char_literal] = ACTIONS(2903), + [sym_string_literal] = ACTIONS(2903), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [sym_null] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2901), [sym_comment] = ACTIONS(39), }, [1180] = { - [sym__expression] = STATE(1241), - [sym_conditional_expression] = STATE(1241), - [sym_assignment_expression] = STATE(1241), - [sym_pointer_expression] = STATE(1241), - [sym_logical_expression] = STATE(1241), - [sym_bitwise_expression] = STATE(1241), - [sym_equality_expression] = STATE(1241), - [sym_relational_expression] = STATE(1241), - [sym_shift_expression] = STATE(1241), - [sym_math_expression] = STATE(1241), - [sym_cast_expression] = STATE(1241), - [sym_sizeof_expression] = STATE(1241), - [sym_subscript_expression] = STATE(1241), - [sym_call_expression] = STATE(1241), - [sym_field_expression] = STATE(1241), - [sym_compound_literal_expression] = STATE(1241), - [sym_parenthesized_expression] = STATE(1241), - [sym_concatenated_string] = STATE(1241), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3557), - [sym_char_literal] = ACTIONS(3557), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(3559), - [sym_false] = ACTIONS(3559), - [sym_null] = ACTIONS(3559), - [sym_identifier] = ACTIONS(3559), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2907), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2905), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2905), + [sym_preproc_directive] = ACTIONS(2905), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_auto] = ACTIONS(2905), + [anon_sym_register] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_restrict] = ACTIONS(2905), + [anon_sym_volatile] = ACTIONS(2905), + [anon_sym__Atomic] = ACTIONS(2905), + [anon_sym_unsigned] = ACTIONS(2905), + [anon_sym_long] = ACTIONS(2905), + [anon_sym_short] = ACTIONS(2905), + [sym_primitive_type] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_case] = ACTIONS(2905), + [anon_sym_default] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_goto] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_sizeof] = ACTIONS(2905), + [sym_number_literal] = ACTIONS(2907), + [sym_char_literal] = ACTIONS(2907), + [sym_string_literal] = ACTIONS(2907), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_null] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2905), + [sym_comment] = ACTIONS(39), + }, + [1181] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3536), + [sym_comment] = ACTIONS(39), + }, + [1182] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3538), + [sym_comment] = ACTIONS(39), + }, + [1183] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2913), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2913), + [sym_preproc_directive] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_typedef] = ACTIONS(2913), + [anon_sym_extern] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_auto] = ACTIONS(2913), + [anon_sym_register] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_restrict] = ACTIONS(2913), + [anon_sym_volatile] = ACTIONS(2913), + [anon_sym__Atomic] = ACTIONS(2913), + [anon_sym_unsigned] = ACTIONS(2913), + [anon_sym_long] = ACTIONS(2913), + [anon_sym_short] = ACTIONS(2913), + [sym_primitive_type] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_union] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_goto] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_sizeof] = ACTIONS(2913), + [sym_number_literal] = ACTIONS(2915), + [sym_char_literal] = ACTIONS(2915), + [sym_string_literal] = ACTIONS(2915), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_null] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2913), + [sym_comment] = ACTIONS(39), + }, + [1184] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2917), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2917), + [sym_preproc_directive] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2919), + [anon_sym_typedef] = ACTIONS(2917), + [anon_sym_extern] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2917), + [anon_sym_auto] = ACTIONS(2917), + [anon_sym_register] = ACTIONS(2917), + [anon_sym_inline] = ACTIONS(2917), + [anon_sym_const] = ACTIONS(2917), + [anon_sym_restrict] = ACTIONS(2917), + [anon_sym_volatile] = ACTIONS(2917), + [anon_sym__Atomic] = ACTIONS(2917), + [anon_sym_unsigned] = ACTIONS(2917), + [anon_sym_long] = ACTIONS(2917), + [anon_sym_short] = ACTIONS(2917), + [sym_primitive_type] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_union] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_switch] = ACTIONS(2917), + [anon_sym_case] = ACTIONS(2917), + [anon_sym_default] = ACTIONS(2917), + [anon_sym_while] = ACTIONS(2917), + [anon_sym_do] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2919), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_sizeof] = ACTIONS(2917), + [sym_number_literal] = ACTIONS(2919), + [sym_char_literal] = ACTIONS(2919), + [sym_string_literal] = ACTIONS(2919), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [sym_null] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(39), + }, + [1185] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2921), + [sym_preproc_directive] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym_typedef] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_auto] = ACTIONS(2921), + [anon_sym_register] = ACTIONS(2921), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym_const] = ACTIONS(2921), + [anon_sym_restrict] = ACTIONS(2921), + [anon_sym_volatile] = ACTIONS(2921), + [anon_sym__Atomic] = ACTIONS(2921), + [anon_sym_unsigned] = ACTIONS(2921), + [anon_sym_long] = ACTIONS(2921), + [anon_sym_short] = ACTIONS(2921), + [sym_primitive_type] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2921), + [anon_sym_union] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_switch] = ACTIONS(2921), + [anon_sym_case] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_do] = ACTIONS(2921), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_goto] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_sizeof] = ACTIONS(2921), + [sym_number_literal] = ACTIONS(2923), + [sym_char_literal] = ACTIONS(2923), + [sym_string_literal] = ACTIONS(2923), + [sym_true] = ACTIONS(2921), + [sym_false] = ACTIONS(2921), + [sym_null] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2921), + [sym_comment] = ACTIONS(39), + }, + [1186] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3540), + [sym_comment] = ACTIONS(39), + }, + [1187] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3542), + [sym_comment] = ACTIONS(39), + }, + [1188] = { + [sym_compound_statement] = STATE(1249), + [sym_labeled_statement] = STATE(1249), + [sym_expression_statement] = STATE(1249), + [sym_if_statement] = STATE(1249), + [sym_switch_statement] = STATE(1249), + [sym_case_statement] = STATE(1249), + [sym_while_statement] = STATE(1249), + [sym_do_statement] = STATE(1249), + [sym_for_statement] = STATE(1249), + [sym_return_statement] = STATE(1249), + [sym_break_statement] = STATE(1249), + [sym_continue_statement] = STATE(1249), + [sym_goto_statement] = STATE(1249), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3556), + [sym_comment] = ACTIONS(39), + }, + [1189] = { + [sym_compound_statement] = STATE(1250), + [sym_labeled_statement] = STATE(1250), + [sym_expression_statement] = STATE(1250), + [sym_if_statement] = STATE(1250), + [sym_switch_statement] = STATE(1250), + [sym_case_statement] = STATE(1250), + [sym_while_statement] = STATE(1250), + [sym_do_statement] = STATE(1250), + [sym_for_statement] = STATE(1250), + [sym_return_statement] = STATE(1250), + [sym_break_statement] = STATE(1250), + [sym_continue_statement] = STATE(1250), + [sym_goto_statement] = STATE(1250), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3169), + [sym_comment] = ACTIONS(39), + }, + [1190] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2996), + [anon_sym_LPAREN] = ACTIONS(2998), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2996), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2996), + [sym_preproc_directive] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_typedef] = ACTIONS(2996), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_auto] = ACTIONS(2996), + [anon_sym_register] = ACTIONS(2996), + [anon_sym_inline] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_restrict] = ACTIONS(2996), + [anon_sym_volatile] = ACTIONS(2996), + [anon_sym__Atomic] = ACTIONS(2996), + [anon_sym_unsigned] = ACTIONS(2996), + [anon_sym_long] = ACTIONS(2996), + [anon_sym_short] = ACTIONS(2996), + [sym_primitive_type] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_else] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2996), + [anon_sym_case] = ACTIONS(2996), + [anon_sym_default] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_do] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_goto] = ACTIONS(2996), + [anon_sym_AMP] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(2998), + [anon_sym_sizeof] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [sym_char_literal] = ACTIONS(2998), + [sym_string_literal] = ACTIONS(2998), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [sym_null] = ACTIONS(2996), + [sym_identifier] = ACTIONS(2996), + [sym_comment] = ACTIONS(39), + }, + [1191] = { + [sym_compound_statement] = STATE(1251), + [sym_labeled_statement] = STATE(1251), + [sym_expression_statement] = STATE(1251), + [sym_if_statement] = STATE(1251), + [sym_switch_statement] = STATE(1251), + [sym_case_statement] = STATE(1251), + [sym_while_statement] = STATE(1251), + [sym_do_statement] = STATE(1251), + [sym_for_statement] = STATE(1251), + [sym_return_statement] = STATE(1251), + [sym_break_statement] = STATE(1251), + [sym_continue_statement] = STATE(1251), + [sym_goto_statement] = STATE(1251), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3169), + [sym_comment] = ACTIONS(39), + }, + [1192] = { + [sym__expression] = STATE(1252), + [sym_conditional_expression] = STATE(1252), + [sym_assignment_expression] = STATE(1252), + [sym_pointer_expression] = STATE(1252), + [sym_logical_expression] = STATE(1252), + [sym_bitwise_expression] = STATE(1252), + [sym_equality_expression] = STATE(1252), + [sym_relational_expression] = STATE(1252), + [sym_shift_expression] = STATE(1252), + [sym_math_expression] = STATE(1252), + [sym_cast_expression] = STATE(1252), + [sym_sizeof_expression] = STATE(1252), + [sym_subscript_expression] = STATE(1252), + [sym_call_expression] = STATE(1252), + [sym_field_expression] = STATE(1252), + [sym_compound_literal_expression] = STATE(1252), + [sym_parenthesized_expression] = STATE(1252), + [sym_concatenated_string] = STATE(1252), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3558), + [sym_char_literal] = ACTIONS(3558), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [sym_null] = ACTIONS(3560), + [sym_identifier] = ACTIONS(3560), + [sym_comment] = ACTIONS(39), + }, + [1193] = { + [sym__expression] = STATE(1254), + [sym_conditional_expression] = STATE(1254), + [sym_assignment_expression] = STATE(1254), + [sym_pointer_expression] = STATE(1254), + [sym_logical_expression] = STATE(1254), + [sym_bitwise_expression] = STATE(1254), + [sym_equality_expression] = STATE(1254), + [sym_relational_expression] = STATE(1254), + [sym_shift_expression] = STATE(1254), + [sym_math_expression] = STATE(1254), + [sym_cast_expression] = STATE(1254), + [sym_sizeof_expression] = STATE(1254), + [sym_subscript_expression] = STATE(1254), + [sym_call_expression] = STATE(1254), + [sym_field_expression] = STATE(1254), + [sym_compound_literal_expression] = STATE(1254), + [sym_parenthesized_expression] = STATE(1254), + [sym_concatenated_string] = STATE(1254), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3564), + [sym_char_literal] = ACTIONS(3564), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3566), + [sym_false] = ACTIONS(3566), + [sym_null] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3566), + [sym_comment] = ACTIONS(39), + }, + [1194] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [1195] = { + [sym__expression] = STATE(1256), + [sym_conditional_expression] = STATE(1256), + [sym_assignment_expression] = STATE(1256), + [sym_pointer_expression] = STATE(1256), + [sym_logical_expression] = STATE(1256), + [sym_bitwise_expression] = STATE(1256), + [sym_equality_expression] = STATE(1256), + [sym_relational_expression] = STATE(1256), + [sym_shift_expression] = STATE(1256), + [sym_math_expression] = STATE(1256), + [sym_cast_expression] = STATE(1256), + [sym_sizeof_expression] = STATE(1256), + [sym_subscript_expression] = STATE(1256), + [sym_call_expression] = STATE(1256), + [sym_field_expression] = STATE(1256), + [sym_compound_literal_expression] = STATE(1256), + [sym_parenthesized_expression] = STATE(1256), + [sym_concatenated_string] = STATE(1256), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3570), + [sym_char_literal] = ACTIONS(3570), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [sym_null] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3572), + [sym_comment] = ACTIONS(39), + }, + [1196] = { + [anon_sym_LPAREN] = ACTIONS(3574), + [sym_comment] = ACTIONS(39), + }, + [1197] = { + [anon_sym_LPAREN] = ACTIONS(3576), + [sym_comment] = ACTIONS(39), + }, + [1198] = { + [sym__expression] = STATE(1259), + [sym_conditional_expression] = STATE(1259), + [sym_assignment_expression] = STATE(1259), + [sym_pointer_expression] = STATE(1259), + [sym_logical_expression] = STATE(1259), + [sym_bitwise_expression] = STATE(1259), + [sym_equality_expression] = STATE(1259), + [sym_relational_expression] = STATE(1259), + [sym_shift_expression] = STATE(1259), + [sym_math_expression] = STATE(1259), + [sym_cast_expression] = STATE(1259), + [sym_sizeof_expression] = STATE(1259), + [sym_subscript_expression] = STATE(1259), + [sym_call_expression] = STATE(1259), + [sym_field_expression] = STATE(1259), + [sym_compound_literal_expression] = STATE(1259), + [sym_parenthesized_expression] = STATE(1259), + [sym_concatenated_string] = STATE(1259), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(3578), + [sym_char_literal] = ACTIONS(3578), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3580), [sym_comment] = ACTIONS(39), }, - [1181] = { - [anon_sym_COLON] = ACTIONS(3561), + [1199] = { + [anon_sym_COLON] = ACTIONS(3582), [sym_comment] = ACTIONS(39), }, - [1182] = { - [anon_sym_LPAREN] = ACTIONS(3563), + [1200] = { + [anon_sym_LPAREN] = ACTIONS(3584), [sym_comment] = ACTIONS(39), }, - [1183] = { - [anon_sym_LPAREN] = ACTIONS(3565), + [1201] = { + [anon_sym_LPAREN] = ACTIONS(3586), [sym_comment] = ACTIONS(39), }, - [1184] = { - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(3567), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [1202] = { + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_COLON] = ACTIONS(3588), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, - [1185] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_auto] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3569), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [sym_char_literal] = ACTIONS(3288), - [sym_string_literal] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3286), + [1203] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3307), + [sym_preproc_directive] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_typedef] = ACTIONS(3307), + [anon_sym_extern] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_auto] = ACTIONS(3307), + [anon_sym_register] = ACTIONS(3307), + [anon_sym_inline] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_restrict] = ACTIONS(3307), + [anon_sym_volatile] = ACTIONS(3307), + [anon_sym__Atomic] = ACTIONS(3307), + [anon_sym_unsigned] = ACTIONS(3307), + [anon_sym_long] = ACTIONS(3307), + [anon_sym_short] = ACTIONS(3307), + [sym_primitive_type] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_union] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_case] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_goto] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3307), + [sym_number_literal] = ACTIONS(3309), + [sym_char_literal] = ACTIONS(3309), + [sym_string_literal] = ACTIONS(3309), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3307), [sym_comment] = ACTIONS(39), }, - [1186] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3296), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_auto] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3296), - [sym_char_literal] = ACTIONS(3296), - [sym_string_literal] = ACTIONS(3296), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3294), + [1204] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3315), + [sym_preproc_directive] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_typedef] = ACTIONS(3315), + [anon_sym_extern] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_auto] = ACTIONS(3315), + [anon_sym_register] = ACTIONS(3315), + [anon_sym_inline] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_restrict] = ACTIONS(3315), + [anon_sym_volatile] = ACTIONS(3315), + [anon_sym__Atomic] = ACTIONS(3315), + [anon_sym_unsigned] = ACTIONS(3315), + [anon_sym_long] = ACTIONS(3315), + [anon_sym_short] = ACTIONS(3315), + [sym_primitive_type] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), + [anon_sym_struct] = ACTIONS(3315), + [anon_sym_union] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_case] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_goto] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_sizeof] = ACTIONS(3315), + [sym_number_literal] = ACTIONS(3317), + [sym_char_literal] = ACTIONS(3317), + [sym_string_literal] = ACTIONS(3317), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_identifier] = ACTIONS(3315), [sym_comment] = ACTIONS(39), }, - [1187] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3308), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3306), - [sym_preproc_directive] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym_typedef] = ACTIONS(3306), - [anon_sym_extern] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_auto] = ACTIONS(3306), - [anon_sym_register] = ACTIONS(3306), - [anon_sym_inline] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_restrict] = ACTIONS(3306), - [anon_sym_volatile] = ACTIONS(3306), - [anon_sym__Atomic] = ACTIONS(3306), - [anon_sym_unsigned] = ACTIONS(3306), - [anon_sym_long] = ACTIONS(3306), - [anon_sym_short] = ACTIONS(3306), - [sym_primitive_type] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_union] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_else] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3306), - [anon_sym_default] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_goto] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_sizeof] = ACTIONS(3306), - [sym_number_literal] = ACTIONS(3308), - [sym_char_literal] = ACTIONS(3308), - [sym_string_literal] = ACTIONS(3308), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_null] = ACTIONS(3306), - [sym_identifier] = ACTIONS(3306), + [1205] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3329), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3327), + [sym_preproc_directive] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3327), + [anon_sym_extern] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_auto] = ACTIONS(3327), + [anon_sym_register] = ACTIONS(3327), + [anon_sym_inline] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_restrict] = ACTIONS(3327), + [anon_sym_volatile] = ACTIONS(3327), + [anon_sym__Atomic] = ACTIONS(3327), + [anon_sym_unsigned] = ACTIONS(3327), + [anon_sym_long] = ACTIONS(3327), + [anon_sym_short] = ACTIONS(3327), + [sym_primitive_type] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), + [anon_sym_struct] = ACTIONS(3327), + [anon_sym_union] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_case] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_goto] = ACTIONS(3327), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_sizeof] = ACTIONS(3327), + [sym_number_literal] = ACTIONS(3329), + [sym_char_literal] = ACTIONS(3329), + [sym_string_literal] = ACTIONS(3329), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3327), [sym_comment] = ACTIONS(39), }, - [1188] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3571), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1206] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1189] = { - [sym_compound_statement] = STATE(1248), - [sym_labeled_statement] = STATE(1248), - [sym_expression_statement] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_switch_statement] = STATE(1248), - [sym_case_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_do_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_return_statement] = STATE(1248), - [sym_break_statement] = STATE(1248), - [sym_continue_statement] = STATE(1248), - [sym_goto_statement] = STATE(1248), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(2787), + [1207] = { + [sym_compound_statement] = STATE(1266), + [sym_labeled_statement] = STATE(1266), + [sym_expression_statement] = STATE(1266), + [sym_if_statement] = STATE(1266), + [sym_switch_statement] = STATE(1266), + [sym_case_statement] = STATE(1266), + [sym_while_statement] = STATE(1266), + [sym_do_statement] = STATE(1266), + [sym_for_statement] = STATE(1266), + [sym_return_statement] = STATE(1266), + [sym_break_statement] = STATE(1266), + [sym_continue_statement] = STATE(1266), + [sym_goto_statement] = STATE(1266), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(2808), [sym_comment] = ACTIONS(39), }, - [1190] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1250), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3573), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1208] = { + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1268), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3594), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1191] = { - [sym__expression] = STATE(1251), - [sym_conditional_expression] = STATE(1251), - [sym_assignment_expression] = STATE(1251), - [sym_pointer_expression] = STATE(1251), - [sym_logical_expression] = STATE(1251), - [sym_bitwise_expression] = STATE(1251), - [sym_equality_expression] = STATE(1251), - [sym_relational_expression] = STATE(1251), - [sym_shift_expression] = STATE(1251), - [sym_math_expression] = STATE(1251), - [sym_cast_expression] = STATE(1251), - [sym_sizeof_expression] = STATE(1251), - [sym_subscript_expression] = STATE(1251), - [sym_call_expression] = STATE(1251), - [sym_field_expression] = STATE(1251), - [sym_compound_literal_expression] = STATE(1251), - [sym_parenthesized_expression] = STATE(1251), - [sym_concatenated_string] = STATE(1251), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3573), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3575), - [sym_char_literal] = ACTIONS(3575), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3577), - [sym_false] = ACTIONS(3577), - [sym_null] = ACTIONS(3577), - [sym_identifier] = ACTIONS(3577), + [1209] = { + [sym__expression] = STATE(1269), + [sym_conditional_expression] = STATE(1269), + [sym_assignment_expression] = STATE(1269), + [sym_pointer_expression] = STATE(1269), + [sym_logical_expression] = STATE(1269), + [sym_bitwise_expression] = STATE(1269), + [sym_equality_expression] = STATE(1269), + [sym_relational_expression] = STATE(1269), + [sym_shift_expression] = STATE(1269), + [sym_math_expression] = STATE(1269), + [sym_cast_expression] = STATE(1269), + [sym_sizeof_expression] = STATE(1269), + [sym_subscript_expression] = STATE(1269), + [sym_call_expression] = STATE(1269), + [sym_field_expression] = STATE(1269), + [sym_compound_literal_expression] = STATE(1269), + [sym_parenthesized_expression] = STATE(1269), + [sym_concatenated_string] = STATE(1269), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3594), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3596), + [sym_char_literal] = ACTIONS(3596), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3598), + [sym_false] = ACTIONS(3598), + [sym_null] = ACTIONS(3598), + [sym_identifier] = ACTIONS(3598), [sym_comment] = ACTIONS(39), }, - [1192] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3579), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1210] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1193] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3581), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1211] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3602), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1194] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3583), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1212] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3604), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1195] = { - [sym_declaration] = STATE(910), - [sym_type_definition] = STATE(910), - [sym__declaration_specifiers] = STATE(683), - [sym_compound_statement] = STATE(910), + [1213] = { + [sym_declaration] = STATE(927), + [sym_type_definition] = STATE(927), + [sym__declaration_specifiers] = STATE(698), + [sym_compound_statement] = STATE(927), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -46816,46 +47162,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(910), - [sym_expression_statement] = STATE(910), - [sym_if_statement] = STATE(910), - [sym_switch_statement] = STATE(910), - [sym_case_statement] = STATE(910), - [sym_while_statement] = STATE(910), - [sym_do_statement] = STATE(910), - [sym_for_statement] = STATE(910), - [sym_return_statement] = STATE(910), - [sym_break_statement] = STATE(910), - [sym_continue_statement] = STATE(910), - [sym_goto_statement] = STATE(910), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), + [sym_labeled_statement] = STATE(927), + [sym_expression_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_switch_statement] = STATE(927), + [sym_case_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_do_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_return_statement] = STATE(927), + [sym_break_statement] = STATE(927), + [sym_continue_statement] = STATE(927), + [sym_goto_statement] = STATE(927), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -46871,42 +47217,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3476), [sym_comment] = ACTIONS(39), }, - [1196] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), + [1214] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_static] = ACTIONS(86), [anon_sym_auto] = ACTIONS(86), [anon_sym_register] = ACTIONS(86), @@ -46915,384 +47261,384 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(86), [anon_sym_volatile] = ACTIONS(86), [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [1197] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3585), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1215] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3606), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1198] = { - [sym__expression] = STATE(1257), - [sym_conditional_expression] = STATE(1257), - [sym_assignment_expression] = STATE(1257), - [sym_pointer_expression] = STATE(1257), - [sym_logical_expression] = STATE(1257), - [sym_bitwise_expression] = STATE(1257), - [sym_equality_expression] = STATE(1257), - [sym_relational_expression] = STATE(1257), - [sym_shift_expression] = STATE(1257), - [sym_math_expression] = STATE(1257), - [sym_cast_expression] = STATE(1257), - [sym_sizeof_expression] = STATE(1257), - [sym_subscript_expression] = STATE(1257), - [sym_call_expression] = STATE(1257), - [sym_field_expression] = STATE(1257), - [sym_compound_literal_expression] = STATE(1257), - [sym_parenthesized_expression] = STATE(1257), - [sym_concatenated_string] = STATE(1257), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3587), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3589), - [sym_char_literal] = ACTIONS(3589), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3591), - [sym_false] = ACTIONS(3591), - [sym_null] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3591), + [1216] = { + [sym__expression] = STATE(1275), + [sym_conditional_expression] = STATE(1275), + [sym_assignment_expression] = STATE(1275), + [sym_pointer_expression] = STATE(1275), + [sym_logical_expression] = STATE(1275), + [sym_bitwise_expression] = STATE(1275), + [sym_equality_expression] = STATE(1275), + [sym_relational_expression] = STATE(1275), + [sym_shift_expression] = STATE(1275), + [sym_math_expression] = STATE(1275), + [sym_cast_expression] = STATE(1275), + [sym_sizeof_expression] = STATE(1275), + [sym_subscript_expression] = STATE(1275), + [sym_call_expression] = STATE(1275), + [sym_field_expression] = STATE(1275), + [sym_compound_literal_expression] = STATE(1275), + [sym_parenthesized_expression] = STATE(1275), + [sym_concatenated_string] = STATE(1275), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3608), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3610), + [sym_char_literal] = ACTIONS(3610), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3612), + [sym_false] = ACTIONS(3612), + [sym_null] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3612), [sym_comment] = ACTIONS(39), }, - [1199] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3593), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1217] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1200] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3595), - [anon_sym_LPAREN] = ACTIONS(3597), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3595), - [sym_preproc_directive] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3597), - [anon_sym_typedef] = ACTIONS(3595), - [anon_sym_extern] = ACTIONS(3595), - [anon_sym_LBRACE] = ACTIONS(3597), - [anon_sym_RBRACE] = ACTIONS(3597), - [anon_sym_STAR] = ACTIONS(3597), - [anon_sym_static] = ACTIONS(3595), - [anon_sym_auto] = ACTIONS(3595), - [anon_sym_register] = ACTIONS(3595), - [anon_sym_inline] = ACTIONS(3595), - [anon_sym_const] = ACTIONS(3595), - [anon_sym_restrict] = ACTIONS(3595), - [anon_sym_volatile] = ACTIONS(3595), - [anon_sym__Atomic] = ACTIONS(3595), - [anon_sym_unsigned] = ACTIONS(3595), - [anon_sym_long] = ACTIONS(3595), - [anon_sym_short] = ACTIONS(3595), - [sym_primitive_type] = ACTIONS(3595), - [anon_sym_enum] = ACTIONS(3595), - [anon_sym_struct] = ACTIONS(3595), - [anon_sym_union] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_else] = ACTIONS(3595), - [anon_sym_switch] = ACTIONS(3595), - [anon_sym_case] = ACTIONS(3595), - [anon_sym_default] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_break] = ACTIONS(3595), - [anon_sym_continue] = ACTIONS(3595), - [anon_sym_goto] = ACTIONS(3595), - [anon_sym_AMP] = ACTIONS(3597), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(3597), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_DASH_DASH] = ACTIONS(3597), - [anon_sym_PLUS_PLUS] = ACTIONS(3597), - [anon_sym_sizeof] = ACTIONS(3595), - [sym_number_literal] = ACTIONS(3597), - [sym_char_literal] = ACTIONS(3597), - [sym_string_literal] = ACTIONS(3597), - [sym_true] = ACTIONS(3595), - [sym_false] = ACTIONS(3595), - [sym_null] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3595), + [1218] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3618), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3616), + [sym_preproc_directive] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3616), + [anon_sym_extern] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_auto] = ACTIONS(3616), + [anon_sym_register] = ACTIONS(3616), + [anon_sym_inline] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_restrict] = ACTIONS(3616), + [anon_sym_volatile] = ACTIONS(3616), + [anon_sym__Atomic] = ACTIONS(3616), + [anon_sym_unsigned] = ACTIONS(3616), + [anon_sym_long] = ACTIONS(3616), + [anon_sym_short] = ACTIONS(3616), + [sym_primitive_type] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3616), + [anon_sym_union] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_case] = ACTIONS(3616), + [anon_sym_default] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_goto] = ACTIONS(3616), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_sizeof] = ACTIONS(3616), + [sym_number_literal] = ACTIONS(3618), + [sym_char_literal] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3618), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3616), [sym_comment] = ACTIONS(39), }, - [1201] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1219] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1202] = { - [sym__expression] = STATE(1259), - [sym_conditional_expression] = STATE(1259), - [sym_assignment_expression] = STATE(1259), - [sym_pointer_expression] = STATE(1259), - [sym_logical_expression] = STATE(1259), - [sym_bitwise_expression] = STATE(1259), - [sym_equality_expression] = STATE(1259), - [sym_relational_expression] = STATE(1259), - [sym_shift_expression] = STATE(1259), - [sym_math_expression] = STATE(1259), - [sym_cast_expression] = STATE(1259), - [sym_sizeof_expression] = STATE(1259), - [sym_subscript_expression] = STATE(1259), - [sym_call_expression] = STATE(1259), - [sym_field_expression] = STATE(1259), - [sym_compound_literal_expression] = STATE(1259), - [sym_parenthesized_expression] = STATE(1259), - [sym_concatenated_string] = STATE(1259), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3599), - [sym_char_literal] = ACTIONS(3599), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3601), - [sym_false] = ACTIONS(3601), - [sym_null] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3601), + [1220] = { + [sym__expression] = STATE(1277), + [sym_conditional_expression] = STATE(1277), + [sym_assignment_expression] = STATE(1277), + [sym_pointer_expression] = STATE(1277), + [sym_logical_expression] = STATE(1277), + [sym_bitwise_expression] = STATE(1277), + [sym_equality_expression] = STATE(1277), + [sym_relational_expression] = STATE(1277), + [sym_shift_expression] = STATE(1277), + [sym_math_expression] = STATE(1277), + [sym_cast_expression] = STATE(1277), + [sym_sizeof_expression] = STATE(1277), + [sym_subscript_expression] = STATE(1277), + [sym_call_expression] = STATE(1277), + [sym_field_expression] = STATE(1277), + [sym_compound_literal_expression] = STATE(1277), + [sym_parenthesized_expression] = STATE(1277), + [sym_concatenated_string] = STATE(1277), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3620), + [sym_char_literal] = ACTIONS(3620), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_identifier] = ACTIONS(3622), [sym_comment] = ACTIONS(39), }, - [1203] = { - [sym__expression] = STATE(1260), - [sym_conditional_expression] = STATE(1260), - [sym_assignment_expression] = STATE(1260), - [sym_pointer_expression] = STATE(1260), - [sym_logical_expression] = STATE(1260), - [sym_bitwise_expression] = STATE(1260), - [sym_equality_expression] = STATE(1260), - [sym_relational_expression] = STATE(1260), - [sym_shift_expression] = STATE(1260), - [sym_math_expression] = STATE(1260), - [sym_cast_expression] = STATE(1260), - [sym_sizeof_expression] = STATE(1260), - [sym_subscript_expression] = STATE(1260), - [sym_call_expression] = STATE(1260), - [sym_field_expression] = STATE(1260), - [sym_compound_literal_expression] = STATE(1260), - [sym_parenthesized_expression] = STATE(1260), - [sym_concatenated_string] = STATE(1260), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3603), - [sym_char_literal] = ACTIONS(3603), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3605), - [sym_false] = ACTIONS(3605), - [sym_null] = ACTIONS(3605), - [sym_identifier] = ACTIONS(3605), + [1221] = { + [sym__expression] = STATE(1278), + [sym_conditional_expression] = STATE(1278), + [sym_assignment_expression] = STATE(1278), + [sym_pointer_expression] = STATE(1278), + [sym_logical_expression] = STATE(1278), + [sym_bitwise_expression] = STATE(1278), + [sym_equality_expression] = STATE(1278), + [sym_relational_expression] = STATE(1278), + [sym_shift_expression] = STATE(1278), + [sym_math_expression] = STATE(1278), + [sym_cast_expression] = STATE(1278), + [sym_sizeof_expression] = STATE(1278), + [sym_subscript_expression] = STATE(1278), + [sym_call_expression] = STATE(1278), + [sym_field_expression] = STATE(1278), + [sym_compound_literal_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3624), + [sym_char_literal] = ACTIONS(3624), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [sym_null] = ACTIONS(3626), + [sym_identifier] = ACTIONS(3626), [sym_comment] = ACTIONS(39), }, - [1204] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(3607), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1222] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(3628), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1205] = { - [sym_declaration] = STATE(682), - [sym_type_definition] = STATE(682), - [sym__declaration_specifiers] = STATE(683), - [sym_compound_statement] = STATE(682), + [1223] = { + [sym_declaration] = STATE(697), + [sym_type_definition] = STATE(697), + [sym__declaration_specifiers] = STATE(698), + [sym_compound_statement] = STATE(697), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -47300,46 +47646,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(682), - [sym_expression_statement] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_switch_statement] = STATE(682), - [sym_case_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_do_statement] = STATE(682), - [sym_for_statement] = STATE(682), - [sym_return_statement] = STATE(682), - [sym_break_statement] = STATE(682), - [sym_continue_statement] = STATE(682), - [sym_goto_statement] = STATE(682), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), + [sym_labeled_statement] = STATE(697), + [sym_expression_statement] = STATE(697), + [sym_if_statement] = STATE(697), + [sym_switch_statement] = STATE(697), + [sym_case_statement] = STATE(697), + [sym_while_statement] = STATE(697), + [sym_do_statement] = STATE(697), + [sym_for_statement] = STATE(697), + [sym_return_statement] = STATE(697), + [sym_break_statement] = STATE(697), + [sym_continue_statement] = STATE(697), + [sym_goto_statement] = STATE(697), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -47355,75 +47701,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3609), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3630), [sym_comment] = ACTIONS(39), }, - [1206] = { - [sym__expression] = STATE(1263), - [sym_conditional_expression] = STATE(1263), - [sym_assignment_expression] = STATE(1263), - [sym_pointer_expression] = STATE(1263), - [sym_logical_expression] = STATE(1263), - [sym_bitwise_expression] = STATE(1263), - [sym_equality_expression] = STATE(1263), - [sym_relational_expression] = STATE(1263), - [sym_shift_expression] = STATE(1263), - [sym_math_expression] = STATE(1263), - [sym_cast_expression] = STATE(1263), - [sym_sizeof_expression] = STATE(1263), - [sym_subscript_expression] = STATE(1263), - [sym_call_expression] = STATE(1263), - [sym_field_expression] = STATE(1263), - [sym_compound_literal_expression] = STATE(1263), - [sym_parenthesized_expression] = STATE(1263), - [sym_concatenated_string] = STATE(1263), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3611), - [sym_char_literal] = ACTIONS(3611), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3613), - [sym_false] = ACTIONS(3613), - [sym_null] = ACTIONS(3613), - [sym_identifier] = ACTIONS(3613), + [1224] = { + [sym__expression] = STATE(1281), + [sym_conditional_expression] = STATE(1281), + [sym_assignment_expression] = STATE(1281), + [sym_pointer_expression] = STATE(1281), + [sym_logical_expression] = STATE(1281), + [sym_bitwise_expression] = STATE(1281), + [sym_equality_expression] = STATE(1281), + [sym_relational_expression] = STATE(1281), + [sym_shift_expression] = STATE(1281), + [sym_math_expression] = STATE(1281), + [sym_cast_expression] = STATE(1281), + [sym_sizeof_expression] = STATE(1281), + [sym_subscript_expression] = STATE(1281), + [sym_call_expression] = STATE(1281), + [sym_field_expression] = STATE(1281), + [sym_compound_literal_expression] = STATE(1281), + [sym_parenthesized_expression] = STATE(1281), + [sym_concatenated_string] = STATE(1281), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3632), + [sym_char_literal] = ACTIONS(3632), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [sym_null] = ACTIONS(3634), + [sym_identifier] = ACTIONS(3634), [sym_comment] = ACTIONS(39), }, - [1207] = { - [sym_declaration] = STATE(1264), - [sym__declaration_specifiers] = STATE(683), + [1225] = { + [sym_declaration] = STATE(1282), + [sym__declaration_specifiers] = STATE(698), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -47431,31 +47777,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym__expression] = STATE(1265), - [sym_conditional_expression] = STATE(1265), - [sym_assignment_expression] = STATE(1265), - [sym_pointer_expression] = STATE(1265), - [sym_logical_expression] = STATE(1265), - [sym_bitwise_expression] = STATE(1265), - [sym_equality_expression] = STATE(1265), - [sym_relational_expression] = STATE(1265), - [sym_shift_expression] = STATE(1265), - [sym_math_expression] = STATE(1265), - [sym_cast_expression] = STATE(1265), - [sym_sizeof_expression] = STATE(1265), - [sym_subscript_expression] = STATE(1265), - [sym_call_expression] = STATE(1265), - [sym_field_expression] = STATE(1265), - [sym_compound_literal_expression] = STATE(1265), - [sym_parenthesized_expression] = STATE(1265), - [sym_concatenated_string] = STATE(1265), + [sym__expression] = STATE(1283), + [sym_conditional_expression] = STATE(1283), + [sym_assignment_expression] = STATE(1283), + [sym_pointer_expression] = STATE(1283), + [sym_logical_expression] = STATE(1283), + [sym_bitwise_expression] = STATE(1283), + [sym_equality_expression] = STATE(1283), + [sym_relational_expression] = STATE(1283), + [sym_shift_expression] = STATE(1283), + [sym_math_expression] = STATE(1283), + [sym_cast_expression] = STATE(1283), + [sym_sizeof_expression] = STATE(1283), + [sym_subscript_expression] = STATE(1283), + [sym_call_expression] = STATE(1283), + [sym_field_expression] = STATE(1283), + [sym_compound_literal_expression] = STATE(1283), + [sym_parenthesized_expression] = STATE(1283), + [sym_concatenated_string] = STATE(1283), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3615), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3636), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -47471,1324 +47817,268 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3617), - [sym_char_literal] = ACTIONS(3617), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3619), - [sym_false] = ACTIONS(3619), - [sym_null] = ACTIONS(3619), - [sym_identifier] = ACTIONS(1661), - [sym_comment] = ACTIONS(39), - }, - [1208] = { - [sym_compound_statement] = STATE(701), - [sym_labeled_statement] = STATE(701), - [sym_expression_statement] = STATE(701), - [sym_if_statement] = STATE(701), - [sym_switch_statement] = STATE(701), - [sym_case_statement] = STATE(701), - [sym_while_statement] = STATE(701), - [sym_do_statement] = STATE(701), - [sym_for_statement] = STATE(701), - [sym_return_statement] = STATE(701), - [sym_break_statement] = STATE(701), - [sym_continue_statement] = STATE(701), - [sym_goto_statement] = STATE(701), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3322), - [sym_comment] = ACTIONS(39), - }, - [1209] = { - [sym_compound_statement] = STATE(1200), - [sym_labeled_statement] = STATE(1200), - [sym_expression_statement] = STATE(1200), - [sym_if_statement] = STATE(1200), - [sym_switch_statement] = STATE(1200), - [sym_case_statement] = STATE(1200), - [sym_while_statement] = STATE(1200), - [sym_do_statement] = STATE(1200), - [sym_for_statement] = STATE(1200), - [sym_return_statement] = STATE(1200), - [sym_break_statement] = STATE(1200), - [sym_continue_statement] = STATE(1200), - [sym_goto_statement] = STATE(1200), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), - [sym_comment] = ACTIONS(39), - }, - [1210] = { - [sym_compound_statement] = STATE(1214), - [sym_labeled_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_case_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_goto_statement] = STATE(1214), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), - [sym_comment] = ACTIONS(39), - }, - [1211] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3621), - [sym_comment] = ACTIONS(39), - }, - [1212] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1267), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1213] = { - [sym__expression] = STATE(1268), - [sym_conditional_expression] = STATE(1268), - [sym_assignment_expression] = STATE(1268), - [sym_pointer_expression] = STATE(1268), - [sym_logical_expression] = STATE(1268), - [sym_bitwise_expression] = STATE(1268), - [sym_equality_expression] = STATE(1268), - [sym_relational_expression] = STATE(1268), - [sym_shift_expression] = STATE(1268), - [sym_math_expression] = STATE(1268), - [sym_cast_expression] = STATE(1268), - [sym_sizeof_expression] = STATE(1268), - [sym_subscript_expression] = STATE(1268), - [sym_call_expression] = STATE(1268), - [sym_field_expression] = STATE(1268), - [sym_compound_literal_expression] = STATE(1268), - [sym_parenthesized_expression] = STATE(1268), - [sym_concatenated_string] = STATE(1268), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3623), - [sym_char_literal] = ACTIONS(3623), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3625), - [sym_false] = ACTIONS(3625), - [sym_null] = ACTIONS(3625), - [sym_identifier] = ACTIONS(3625), - [sym_comment] = ACTIONS(39), - }, - [1214] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3629), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3627), - [sym_preproc_directive] = ACTIONS(3627), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_typedef] = ACTIONS(3627), - [anon_sym_extern] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3629), - [anon_sym_RBRACE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_static] = ACTIONS(3627), - [anon_sym_auto] = ACTIONS(3627), - [anon_sym_register] = ACTIONS(3627), - [anon_sym_inline] = ACTIONS(3627), - [anon_sym_const] = ACTIONS(3627), - [anon_sym_restrict] = ACTIONS(3627), - [anon_sym_volatile] = ACTIONS(3627), - [anon_sym__Atomic] = ACTIONS(3627), - [anon_sym_unsigned] = ACTIONS(3627), - [anon_sym_long] = ACTIONS(3627), - [anon_sym_short] = ACTIONS(3627), - [sym_primitive_type] = ACTIONS(3627), - [anon_sym_enum] = ACTIONS(3627), - [anon_sym_struct] = ACTIONS(3627), - [anon_sym_union] = ACTIONS(3627), - [anon_sym_if] = ACTIONS(3627), - [anon_sym_else] = ACTIONS(3627), - [anon_sym_switch] = ACTIONS(3627), - [anon_sym_case] = ACTIONS(3627), - [anon_sym_default] = ACTIONS(3627), - [anon_sym_while] = ACTIONS(3627), - [anon_sym_do] = ACTIONS(3627), - [anon_sym_for] = ACTIONS(3627), - [anon_sym_return] = ACTIONS(3627), - [anon_sym_break] = ACTIONS(3627), - [anon_sym_continue] = ACTIONS(3627), - [anon_sym_goto] = ACTIONS(3627), - [anon_sym_AMP] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3629), - [anon_sym_PLUS_PLUS] = ACTIONS(3629), - [anon_sym_sizeof] = ACTIONS(3627), - [sym_number_literal] = ACTIONS(3629), - [sym_char_literal] = ACTIONS(3629), - [sym_string_literal] = ACTIONS(3629), - [sym_true] = ACTIONS(3627), - [sym_false] = ACTIONS(3627), - [sym_null] = ACTIONS(3627), - [sym_identifier] = ACTIONS(3627), - [sym_comment] = ACTIONS(39), - }, - [1215] = { - [sym_compound_statement] = STATE(1269), - [sym_labeled_statement] = STATE(1269), - [sym_expression_statement] = STATE(1269), - [sym_if_statement] = STATE(1269), - [sym_switch_statement] = STATE(1269), - [sym_case_statement] = STATE(1269), - [sym_while_statement] = STATE(1269), - [sym_do_statement] = STATE(1269), - [sym_for_statement] = STATE(1269), - [sym_return_statement] = STATE(1269), - [sym_break_statement] = STATE(1269), - [sym_continue_statement] = STATE(1269), - [sym_goto_statement] = STATE(1269), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1701), - [sym_comment] = ACTIONS(39), - }, - [1216] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3631), - [sym_comment] = ACTIONS(39), - }, - [1217] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1271), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1218] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3243), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3241), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3241), - [sym_preproc_directive] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_typedef] = ACTIONS(3241), - [anon_sym_extern] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_auto] = ACTIONS(3241), - [anon_sym_register] = ACTIONS(3241), - [anon_sym_inline] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_restrict] = ACTIONS(3241), - [anon_sym_volatile] = ACTIONS(3241), - [anon_sym__Atomic] = ACTIONS(3241), - [anon_sym_unsigned] = ACTIONS(3241), - [anon_sym_long] = ACTIONS(3241), - [anon_sym_short] = ACTIONS(3241), - [sym_primitive_type] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3241), - [anon_sym_union] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_goto] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_sizeof] = ACTIONS(3241), - [sym_number_literal] = ACTIONS(3243), - [sym_char_literal] = ACTIONS(3243), - [sym_string_literal] = ACTIONS(3243), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_identifier] = ACTIONS(3241), - [sym_comment] = ACTIONS(39), - }, - [1219] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3245), - [sym_preproc_directive] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_typedef] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_auto] = ACTIONS(3245), - [anon_sym_register] = ACTIONS(3245), - [anon_sym_inline] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_restrict] = ACTIONS(3245), - [anon_sym_volatile] = ACTIONS(3245), - [anon_sym__Atomic] = ACTIONS(3245), - [anon_sym_unsigned] = ACTIONS(3245), - [anon_sym_long] = ACTIONS(3245), - [anon_sym_short] = ACTIONS(3245), - [sym_primitive_type] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_goto] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_sizeof] = ACTIONS(3245), - [sym_number_literal] = ACTIONS(3247), - [sym_char_literal] = ACTIONS(3247), - [sym_string_literal] = ACTIONS(3247), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_identifier] = ACTIONS(3245), - [sym_comment] = ACTIONS(39), - }, - [1220] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3249), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3249), - [sym_preproc_directive] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_typedef] = ACTIONS(3249), - [anon_sym_extern] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_auto] = ACTIONS(3249), - [anon_sym_register] = ACTIONS(3249), - [anon_sym_inline] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_restrict] = ACTIONS(3249), - [anon_sym_volatile] = ACTIONS(3249), - [anon_sym__Atomic] = ACTIONS(3249), - [anon_sym_unsigned] = ACTIONS(3249), - [anon_sym_long] = ACTIONS(3249), - [anon_sym_short] = ACTIONS(3249), - [sym_primitive_type] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_goto] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_sizeof] = ACTIONS(3249), - [sym_number_literal] = ACTIONS(3251), - [sym_char_literal] = ACTIONS(3251), - [sym_string_literal] = ACTIONS(3251), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_identifier] = ACTIONS(3249), - [sym_comment] = ACTIONS(39), - }, - [1221] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3255), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3253), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3253), - [sym_preproc_directive] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_typedef] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_auto] = ACTIONS(3253), - [anon_sym_register] = ACTIONS(3253), - [anon_sym_inline] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_restrict] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym__Atomic] = ACTIONS(3253), - [anon_sym_unsigned] = ACTIONS(3253), - [anon_sym_long] = ACTIONS(3253), - [anon_sym_short] = ACTIONS(3253), - [sym_primitive_type] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_union] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_sizeof] = ACTIONS(3253), - [sym_number_literal] = ACTIONS(3255), - [sym_char_literal] = ACTIONS(3255), - [sym_string_literal] = ACTIONS(3255), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [sym_null] = ACTIONS(3253), - [sym_identifier] = ACTIONS(3253), - [sym_comment] = ACTIONS(39), - }, - [1222] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3259), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3257), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3257), - [sym_preproc_directive] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_typedef] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_auto] = ACTIONS(3257), - [anon_sym_register] = ACTIONS(3257), - [anon_sym_inline] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_restrict] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym__Atomic] = ACTIONS(3257), - [anon_sym_unsigned] = ACTIONS(3257), - [anon_sym_long] = ACTIONS(3257), - [anon_sym_short] = ACTIONS(3257), - [sym_primitive_type] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_union] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_sizeof] = ACTIONS(3257), - [sym_number_literal] = ACTIONS(3259), - [sym_char_literal] = ACTIONS(3259), - [sym_string_literal] = ACTIONS(3259), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3257), - [sym_comment] = ACTIONS(39), - }, - [1223] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3261), - [anon_sym_LPAREN] = ACTIONS(3263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3261), - [sym_preproc_directive] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_typedef] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_auto] = ACTIONS(3261), - [anon_sym_register] = ACTIONS(3261), - [anon_sym_inline] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_restrict] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym__Atomic] = ACTIONS(3261), - [anon_sym_unsigned] = ACTIONS(3261), - [anon_sym_long] = ACTIONS(3261), - [anon_sym_short] = ACTIONS(3261), - [sym_primitive_type] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_union] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_case] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_sizeof] = ACTIONS(3261), - [sym_number_literal] = ACTIONS(3263), - [sym_char_literal] = ACTIONS(3263), - [sym_string_literal] = ACTIONS(3263), - [sym_true] = ACTIONS(3261), - [sym_false] = ACTIONS(3261), - [sym_null] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3261), - [sym_comment] = ACTIONS(39), - }, - [1224] = { - [anon_sym_LPAREN] = ACTIONS(3633), - [sym_comment] = ACTIONS(39), - }, - [1225] = { - [anon_sym_LPAREN] = ACTIONS(3635), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3638), + [sym_char_literal] = ACTIONS(3638), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [sym_null] = ACTIONS(3640), + [sym_identifier] = ACTIONS(1675), [sym_comment] = ACTIONS(39), }, [1226] = { - [sym__expression] = STATE(1274), - [sym_conditional_expression] = STATE(1274), - [sym_assignment_expression] = STATE(1274), - [sym_pointer_expression] = STATE(1274), - [sym_logical_expression] = STATE(1274), - [sym_bitwise_expression] = STATE(1274), - [sym_equality_expression] = STATE(1274), - [sym_relational_expression] = STATE(1274), - [sym_shift_expression] = STATE(1274), - [sym_math_expression] = STATE(1274), - [sym_cast_expression] = STATE(1274), - [sym_sizeof_expression] = STATE(1274), - [sym_subscript_expression] = STATE(1274), - [sym_call_expression] = STATE(1274), - [sym_field_expression] = STATE(1274), - [sym_compound_literal_expression] = STATE(1274), - [sym_parenthesized_expression] = STATE(1274), - [sym_concatenated_string] = STATE(1274), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_DASH_DASH] = ACTIONS(984), - [anon_sym_PLUS_PLUS] = ACTIONS(984), - [anon_sym_sizeof] = ACTIONS(986), - [sym_number_literal] = ACTIONS(3637), - [sym_char_literal] = ACTIONS(3637), - [sym_string_literal] = ACTIONS(990), - [sym_true] = ACTIONS(3639), - [sym_false] = ACTIONS(3639), - [sym_null] = ACTIONS(3639), - [sym_identifier] = ACTIONS(3639), + [sym_compound_statement] = STATE(716), + [sym_labeled_statement] = STATE(716), + [sym_expression_statement] = STATE(716), + [sym_if_statement] = STATE(716), + [sym_switch_statement] = STATE(716), + [sym_case_statement] = STATE(716), + [sym_while_statement] = STATE(716), + [sym_do_statement] = STATE(716), + [sym_for_statement] = STATE(716), + [sym_return_statement] = STATE(716), + [sym_break_statement] = STATE(716), + [sym_continue_statement] = STATE(716), + [sym_goto_statement] = STATE(716), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3343), [sym_comment] = ACTIONS(39), }, [1227] = { - [anon_sym_COLON] = ACTIONS(3641), + [sym_compound_statement] = STATE(1218), + [sym_labeled_statement] = STATE(1218), + [sym_expression_statement] = STATE(1218), + [sym_if_statement] = STATE(1218), + [sym_switch_statement] = STATE(1218), + [sym_case_statement] = STATE(1218), + [sym_while_statement] = STATE(1218), + [sym_do_statement] = STATE(1218), + [sym_for_statement] = STATE(1218), + [sym_return_statement] = STATE(1218), + [sym_break_statement] = STATE(1218), + [sym_continue_statement] = STATE(1218), + [sym_goto_statement] = STATE(1218), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, [1228] = { - [anon_sym_LPAREN] = ACTIONS(3643), + [sym_compound_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, [1229] = { - [anon_sym_LPAREN] = ACTIONS(3645), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3642), [sym_comment] = ACTIONS(39), }, [1230] = { - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1285), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1231] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_auto] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3649), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [sym_char_literal] = ACTIONS(3288), - [sym_string_literal] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3286), - [sym_comment] = ACTIONS(39), - }, - [1232] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3296), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3294), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3294), - [sym_preproc_directive] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_typedef] = ACTIONS(3294), - [anon_sym_extern] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_STAR] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_auto] = ACTIONS(3294), - [anon_sym_register] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_restrict] = ACTIONS(3294), - [anon_sym_volatile] = ACTIONS(3294), - [anon_sym__Atomic] = ACTIONS(3294), - [anon_sym_unsigned] = ACTIONS(3294), - [anon_sym_long] = ACTIONS(3294), - [anon_sym_short] = ACTIONS(3294), - [sym_primitive_type] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), - [anon_sym_struct] = ACTIONS(3294), - [anon_sym_union] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_goto] = ACTIONS(3294), - [anon_sym_AMP] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3294), - [sym_number_literal] = ACTIONS(3296), - [sym_char_literal] = ACTIONS(3296), - [sym_string_literal] = ACTIONS(3296), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3294), - [sym_comment] = ACTIONS(39), - }, - [1233] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3306), - [anon_sym_LPAREN] = ACTIONS(3308), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3306), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3306), - [sym_preproc_directive] = ACTIONS(3306), - [anon_sym_SEMI] = ACTIONS(3308), - [anon_sym_typedef] = ACTIONS(3306), - [anon_sym_extern] = ACTIONS(3306), - [anon_sym_LBRACE] = ACTIONS(3308), - [anon_sym_STAR] = ACTIONS(3308), - [anon_sym_static] = ACTIONS(3306), - [anon_sym_auto] = ACTIONS(3306), - [anon_sym_register] = ACTIONS(3306), - [anon_sym_inline] = ACTIONS(3306), - [anon_sym_const] = ACTIONS(3306), - [anon_sym_restrict] = ACTIONS(3306), - [anon_sym_volatile] = ACTIONS(3306), - [anon_sym__Atomic] = ACTIONS(3306), - [anon_sym_unsigned] = ACTIONS(3306), - [anon_sym_long] = ACTIONS(3306), - [anon_sym_short] = ACTIONS(3306), - [sym_primitive_type] = ACTIONS(3306), - [anon_sym_enum] = ACTIONS(3306), - [anon_sym_struct] = ACTIONS(3306), - [anon_sym_union] = ACTIONS(3306), - [anon_sym_if] = ACTIONS(3306), - [anon_sym_else] = ACTIONS(3306), - [anon_sym_switch] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3306), - [anon_sym_default] = ACTIONS(3306), - [anon_sym_while] = ACTIONS(3306), - [anon_sym_do] = ACTIONS(3306), - [anon_sym_for] = ACTIONS(3306), - [anon_sym_return] = ACTIONS(3306), - [anon_sym_break] = ACTIONS(3306), - [anon_sym_continue] = ACTIONS(3306), - [anon_sym_goto] = ACTIONS(3306), - [anon_sym_AMP] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3306), - [anon_sym_DASH] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3308), - [anon_sym_sizeof] = ACTIONS(3306), - [sym_number_literal] = ACTIONS(3308), - [sym_char_literal] = ACTIONS(3308), - [sym_string_literal] = ACTIONS(3308), - [sym_true] = ACTIONS(3306), - [sym_false] = ACTIONS(3306), - [sym_null] = ACTIONS(3306), - [sym_identifier] = ACTIONS(3306), - [sym_comment] = ACTIONS(39), - }, - [1234] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1235] = { - [sym_compound_statement] = STATE(1281), - [sym_labeled_statement] = STATE(1281), - [sym_expression_statement] = STATE(1281), - [sym_if_statement] = STATE(1281), - [sym_switch_statement] = STATE(1281), - [sym_case_statement] = STATE(1281), - [sym_while_statement] = STATE(1281), - [sym_do_statement] = STATE(1281), - [sym_for_statement] = STATE(1281), - [sym_return_statement] = STATE(1281), - [sym_break_statement] = STATE(1281), - [sym_continue_statement] = STATE(1281), - [sym_goto_statement] = STATE(1281), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3148), - [sym_comment] = ACTIONS(39), - }, - [1236] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1283), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3653), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1237] = { - [sym__expression] = STATE(1284), - [sym_conditional_expression] = STATE(1284), - [sym_assignment_expression] = STATE(1284), - [sym_pointer_expression] = STATE(1284), - [sym_logical_expression] = STATE(1284), - [sym_bitwise_expression] = STATE(1284), - [sym_equality_expression] = STATE(1284), - [sym_relational_expression] = STATE(1284), - [sym_shift_expression] = STATE(1284), - [sym_math_expression] = STATE(1284), - [sym_cast_expression] = STATE(1284), - [sym_sizeof_expression] = STATE(1284), - [sym_subscript_expression] = STATE(1284), - [sym_call_expression] = STATE(1284), - [sym_field_expression] = STATE(1284), - [sym_compound_literal_expression] = STATE(1284), - [sym_parenthesized_expression] = STATE(1284), - [sym_concatenated_string] = STATE(1284), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3653), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3655), - [sym_char_literal] = ACTIONS(3655), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3657), - [sym_false] = ACTIONS(3657), - [sym_null] = ACTIONS(3657), - [sym_identifier] = ACTIONS(3657), - [sym_comment] = ACTIONS(39), - }, - [1238] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1239] = { [sym__expression] = STATE(1286), [sym_conditional_expression] = STATE(1286), [sym_assignment_expression] = STATE(1286), @@ -48807,247 +48097,549 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1286), [sym_parenthesized_expression] = STATE(1286), [sym_concatenated_string] = STATE(1286), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3661), - [sym_char_literal] = ACTIONS(3661), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3663), - [sym_false] = ACTIONS(3663), - [sym_null] = ACTIONS(3663), - [sym_identifier] = ACTIONS(3663), - [sym_comment] = ACTIONS(39), - }, - [1240] = { - [sym__expression] = STATE(1287), - [sym_conditional_expression] = STATE(1287), - [sym_assignment_expression] = STATE(1287), - [sym_pointer_expression] = STATE(1287), - [sym_logical_expression] = STATE(1287), - [sym_bitwise_expression] = STATE(1287), - [sym_equality_expression] = STATE(1287), - [sym_relational_expression] = STATE(1287), - [sym_shift_expression] = STATE(1287), - [sym_math_expression] = STATE(1287), - [sym_cast_expression] = STATE(1287), - [sym_sizeof_expression] = STATE(1287), - [sym_subscript_expression] = STATE(1287), - [sym_call_expression] = STATE(1287), - [sym_field_expression] = STATE(1287), - [sym_compound_literal_expression] = STATE(1287), - [sym_parenthesized_expression] = STATE(1287), - [sym_concatenated_string] = STATE(1287), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3665), - [sym_char_literal] = ACTIONS(3665), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3667), - [sym_false] = ACTIONS(3667), - [sym_null] = ACTIONS(3667), - [sym_identifier] = ACTIONS(3667), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3644), + [sym_char_literal] = ACTIONS(3644), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_identifier] = ACTIONS(3646), [sym_comment] = ACTIONS(39), }, - [1241] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1232] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_auto] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [sym_char_literal] = ACTIONS(3650), + [sym_string_literal] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [sym_null] = ACTIONS(3648), + [sym_identifier] = ACTIONS(3648), [sym_comment] = ACTIONS(39), }, - [1242] = { - [sym_declaration] = STATE(1006), - [sym_type_definition] = STATE(1006), - [sym__declaration_specifiers] = STATE(1007), - [sym_compound_statement] = STATE(1006), - [sym_storage_class_specifier] = STATE(93), - [sym_type_qualifier] = STATE(93), - [sym__type_specifier] = STATE(92), - [sym_sized_type_specifier] = STATE(92), - [sym_enum_specifier] = STATE(92), - [sym_struct_specifier] = STATE(92), - [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(1006), - [sym_expression_statement] = STATE(1006), - [sym_if_statement] = STATE(1006), - [sym_switch_statement] = STATE(1006), - [sym_case_statement] = STATE(1006), - [sym_while_statement] = STATE(1006), - [sym_do_statement] = STATE(1006), - [sym_for_statement] = STATE(1006), - [sym_return_statement] = STATE(1006), - [sym_break_statement] = STATE(1006), - [sym_continue_statement] = STATE(1006), - [sym_goto_statement] = STATE(1006), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [sym_macro_type_specifier] = STATE(92), - [aux_sym__declaration_specifiers_repeat1] = STATE(93), - [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_typedef] = ACTIONS(145), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(171), - [anon_sym_long] = ACTIONS(171), - [anon_sym_short] = ACTIONS(171), - [sym_primitive_type] = ACTIONS(173), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3671), + [1233] = { + [sym_compound_statement] = STATE(1287), + [sym_labeled_statement] = STATE(1287), + [sym_expression_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym_case_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_break_statement] = STATE(1287), + [sym_continue_statement] = STATE(1287), + [sym_goto_statement] = STATE(1287), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1715), + [sym_comment] = ACTIONS(39), + }, + [1234] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3652), + [sym_comment] = ACTIONS(39), + }, + [1235] = { + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1289), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [1236] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3264), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3262), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_auto] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [sym_char_literal] = ACTIONS(3264), + [sym_string_literal] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_identifier] = ACTIONS(3262), + [sym_comment] = ACTIONS(39), + }, + [1237] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3268), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3266), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_auto] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [sym_char_literal] = ACTIONS(3268), + [sym_string_literal] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_identifier] = ACTIONS(3266), + [sym_comment] = ACTIONS(39), + }, + [1238] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3272), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3270), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3270), + [sym_preproc_directive] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_typedef] = ACTIONS(3270), + [anon_sym_extern] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_auto] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_restrict] = ACTIONS(3270), + [anon_sym_volatile] = ACTIONS(3270), + [anon_sym__Atomic] = ACTIONS(3270), + [anon_sym_unsigned] = ACTIONS(3270), + [anon_sym_long] = ACTIONS(3270), + [anon_sym_short] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_sizeof] = ACTIONS(3270), + [sym_number_literal] = ACTIONS(3272), + [sym_char_literal] = ACTIONS(3272), + [sym_string_literal] = ACTIONS(3272), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_identifier] = ACTIONS(3270), + [sym_comment] = ACTIONS(39), + }, + [1239] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3276), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3274), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3274), + [sym_preproc_directive] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_typedef] = ACTIONS(3274), + [anon_sym_extern] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_auto] = ACTIONS(3274), + [anon_sym_register] = ACTIONS(3274), + [anon_sym_inline] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_restrict] = ACTIONS(3274), + [anon_sym_volatile] = ACTIONS(3274), + [anon_sym__Atomic] = ACTIONS(3274), + [anon_sym_unsigned] = ACTIONS(3274), + [anon_sym_long] = ACTIONS(3274), + [anon_sym_short] = ACTIONS(3274), + [sym_primitive_type] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_sizeof] = ACTIONS(3274), + [sym_number_literal] = ACTIONS(3276), + [sym_char_literal] = ACTIONS(3276), + [sym_string_literal] = ACTIONS(3276), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_identifier] = ACTIONS(3274), + [sym_comment] = ACTIONS(39), + }, + [1240] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3280), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3278), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_auto] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym_AMP] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [sym_char_literal] = ACTIONS(3280), + [sym_string_literal] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_identifier] = ACTIONS(3278), + [sym_comment] = ACTIONS(39), + }, + [1241] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3284), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3282), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_auto] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym_AMP] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [sym_char_literal] = ACTIONS(3284), + [sym_string_literal] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_identifier] = ACTIONS(3282), + [sym_comment] = ACTIONS(39), + }, + [1242] = { + [anon_sym_LPAREN] = ACTIONS(3654), [sym_comment] = ACTIONS(39), }, [1243] = { - [sym__expression] = STATE(1290), - [sym_conditional_expression] = STATE(1290), - [sym_assignment_expression] = STATE(1290), - [sym_pointer_expression] = STATE(1290), - [sym_logical_expression] = STATE(1290), - [sym_bitwise_expression] = STATE(1290), - [sym_equality_expression] = STATE(1290), - [sym_relational_expression] = STATE(1290), - [sym_shift_expression] = STATE(1290), - [sym_math_expression] = STATE(1290), - [sym_cast_expression] = STATE(1290), - [sym_sizeof_expression] = STATE(1290), - [sym_subscript_expression] = STATE(1290), - [sym_call_expression] = STATE(1290), - [sym_field_expression] = STATE(1290), - [sym_compound_literal_expression] = STATE(1290), - [sym_parenthesized_expression] = STATE(1290), - [sym_concatenated_string] = STATE(1290), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3673), - [sym_char_literal] = ACTIONS(3673), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3675), - [sym_false] = ACTIONS(3675), - [sym_null] = ACTIONS(3675), - [sym_identifier] = ACTIONS(3675), + [anon_sym_LPAREN] = ACTIONS(3656), [sym_comment] = ACTIONS(39), }, [1244] = { - [sym_declaration] = STATE(1291), - [sym__declaration_specifiers] = STATE(683), - [sym_storage_class_specifier] = STATE(93), - [sym_type_qualifier] = STATE(93), - [sym__type_specifier] = STATE(92), - [sym_sized_type_specifier] = STATE(92), - [sym_enum_specifier] = STATE(92), - [sym_struct_specifier] = STATE(92), - [sym_union_specifier] = STATE(92), [sym__expression] = STATE(1292), [sym_conditional_expression] = STATE(1292), [sym_assignment_expression] = STATE(1292), @@ -49066,724 +48658,403 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1292), [sym_parenthesized_expression] = STATE(1292), [sym_concatenated_string] = STATE(1292), - [sym_macro_type_specifier] = STATE(92), - [aux_sym__declaration_specifiers_repeat1] = STATE(93), - [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3677), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(171), - [anon_sym_long] = ACTIONS(171), - [anon_sym_short] = ACTIONS(171), - [sym_primitive_type] = ACTIONS(173), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3679), - [sym_char_literal] = ACTIONS(3679), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3681), - [sym_false] = ACTIONS(3681), - [sym_null] = ACTIONS(3681), - [sym_identifier] = ACTIONS(1661), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_sizeof] = ACTIONS(998), + [sym_number_literal] = ACTIONS(3658), + [sym_char_literal] = ACTIONS(3658), + [sym_string_literal] = ACTIONS(1002), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_identifier] = ACTIONS(3660), [sym_comment] = ACTIONS(39), }, [1245] = { - [sym_compound_statement] = STATE(1015), - [sym_labeled_statement] = STATE(1015), - [sym_expression_statement] = STATE(1015), - [sym_if_statement] = STATE(1015), - [sym_switch_statement] = STATE(1015), - [sym_case_statement] = STATE(1015), - [sym_while_statement] = STATE(1015), - [sym_do_statement] = STATE(1015), - [sym_for_statement] = STATE(1015), - [sym_return_statement] = STATE(1015), - [sym_break_statement] = STATE(1015), - [sym_continue_statement] = STATE(1015), - [sym_goto_statement] = STATE(1015), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3423), + [anon_sym_COLON] = ACTIONS(3662), [sym_comment] = ACTIONS(39), }, [1246] = { - [sym_compound_statement] = STATE(1293), - [sym_labeled_statement] = STATE(1293), - [sym_expression_statement] = STATE(1293), - [sym_if_statement] = STATE(1293), - [sym_switch_statement] = STATE(1293), - [sym_case_statement] = STATE(1293), - [sym_while_statement] = STATE(1293), - [sym_do_statement] = STATE(1293), - [sym_for_statement] = STATE(1293), - [sym_return_statement] = STATE(1293), - [sym_break_statement] = STATE(1293), - [sym_continue_statement] = STATE(1293), - [sym_goto_statement] = STATE(1293), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(3664), [sym_comment] = ACTIONS(39), }, [1247] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3497), - [sym_preproc_directive] = ACTIONS(3497), - [anon_sym_SEMI] = ACTIONS(3499), - [anon_sym_typedef] = ACTIONS(3497), - [anon_sym_extern] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3499), - [anon_sym_static] = ACTIONS(3497), - [anon_sym_auto] = ACTIONS(3497), - [anon_sym_register] = ACTIONS(3497), - [anon_sym_inline] = ACTIONS(3497), - [anon_sym_const] = ACTIONS(3497), - [anon_sym_restrict] = ACTIONS(3497), - [anon_sym_volatile] = ACTIONS(3497), - [anon_sym__Atomic] = ACTIONS(3497), - [anon_sym_unsigned] = ACTIONS(3497), - [anon_sym_long] = ACTIONS(3497), - [anon_sym_short] = ACTIONS(3497), - [sym_primitive_type] = ACTIONS(3497), - [anon_sym_enum] = ACTIONS(3497), - [anon_sym_struct] = ACTIONS(3497), - [anon_sym_union] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_else] = ACTIONS(3497), - [anon_sym_switch] = ACTIONS(3497), - [anon_sym_case] = ACTIONS(3497), - [anon_sym_default] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_break] = ACTIONS(3497), - [anon_sym_continue] = ACTIONS(3497), - [anon_sym_goto] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3499), - [anon_sym_BANG] = ACTIONS(3499), - [anon_sym_TILDE] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_DASH_DASH] = ACTIONS(3499), - [anon_sym_PLUS_PLUS] = ACTIONS(3499), - [anon_sym_sizeof] = ACTIONS(3497), - [sym_number_literal] = ACTIONS(3499), - [sym_char_literal] = ACTIONS(3499), - [sym_string_literal] = ACTIONS(3499), - [sym_true] = ACTIONS(3497), - [sym_false] = ACTIONS(3497), - [sym_null] = ACTIONS(3497), - [sym_identifier] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3666), [sym_comment] = ACTIONS(39), }, [1248] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3503), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3501), - [sym_preproc_directive] = ACTIONS(3501), - [anon_sym_SEMI] = ACTIONS(3503), - [anon_sym_typedef] = ACTIONS(3501), - [anon_sym_extern] = ACTIONS(3501), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_STAR] = ACTIONS(3503), - [anon_sym_static] = ACTIONS(3501), - [anon_sym_auto] = ACTIONS(3501), - [anon_sym_register] = ACTIONS(3501), - [anon_sym_inline] = ACTIONS(3501), - [anon_sym_const] = ACTIONS(3501), - [anon_sym_restrict] = ACTIONS(3501), - [anon_sym_volatile] = ACTIONS(3501), - [anon_sym__Atomic] = ACTIONS(3501), - [anon_sym_unsigned] = ACTIONS(3501), - [anon_sym_long] = ACTIONS(3501), - [anon_sym_short] = ACTIONS(3501), - [sym_primitive_type] = ACTIONS(3501), - [anon_sym_enum] = ACTIONS(3501), - [anon_sym_struct] = ACTIONS(3501), - [anon_sym_union] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_else] = ACTIONS(3501), - [anon_sym_switch] = ACTIONS(3501), - [anon_sym_case] = ACTIONS(3501), - [anon_sym_default] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_break] = ACTIONS(3501), - [anon_sym_continue] = ACTIONS(3501), - [anon_sym_goto] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3503), - [anon_sym_BANG] = ACTIONS(3503), - [anon_sym_TILDE] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_DASH_DASH] = ACTIONS(3503), - [anon_sym_PLUS_PLUS] = ACTIONS(3503), - [anon_sym_sizeof] = ACTIONS(3501), - [sym_number_literal] = ACTIONS(3503), - [sym_char_literal] = ACTIONS(3503), - [sym_string_literal] = ACTIONS(3503), - [sym_true] = ACTIONS(3501), - [sym_false] = ACTIONS(3501), - [sym_null] = ACTIONS(3501), - [sym_identifier] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_comment] = ACTIONS(39), }, [1249] = { - [sym_compound_statement] = STATE(1294), - [sym_labeled_statement] = STATE(1294), - [sym_expression_statement] = STATE(1294), - [sym_if_statement] = STATE(1294), - [sym_switch_statement] = STATE(1294), - [sym_case_statement] = STATE(1294), - [sym_while_statement] = STATE(1294), - [sym_do_statement] = STATE(1294), - [sym_for_statement] = STATE(1294), - [sym_return_statement] = STATE(1294), - [sym_break_statement] = STATE(1294), - [sym_continue_statement] = STATE(1294), - [sym_goto_statement] = STATE(1294), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(2787), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3307), + [sym_preproc_directive] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_typedef] = ACTIONS(3307), + [anon_sym_extern] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_auto] = ACTIONS(3307), + [anon_sym_register] = ACTIONS(3307), + [anon_sym_inline] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_restrict] = ACTIONS(3307), + [anon_sym_volatile] = ACTIONS(3307), + [anon_sym__Atomic] = ACTIONS(3307), + [anon_sym_unsigned] = ACTIONS(3307), + [anon_sym_long] = ACTIONS(3307), + [anon_sym_short] = ACTIONS(3307), + [sym_primitive_type] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_union] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_case] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_goto] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3307), + [sym_number_literal] = ACTIONS(3309), + [sym_char_literal] = ACTIONS(3309), + [sym_string_literal] = ACTIONS(3309), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3307), [sym_comment] = ACTIONS(39), }, [1250] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3683), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3317), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3315), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3315), + [sym_preproc_directive] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_typedef] = ACTIONS(3315), + [anon_sym_extern] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_auto] = ACTIONS(3315), + [anon_sym_register] = ACTIONS(3315), + [anon_sym_inline] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_restrict] = ACTIONS(3315), + [anon_sym_volatile] = ACTIONS(3315), + [anon_sym__Atomic] = ACTIONS(3315), + [anon_sym_unsigned] = ACTIONS(3315), + [anon_sym_long] = ACTIONS(3315), + [anon_sym_short] = ACTIONS(3315), + [sym_primitive_type] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), + [anon_sym_struct] = ACTIONS(3315), + [anon_sym_union] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_case] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_goto] = ACTIONS(3315), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_sizeof] = ACTIONS(3315), + [sym_number_literal] = ACTIONS(3317), + [sym_char_literal] = ACTIONS(3317), + [sym_string_literal] = ACTIONS(3317), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_identifier] = ACTIONS(3315), [sym_comment] = ACTIONS(39), }, [1251] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1296), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3329), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3327), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3327), + [sym_preproc_directive] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3327), + [anon_sym_extern] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_auto] = ACTIONS(3327), + [anon_sym_register] = ACTIONS(3327), + [anon_sym_inline] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_restrict] = ACTIONS(3327), + [anon_sym_volatile] = ACTIONS(3327), + [anon_sym__Atomic] = ACTIONS(3327), + [anon_sym_unsigned] = ACTIONS(3327), + [anon_sym_long] = ACTIONS(3327), + [anon_sym_short] = ACTIONS(3327), + [sym_primitive_type] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), + [anon_sym_struct] = ACTIONS(3327), + [anon_sym_union] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_case] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_goto] = ACTIONS(3327), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_sizeof] = ACTIONS(3327), + [sym_number_literal] = ACTIONS(3329), + [sym_char_literal] = ACTIONS(3329), + [sym_string_literal] = ACTIONS(3329), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3327), [sym_comment] = ACTIONS(39), }, [1252] = { - [sym__expression] = STATE(1297), - [sym_conditional_expression] = STATE(1297), - [sym_assignment_expression] = STATE(1297), - [sym_pointer_expression] = STATE(1297), - [sym_logical_expression] = STATE(1297), - [sym_bitwise_expression] = STATE(1297), - [sym_equality_expression] = STATE(1297), - [sym_relational_expression] = STATE(1297), - [sym_shift_expression] = STATE(1297), - [sym_math_expression] = STATE(1297), - [sym_cast_expression] = STATE(1297), - [sym_sizeof_expression] = STATE(1297), - [sym_subscript_expression] = STATE(1297), - [sym_call_expression] = STATE(1297), - [sym_field_expression] = STATE(1297), - [sym_compound_literal_expression] = STATE(1297), - [sym_parenthesized_expression] = STATE(1297), - [sym_concatenated_string] = STATE(1297), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3683), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3685), - [sym_char_literal] = ACTIONS(3685), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3687), - [sym_false] = ACTIONS(3687), - [sym_null] = ACTIONS(3687), - [sym_identifier] = ACTIONS(3687), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1253] = { - [sym_compound_statement] = STATE(1298), - [sym_labeled_statement] = STATE(1298), - [sym_expression_statement] = STATE(1298), - [sym_if_statement] = STATE(1298), - [sym_switch_statement] = STATE(1298), - [sym_case_statement] = STATE(1298), - [sym_while_statement] = STATE(1298), - [sym_do_statement] = STATE(1298), - [sym_for_statement] = STATE(1298), - [sym_return_statement] = STATE(1298), - [sym_break_statement] = STATE(1298), - [sym_continue_statement] = STATE(1298), - [sym_goto_statement] = STATE(1298), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2924), + [sym_compound_statement] = STATE(1299), + [sym_labeled_statement] = STATE(1299), + [sym_expression_statement] = STATE(1299), + [sym_if_statement] = STATE(1299), + [sym_switch_statement] = STATE(1299), + [sym_case_statement] = STATE(1299), + [sym_while_statement] = STATE(1299), + [sym_do_statement] = STATE(1299), + [sym_for_statement] = STATE(1299), + [sym_return_statement] = STATE(1299), + [sym_break_statement] = STATE(1299), + [sym_continue_statement] = STATE(1299), + [sym_goto_statement] = STATE(1299), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3169), [sym_comment] = ACTIONS(39), }, [1254] = { - [sym_compound_statement] = STATE(1044), - [sym_labeled_statement] = STATE(1044), - [sym_expression_statement] = STATE(1044), - [sym_if_statement] = STATE(1044), - [sym_switch_statement] = STATE(1044), - [sym_case_statement] = STATE(1044), - [sym_while_statement] = STATE(1044), - [sym_do_statement] = STATE(1044), - [sym_for_statement] = STATE(1044), - [sym_return_statement] = STATE(1044), - [sym_break_statement] = STATE(1044), - [sym_continue_statement] = STATE(1044), - [sym_goto_statement] = STATE(1044), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2924), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1301), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1255] = { - [sym_compound_statement] = STATE(1047), - [sym_labeled_statement] = STATE(1047), - [sym_expression_statement] = STATE(1047), - [sym_if_statement] = STATE(1047), - [sym_switch_statement] = STATE(1047), - [sym_case_statement] = STATE(1047), - [sym_while_statement] = STATE(1047), - [sym_do_statement] = STATE(1047), - [sym_for_statement] = STATE(1047), - [sym_return_statement] = STATE(1047), - [sym_break_statement] = STATE(1047), - [sym_continue_statement] = STATE(1047), - [sym_goto_statement] = STATE(1047), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2924), - [sym_comment] = ACTIONS(39), - }, - [1256] = { - [sym__expression] = STATE(1300), - [sym_conditional_expression] = STATE(1300), - [sym_assignment_expression] = STATE(1300), - [sym_pointer_expression] = STATE(1300), - [sym_logical_expression] = STATE(1300), - [sym_bitwise_expression] = STATE(1300), - [sym_equality_expression] = STATE(1300), - [sym_relational_expression] = STATE(1300), - [sym_shift_expression] = STATE(1300), - [sym_math_expression] = STATE(1300), - [sym_cast_expression] = STATE(1300), - [sym_sizeof_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_call_expression] = STATE(1300), - [sym_field_expression] = STATE(1300), - [sym_compound_literal_expression] = STATE(1300), - [sym_parenthesized_expression] = STATE(1300), - [sym_concatenated_string] = STATE(1300), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3689), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3691), - [sym_char_literal] = ACTIONS(3691), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3693), - [sym_false] = ACTIONS(3693), - [sym_null] = ACTIONS(3693), - [sym_identifier] = ACTIONS(3693), - [sym_comment] = ACTIONS(39), - }, - [1257] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3695), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1258] = { [sym__expression] = STATE(1302), [sym_conditional_expression] = STATE(1302), [sym_assignment_expression] = STATE(1302), @@ -49802,741 +49073,189 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1302), [sym_parenthesized_expression] = STATE(1302), [sym_concatenated_string] = STATE(1302), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3695), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3697), - [sym_char_literal] = ACTIONS(3697), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3699), - [sym_false] = ACTIONS(3699), - [sym_null] = ACTIONS(3699), - [sym_identifier] = ACTIONS(3699), - [sym_comment] = ACTIONS(39), - }, - [1259] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3701), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1260] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3703), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1261] = { - [sym_declaration] = STATE(910), - [sym_type_definition] = STATE(910), - [sym__declaration_specifiers] = STATE(683), - [sym_compound_statement] = STATE(910), - [sym_storage_class_specifier] = STATE(93), - [sym_type_qualifier] = STATE(93), - [sym__type_specifier] = STATE(92), - [sym_sized_type_specifier] = STATE(92), - [sym_enum_specifier] = STATE(92), - [sym_struct_specifier] = STATE(92), - [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(910), - [sym_expression_statement] = STATE(910), - [sym_if_statement] = STATE(910), - [sym_switch_statement] = STATE(910), - [sym_case_statement] = STATE(910), - [sym_while_statement] = STATE(910), - [sym_do_statement] = STATE(910), - [sym_for_statement] = STATE(910), - [sym_return_statement] = STATE(910), - [sym_break_statement] = STATE(910), - [sym_continue_statement] = STATE(910), - [sym_goto_statement] = STATE(910), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [sym_macro_type_specifier] = STATE(92), - [aux_sym__declaration_specifiers_repeat1] = STATE(93), - [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_typedef] = ACTIONS(19), - [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_static] = ACTIONS(23), - [anon_sym_auto] = ACTIONS(23), - [anon_sym_register] = ACTIONS(23), - [anon_sym_inline] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_restrict] = ACTIONS(25), - [anon_sym_volatile] = ACTIONS(25), - [anon_sym__Atomic] = ACTIONS(25), - [anon_sym_unsigned] = ACTIONS(171), - [anon_sym_long] = ACTIONS(171), - [anon_sym_short] = ACTIONS(171), - [sym_primitive_type] = ACTIONS(173), - [anon_sym_enum] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3609), - [sym_comment] = ACTIONS(39), - }, - [1262] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(86), - [anon_sym_auto] = ACTIONS(86), - [anon_sym_register] = ACTIONS(86), - [anon_sym_inline] = ACTIONS(86), - [anon_sym_const] = ACTIONS(86), - [anon_sym_restrict] = ACTIONS(86), - [anon_sym_volatile] = ACTIONS(86), - [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [sym_identifier] = ACTIONS(86), - [sym_comment] = ACTIONS(39), - }, - [1263] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3705), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1264] = { - [sym__expression] = STATE(1307), - [sym_conditional_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_pointer_expression] = STATE(1307), - [sym_logical_expression] = STATE(1307), - [sym_bitwise_expression] = STATE(1307), - [sym_equality_expression] = STATE(1307), - [sym_relational_expression] = STATE(1307), - [sym_shift_expression] = STATE(1307), - [sym_math_expression] = STATE(1307), - [sym_cast_expression] = STATE(1307), - [sym_sizeof_expression] = STATE(1307), - [sym_subscript_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_field_expression] = STATE(1307), - [sym_compound_literal_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_concatenated_string] = STATE(1307), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3709), - [sym_char_literal] = ACTIONS(3709), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3711), - [sym_false] = ACTIONS(3711), - [sym_null] = ACTIONS(3711), - [sym_identifier] = ACTIONS(3711), - [sym_comment] = ACTIONS(39), - }, - [1265] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3713), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1266] = { - [sym_compound_statement] = STATE(1269), - [sym_labeled_statement] = STATE(1269), - [sym_expression_statement] = STATE(1269), - [sym_if_statement] = STATE(1269), - [sym_switch_statement] = STATE(1269), - [sym_case_statement] = STATE(1269), - [sym_while_statement] = STATE(1269), - [sym_do_statement] = STATE(1269), - [sym_for_statement] = STATE(1269), - [sym_return_statement] = STATE(1269), - [sym_break_statement] = STATE(1269), - [sym_continue_statement] = STATE(1269), - [sym_goto_statement] = STATE(1269), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), - [sym_comment] = ACTIONS(39), - }, - [1267] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3715), - [sym_comment] = ACTIONS(39), - }, - [1268] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1310), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3715), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1269] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3719), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3717), - [sym_preproc_directive] = ACTIONS(3717), - [anon_sym_SEMI] = ACTIONS(3719), - [anon_sym_typedef] = ACTIONS(3717), - [anon_sym_extern] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_RBRACE] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3719), - [anon_sym_static] = ACTIONS(3717), - [anon_sym_auto] = ACTIONS(3717), - [anon_sym_register] = ACTIONS(3717), - [anon_sym_inline] = ACTIONS(3717), - [anon_sym_const] = ACTIONS(3717), - [anon_sym_restrict] = ACTIONS(3717), - [anon_sym_volatile] = ACTIONS(3717), - [anon_sym__Atomic] = ACTIONS(3717), - [anon_sym_unsigned] = ACTIONS(3717), - [anon_sym_long] = ACTIONS(3717), - [anon_sym_short] = ACTIONS(3717), - [sym_primitive_type] = ACTIONS(3717), - [anon_sym_enum] = ACTIONS(3717), - [anon_sym_struct] = ACTIONS(3717), - [anon_sym_union] = ACTIONS(3717), - [anon_sym_if] = ACTIONS(3717), - [anon_sym_else] = ACTIONS(3717), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_case] = ACTIONS(3717), - [anon_sym_default] = ACTIONS(3717), - [anon_sym_while] = ACTIONS(3717), - [anon_sym_do] = ACTIONS(3717), - [anon_sym_for] = ACTIONS(3717), - [anon_sym_return] = ACTIONS(3717), - [anon_sym_break] = ACTIONS(3717), - [anon_sym_continue] = ACTIONS(3717), - [anon_sym_goto] = ACTIONS(3717), - [anon_sym_AMP] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3719), - [anon_sym_TILDE] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_sizeof] = ACTIONS(3717), - [sym_number_literal] = ACTIONS(3719), - [sym_char_literal] = ACTIONS(3719), - [sym_string_literal] = ACTIONS(3719), - [sym_true] = ACTIONS(3717), - [sym_false] = ACTIONS(3717), - [sym_null] = ACTIONS(3717), - [sym_identifier] = ACTIONS(3717), - [sym_comment] = ACTIONS(39), - }, - [1270] = { - [sym_compound_statement] = STATE(1311), - [sym_labeled_statement] = STATE(1311), - [sym_expression_statement] = STATE(1311), - [sym_if_statement] = STATE(1311), - [sym_switch_statement] = STATE(1311), - [sym_case_statement] = STATE(1311), - [sym_while_statement] = STATE(1311), - [sym_do_statement] = STATE(1311), - [sym_for_statement] = STATE(1311), - [sym_return_statement] = STATE(1311), - [sym_break_statement] = STATE(1311), - [sym_continue_statement] = STATE(1311), - [sym_goto_statement] = STATE(1311), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3676), + [sym_char_literal] = ACTIONS(3676), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_identifier] = ACTIONS(3678), [sym_comment] = ACTIONS(39), }, - [1271] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3721), + [1256] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1272] = { - [sym__expression] = STATE(1313), - [sym_conditional_expression] = STATE(1313), - [sym_assignment_expression] = STATE(1313), - [sym_pointer_expression] = STATE(1313), - [sym_logical_expression] = STATE(1313), - [sym_bitwise_expression] = STATE(1313), - [sym_equality_expression] = STATE(1313), - [sym_relational_expression] = STATE(1313), - [sym_shift_expression] = STATE(1313), - [sym_math_expression] = STATE(1313), - [sym_cast_expression] = STATE(1313), - [sym_sizeof_expression] = STATE(1313), - [sym_subscript_expression] = STATE(1313), - [sym_call_expression] = STATE(1313), - [sym_field_expression] = STATE(1313), - [sym_compound_literal_expression] = STATE(1313), - [sym_parenthesized_expression] = STATE(1313), - [sym_concatenated_string] = STATE(1313), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3723), - [sym_char_literal] = ACTIONS(3723), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3725), - [sym_false] = ACTIONS(3725), - [sym_null] = ACTIONS(3725), - [sym_identifier] = ACTIONS(3725), + [1257] = { + [sym__expression] = STATE(1304), + [sym_conditional_expression] = STATE(1304), + [sym_assignment_expression] = STATE(1304), + [sym_pointer_expression] = STATE(1304), + [sym_logical_expression] = STATE(1304), + [sym_bitwise_expression] = STATE(1304), + [sym_equality_expression] = STATE(1304), + [sym_relational_expression] = STATE(1304), + [sym_shift_expression] = STATE(1304), + [sym_math_expression] = STATE(1304), + [sym_cast_expression] = STATE(1304), + [sym_sizeof_expression] = STATE(1304), + [sym_subscript_expression] = STATE(1304), + [sym_call_expression] = STATE(1304), + [sym_field_expression] = STATE(1304), + [sym_compound_literal_expression] = STATE(1304), + [sym_parenthesized_expression] = STATE(1304), + [sym_concatenated_string] = STATE(1304), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3682), + [sym_char_literal] = ACTIONS(3682), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_identifier] = ACTIONS(3684), [sym_comment] = ACTIONS(39), }, - [1273] = { - [sym__expression] = STATE(1314), - [sym_conditional_expression] = STATE(1314), - [sym_assignment_expression] = STATE(1314), - [sym_pointer_expression] = STATE(1314), - [sym_logical_expression] = STATE(1314), - [sym_bitwise_expression] = STATE(1314), - [sym_equality_expression] = STATE(1314), - [sym_relational_expression] = STATE(1314), - [sym_shift_expression] = STATE(1314), - [sym_math_expression] = STATE(1314), - [sym_cast_expression] = STATE(1314), - [sym_sizeof_expression] = STATE(1314), - [sym_subscript_expression] = STATE(1314), - [sym_call_expression] = STATE(1314), - [sym_field_expression] = STATE(1314), - [sym_compound_literal_expression] = STATE(1314), - [sym_parenthesized_expression] = STATE(1314), - [sym_concatenated_string] = STATE(1314), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3727), - [sym_char_literal] = ACTIONS(3727), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3729), - [sym_false] = ACTIONS(3729), - [sym_null] = ACTIONS(3729), - [sym_identifier] = ACTIONS(3729), + [1258] = { + [sym__expression] = STATE(1305), + [sym_conditional_expression] = STATE(1305), + [sym_assignment_expression] = STATE(1305), + [sym_pointer_expression] = STATE(1305), + [sym_logical_expression] = STATE(1305), + [sym_bitwise_expression] = STATE(1305), + [sym_equality_expression] = STATE(1305), + [sym_relational_expression] = STATE(1305), + [sym_shift_expression] = STATE(1305), + [sym_math_expression] = STATE(1305), + [sym_cast_expression] = STATE(1305), + [sym_sizeof_expression] = STATE(1305), + [sym_subscript_expression] = STATE(1305), + [sym_call_expression] = STATE(1305), + [sym_field_expression] = STATE(1305), + [sym_compound_literal_expression] = STATE(1305), + [sym_parenthesized_expression] = STATE(1305), + [sym_concatenated_string] = STATE(1305), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3686), + [sym_char_literal] = ACTIONS(3686), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3688), + [sym_false] = ACTIONS(3688), + [sym_null] = ACTIONS(3688), + [sym_identifier] = ACTIONS(3688), [sym_comment] = ACTIONS(39), }, - [1274] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(3731), - [anon_sym_QMARK] = ACTIONS(1607), - [anon_sym_STAR_EQ] = ACTIONS(1609), - [anon_sym_SLASH_EQ] = ACTIONS(1609), - [anon_sym_PERCENT_EQ] = ACTIONS(1609), - [anon_sym_PLUS_EQ] = ACTIONS(1609), - [anon_sym_DASH_EQ] = ACTIONS(1609), - [anon_sym_LT_LT_EQ] = ACTIONS(1609), - [anon_sym_GT_GT_EQ] = ACTIONS(1609), - [anon_sym_AMP_EQ] = ACTIONS(1609), - [anon_sym_CARET_EQ] = ACTIONS(1609), - [anon_sym_PIPE_EQ] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_PIPE_PIPE] = ACTIONS(1613), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_EQ_EQ] = ACTIONS(1621), - [anon_sym_BANG_EQ] = ACTIONS(1621), - [anon_sym_LT] = ACTIONS(1623), - [anon_sym_GT] = ACTIONS(1623), - [anon_sym_LT_EQ] = ACTIONS(1625), - [anon_sym_GT_EQ] = ACTIONS(1625), - [anon_sym_LT_LT] = ACTIONS(1627), - [anon_sym_GT_GT] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1629), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1601), - [anon_sym_PERCENT] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1259] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(3690), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1275] = { - [sym_declaration] = STATE(1100), - [sym_type_definition] = STATE(1100), - [sym__declaration_specifiers] = STATE(1101), - [sym_compound_statement] = STATE(1100), + [1260] = { + [sym_declaration] = STATE(1024), + [sym_type_definition] = STATE(1024), + [sym__declaration_specifiers] = STATE(1025), + [sym_compound_statement] = STATE(1024), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -50544,46 +49263,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(1100), - [sym_expression_statement] = STATE(1100), - [sym_if_statement] = STATE(1100), - [sym_switch_statement] = STATE(1100), - [sym_case_statement] = STATE(1100), - [sym_while_statement] = STATE(1100), - [sym_do_statement] = STATE(1100), - [sym_for_statement] = STATE(1100), - [sym_return_statement] = STATE(1100), - [sym_break_statement] = STATE(1100), - [sym_continue_statement] = STATE(1100), - [sym_goto_statement] = STATE(1100), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), + [sym_labeled_statement] = STATE(1024), + [sym_expression_statement] = STATE(1024), + [sym_if_statement] = STATE(1024), + [sym_switch_statement] = STATE(1024), + [sym_case_statement] = STATE(1024), + [sym_while_statement] = STATE(1024), + [sym_do_statement] = STATE(1024), + [sym_for_statement] = STATE(1024), + [sym_return_statement] = STATE(1024), + [sym_break_statement] = STATE(1024), + [sym_continue_statement] = STATE(1024), + [sym_goto_statement] = STATE(1024), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_typedef] = ACTIONS(362), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -50599,75 +49318,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3733), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3692), [sym_comment] = ACTIONS(39), }, - [1276] = { - [sym__expression] = STATE(1317), - [sym_conditional_expression] = STATE(1317), - [sym_assignment_expression] = STATE(1317), - [sym_pointer_expression] = STATE(1317), - [sym_logical_expression] = STATE(1317), - [sym_bitwise_expression] = STATE(1317), - [sym_equality_expression] = STATE(1317), - [sym_relational_expression] = STATE(1317), - [sym_shift_expression] = STATE(1317), - [sym_math_expression] = STATE(1317), - [sym_cast_expression] = STATE(1317), - [sym_sizeof_expression] = STATE(1317), - [sym_subscript_expression] = STATE(1317), - [sym_call_expression] = STATE(1317), - [sym_field_expression] = STATE(1317), - [sym_compound_literal_expression] = STATE(1317), - [sym_parenthesized_expression] = STATE(1317), - [sym_concatenated_string] = STATE(1317), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1579), - [anon_sym_sizeof] = ACTIONS(1581), - [sym_number_literal] = ACTIONS(3735), - [sym_char_literal] = ACTIONS(3735), - [sym_string_literal] = ACTIONS(1585), - [sym_true] = ACTIONS(3737), - [sym_false] = ACTIONS(3737), - [sym_null] = ACTIONS(3737), - [sym_identifier] = ACTIONS(3737), + [1261] = { + [sym__expression] = STATE(1308), + [sym_conditional_expression] = STATE(1308), + [sym_assignment_expression] = STATE(1308), + [sym_pointer_expression] = STATE(1308), + [sym_logical_expression] = STATE(1308), + [sym_bitwise_expression] = STATE(1308), + [sym_equality_expression] = STATE(1308), + [sym_relational_expression] = STATE(1308), + [sym_shift_expression] = STATE(1308), + [sym_math_expression] = STATE(1308), + [sym_cast_expression] = STATE(1308), + [sym_sizeof_expression] = STATE(1308), + [sym_subscript_expression] = STATE(1308), + [sym_call_expression] = STATE(1308), + [sym_field_expression] = STATE(1308), + [sym_compound_literal_expression] = STATE(1308), + [sym_parenthesized_expression] = STATE(1308), + [sym_concatenated_string] = STATE(1308), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3694), + [sym_char_literal] = ACTIONS(3694), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3696), + [sym_false] = ACTIONS(3696), + [sym_null] = ACTIONS(3696), + [sym_identifier] = ACTIONS(3696), [sym_comment] = ACTIONS(39), }, - [1277] = { - [sym_declaration] = STATE(1318), - [sym__declaration_specifiers] = STATE(683), + [1262] = { + [sym_declaration] = STATE(1309), + [sym__declaration_specifiers] = STATE(698), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -50675,31 +49394,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym__expression] = STATE(1319), - [sym_conditional_expression] = STATE(1319), - [sym_assignment_expression] = STATE(1319), - [sym_pointer_expression] = STATE(1319), - [sym_logical_expression] = STATE(1319), - [sym_bitwise_expression] = STATE(1319), - [sym_equality_expression] = STATE(1319), - [sym_relational_expression] = STATE(1319), - [sym_shift_expression] = STATE(1319), - [sym_math_expression] = STATE(1319), - [sym_cast_expression] = STATE(1319), - [sym_sizeof_expression] = STATE(1319), - [sym_subscript_expression] = STATE(1319), - [sym_call_expression] = STATE(1319), - [sym_field_expression] = STATE(1319), - [sym_compound_literal_expression] = STATE(1319), - [sym_parenthesized_expression] = STATE(1319), - [sym_concatenated_string] = STATE(1319), + [sym__expression] = STATE(1310), + [sym_conditional_expression] = STATE(1310), + [sym_assignment_expression] = STATE(1310), + [sym_pointer_expression] = STATE(1310), + [sym_logical_expression] = STATE(1310), + [sym_bitwise_expression] = STATE(1310), + [sym_equality_expression] = STATE(1310), + [sym_relational_expression] = STATE(1310), + [sym_shift_expression] = STATE(1310), + [sym_math_expression] = STATE(1310), + [sym_cast_expression] = STATE(1310), + [sym_sizeof_expression] = STATE(1310), + [sym_subscript_expression] = STATE(1310), + [sym_call_expression] = STATE(1310), + [sym_field_expression] = STATE(1310), + [sym_compound_literal_expression] = STATE(1310), + [sym_parenthesized_expression] = STATE(1310), + [sym_concatenated_string] = STATE(1310), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3739), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3698), [anon_sym_extern] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -50715,509 +49434,827 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3741), - [sym_char_literal] = ACTIONS(3741), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3743), - [sym_false] = ACTIONS(3743), - [sym_null] = ACTIONS(3743), - [sym_identifier] = ACTIONS(1661), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3700), + [sym_char_literal] = ACTIONS(3700), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3702), + [sym_false] = ACTIONS(3702), + [sym_null] = ACTIONS(3702), + [sym_identifier] = ACTIONS(1675), [sym_comment] = ACTIONS(39), }, - [1278] = { - [sym_compound_statement] = STATE(1109), - [sym_labeled_statement] = STATE(1109), - [sym_expression_statement] = STATE(1109), - [sym_if_statement] = STATE(1109), - [sym_switch_statement] = STATE(1109), - [sym_case_statement] = STATE(1109), - [sym_while_statement] = STATE(1109), - [sym_do_statement] = STATE(1109), - [sym_for_statement] = STATE(1109), - [sym_return_statement] = STATE(1109), - [sym_break_statement] = STATE(1109), - [sym_continue_statement] = STATE(1109), - [sym_goto_statement] = STATE(1109), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3535), + [1263] = { + [sym_compound_statement] = STATE(1033), + [sym_labeled_statement] = STATE(1033), + [sym_expression_statement] = STATE(1033), + [sym_if_statement] = STATE(1033), + [sym_switch_statement] = STATE(1033), + [sym_case_statement] = STATE(1033), + [sym_while_statement] = STATE(1033), + [sym_do_statement] = STATE(1033), + [sym_for_statement] = STATE(1033), + [sym_return_statement] = STATE(1033), + [sym_break_statement] = STATE(1033), + [sym_continue_statement] = STATE(1033), + [sym_goto_statement] = STATE(1033), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3444), [sym_comment] = ACTIONS(39), }, - [1279] = { - [sym_compound_statement] = STATE(1320), - [sym_labeled_statement] = STATE(1320), - [sym_expression_statement] = STATE(1320), - [sym_if_statement] = STATE(1320), - [sym_switch_statement] = STATE(1320), - [sym_case_statement] = STATE(1320), - [sym_while_statement] = STATE(1320), - [sym_do_statement] = STATE(1320), - [sym_for_statement] = STATE(1320), - [sym_return_statement] = STATE(1320), - [sym_break_statement] = STATE(1320), - [sym_continue_statement] = STATE(1320), - [sym_goto_statement] = STATE(1320), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3148), + [1264] = { + [sym_compound_statement] = STATE(1311), + [sym_labeled_statement] = STATE(1311), + [sym_expression_statement] = STATE(1311), + [sym_if_statement] = STATE(1311), + [sym_switch_statement] = STATE(1311), + [sym_case_statement] = STATE(1311), + [sym_while_statement] = STATE(1311), + [sym_do_statement] = STATE(1311), + [sym_for_statement] = STATE(1311), + [sym_return_statement] = STATE(1311), + [sym_break_statement] = STATE(1311), + [sym_continue_statement] = STATE(1311), + [sym_goto_statement] = STATE(1311), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(2808), [sym_comment] = ACTIONS(39), }, - [1280] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3497), - [sym_preproc_directive] = ACTIONS(3497), - [anon_sym_SEMI] = ACTIONS(3499), - [anon_sym_typedef] = ACTIONS(3497), - [anon_sym_extern] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3499), - [anon_sym_static] = ACTIONS(3497), - [anon_sym_auto] = ACTIONS(3497), - [anon_sym_register] = ACTIONS(3497), - [anon_sym_inline] = ACTIONS(3497), - [anon_sym_const] = ACTIONS(3497), - [anon_sym_restrict] = ACTIONS(3497), - [anon_sym_volatile] = ACTIONS(3497), - [anon_sym__Atomic] = ACTIONS(3497), - [anon_sym_unsigned] = ACTIONS(3497), - [anon_sym_long] = ACTIONS(3497), - [anon_sym_short] = ACTIONS(3497), - [sym_primitive_type] = ACTIONS(3497), - [anon_sym_enum] = ACTIONS(3497), - [anon_sym_struct] = ACTIONS(3497), - [anon_sym_union] = ACTIONS(3497), - [anon_sym_if] = ACTIONS(3497), - [anon_sym_else] = ACTIONS(3497), - [anon_sym_switch] = ACTIONS(3497), - [anon_sym_case] = ACTIONS(3497), - [anon_sym_default] = ACTIONS(3497), - [anon_sym_while] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_for] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3497), - [anon_sym_break] = ACTIONS(3497), - [anon_sym_continue] = ACTIONS(3497), - [anon_sym_goto] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3499), - [anon_sym_BANG] = ACTIONS(3499), - [anon_sym_TILDE] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_DASH_DASH] = ACTIONS(3499), - [anon_sym_PLUS_PLUS] = ACTIONS(3499), - [anon_sym_sizeof] = ACTIONS(3497), - [sym_number_literal] = ACTIONS(3499), - [sym_char_literal] = ACTIONS(3499), - [sym_string_literal] = ACTIONS(3499), - [sym_true] = ACTIONS(3497), - [sym_false] = ACTIONS(3497), - [sym_null] = ACTIONS(3497), - [sym_identifier] = ACTIONS(3497), + [1265] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_auto] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [sym_char_literal] = ACTIONS(3520), + [sym_string_literal] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3518), [sym_comment] = ACTIONS(39), }, - [1281] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3503), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3501), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3501), - [sym_preproc_directive] = ACTIONS(3501), - [anon_sym_SEMI] = ACTIONS(3503), - [anon_sym_typedef] = ACTIONS(3501), - [anon_sym_extern] = ACTIONS(3501), - [anon_sym_LBRACE] = ACTIONS(3503), - [anon_sym_STAR] = ACTIONS(3503), - [anon_sym_static] = ACTIONS(3501), - [anon_sym_auto] = ACTIONS(3501), - [anon_sym_register] = ACTIONS(3501), - [anon_sym_inline] = ACTIONS(3501), - [anon_sym_const] = ACTIONS(3501), - [anon_sym_restrict] = ACTIONS(3501), - [anon_sym_volatile] = ACTIONS(3501), - [anon_sym__Atomic] = ACTIONS(3501), - [anon_sym_unsigned] = ACTIONS(3501), - [anon_sym_long] = ACTIONS(3501), - [anon_sym_short] = ACTIONS(3501), - [sym_primitive_type] = ACTIONS(3501), - [anon_sym_enum] = ACTIONS(3501), - [anon_sym_struct] = ACTIONS(3501), - [anon_sym_union] = ACTIONS(3501), - [anon_sym_if] = ACTIONS(3501), - [anon_sym_else] = ACTIONS(3501), - [anon_sym_switch] = ACTIONS(3501), - [anon_sym_case] = ACTIONS(3501), - [anon_sym_default] = ACTIONS(3501), - [anon_sym_while] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_for] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3501), - [anon_sym_break] = ACTIONS(3501), - [anon_sym_continue] = ACTIONS(3501), - [anon_sym_goto] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3503), - [anon_sym_BANG] = ACTIONS(3503), - [anon_sym_TILDE] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_DASH_DASH] = ACTIONS(3503), - [anon_sym_PLUS_PLUS] = ACTIONS(3503), - [anon_sym_sizeof] = ACTIONS(3501), - [sym_number_literal] = ACTIONS(3503), - [sym_char_literal] = ACTIONS(3503), - [sym_string_literal] = ACTIONS(3503), - [sym_true] = ACTIONS(3501), - [sym_false] = ACTIONS(3501), - [sym_null] = ACTIONS(3501), - [sym_identifier] = ACTIONS(3501), + [1266] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3524), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3522), + [sym_preproc_directive] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_typedef] = ACTIONS(3522), + [anon_sym_extern] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_auto] = ACTIONS(3522), + [anon_sym_register] = ACTIONS(3522), + [anon_sym_inline] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_restrict] = ACTIONS(3522), + [anon_sym_volatile] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3522), + [anon_sym_unsigned] = ACTIONS(3522), + [anon_sym_long] = ACTIONS(3522), + [anon_sym_short] = ACTIONS(3522), + [sym_primitive_type] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_union] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_case] = ACTIONS(3522), + [anon_sym_default] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_goto] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_sizeof] = ACTIONS(3522), + [sym_number_literal] = ACTIONS(3524), + [sym_char_literal] = ACTIONS(3524), + [sym_string_literal] = ACTIONS(3524), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [sym_null] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3522), [sym_comment] = ACTIONS(39), }, - [1282] = { - [sym_compound_statement] = STATE(1321), - [sym_labeled_statement] = STATE(1321), - [sym_expression_statement] = STATE(1321), - [sym_if_statement] = STATE(1321), - [sym_switch_statement] = STATE(1321), - [sym_case_statement] = STATE(1321), - [sym_while_statement] = STATE(1321), - [sym_do_statement] = STATE(1321), - [sym_for_statement] = STATE(1321), - [sym_return_statement] = STATE(1321), - [sym_break_statement] = STATE(1321), - [sym_continue_statement] = STATE(1321), - [sym_goto_statement] = STATE(1321), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3148), + [1267] = { + [sym_compound_statement] = STATE(1312), + [sym_labeled_statement] = STATE(1312), + [sym_expression_statement] = STATE(1312), + [sym_if_statement] = STATE(1312), + [sym_switch_statement] = STATE(1312), + [sym_case_statement] = STATE(1312), + [sym_while_statement] = STATE(1312), + [sym_do_statement] = STATE(1312), + [sym_for_statement] = STATE(1312), + [sym_return_statement] = STATE(1312), + [sym_break_statement] = STATE(1312), + [sym_continue_statement] = STATE(1312), + [sym_goto_statement] = STATE(1312), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(2808), + [sym_comment] = ACTIONS(39), + }, + [1268] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3704), + [sym_comment] = ACTIONS(39), + }, + [1269] = { + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1314), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [1270] = { + [sym__expression] = STATE(1315), + [sym_conditional_expression] = STATE(1315), + [sym_assignment_expression] = STATE(1315), + [sym_pointer_expression] = STATE(1315), + [sym_logical_expression] = STATE(1315), + [sym_bitwise_expression] = STATE(1315), + [sym_equality_expression] = STATE(1315), + [sym_relational_expression] = STATE(1315), + [sym_shift_expression] = STATE(1315), + [sym_math_expression] = STATE(1315), + [sym_cast_expression] = STATE(1315), + [sym_sizeof_expression] = STATE(1315), + [sym_subscript_expression] = STATE(1315), + [sym_call_expression] = STATE(1315), + [sym_field_expression] = STATE(1315), + [sym_compound_literal_expression] = STATE(1315), + [sym_parenthesized_expression] = STATE(1315), + [sym_concatenated_string] = STATE(1315), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3706), + [sym_char_literal] = ACTIONS(3706), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [sym_null] = ACTIONS(3708), + [sym_identifier] = ACTIONS(3708), + [sym_comment] = ACTIONS(39), + }, + [1271] = { + [sym_compound_statement] = STATE(1316), + [sym_labeled_statement] = STATE(1316), + [sym_expression_statement] = STATE(1316), + [sym_if_statement] = STATE(1316), + [sym_switch_statement] = STATE(1316), + [sym_case_statement] = STATE(1316), + [sym_while_statement] = STATE(1316), + [sym_do_statement] = STATE(1316), + [sym_for_statement] = STATE(1316), + [sym_return_statement] = STATE(1316), + [sym_break_statement] = STATE(1316), + [sym_continue_statement] = STATE(1316), + [sym_goto_statement] = STATE(1316), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2945), + [sym_comment] = ACTIONS(39), + }, + [1272] = { + [sym_compound_statement] = STATE(1062), + [sym_labeled_statement] = STATE(1062), + [sym_expression_statement] = STATE(1062), + [sym_if_statement] = STATE(1062), + [sym_switch_statement] = STATE(1062), + [sym_case_statement] = STATE(1062), + [sym_while_statement] = STATE(1062), + [sym_do_statement] = STATE(1062), + [sym_for_statement] = STATE(1062), + [sym_return_statement] = STATE(1062), + [sym_break_statement] = STATE(1062), + [sym_continue_statement] = STATE(1062), + [sym_goto_statement] = STATE(1062), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2945), + [sym_comment] = ACTIONS(39), + }, + [1273] = { + [sym_compound_statement] = STATE(1065), + [sym_labeled_statement] = STATE(1065), + [sym_expression_statement] = STATE(1065), + [sym_if_statement] = STATE(1065), + [sym_switch_statement] = STATE(1065), + [sym_case_statement] = STATE(1065), + [sym_while_statement] = STATE(1065), + [sym_do_statement] = STATE(1065), + [sym_for_statement] = STATE(1065), + [sym_return_statement] = STATE(1065), + [sym_break_statement] = STATE(1065), + [sym_continue_statement] = STATE(1065), + [sym_goto_statement] = STATE(1065), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2945), [sym_comment] = ACTIONS(39), }, - [1283] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3745), + [1274] = { + [sym__expression] = STATE(1318), + [sym_conditional_expression] = STATE(1318), + [sym_assignment_expression] = STATE(1318), + [sym_pointer_expression] = STATE(1318), + [sym_logical_expression] = STATE(1318), + [sym_bitwise_expression] = STATE(1318), + [sym_equality_expression] = STATE(1318), + [sym_relational_expression] = STATE(1318), + [sym_shift_expression] = STATE(1318), + [sym_math_expression] = STATE(1318), + [sym_cast_expression] = STATE(1318), + [sym_sizeof_expression] = STATE(1318), + [sym_subscript_expression] = STATE(1318), + [sym_call_expression] = STATE(1318), + [sym_field_expression] = STATE(1318), + [sym_compound_literal_expression] = STATE(1318), + [sym_parenthesized_expression] = STATE(1318), + [sym_concatenated_string] = STATE(1318), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3712), + [sym_char_literal] = ACTIONS(3712), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3714), + [sym_false] = ACTIONS(3714), + [sym_null] = ACTIONS(3714), + [sym_identifier] = ACTIONS(3714), [sym_comment] = ACTIONS(39), }, - [1284] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1323), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3745), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1275] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1285] = { - [sym__expression] = STATE(1324), - [sym_conditional_expression] = STATE(1324), - [sym_assignment_expression] = STATE(1324), - [sym_pointer_expression] = STATE(1324), - [sym_logical_expression] = STATE(1324), - [sym_bitwise_expression] = STATE(1324), - [sym_equality_expression] = STATE(1324), - [sym_relational_expression] = STATE(1324), - [sym_shift_expression] = STATE(1324), - [sym_math_expression] = STATE(1324), - [sym_cast_expression] = STATE(1324), - [sym_sizeof_expression] = STATE(1324), - [sym_subscript_expression] = STATE(1324), - [sym_call_expression] = STATE(1324), - [sym_field_expression] = STATE(1324), - [sym_compound_literal_expression] = STATE(1324), - [sym_parenthesized_expression] = STATE(1324), - [sym_concatenated_string] = STATE(1324), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3745), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3747), - [sym_char_literal] = ACTIONS(3747), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3749), - [sym_false] = ACTIONS(3749), - [sym_null] = ACTIONS(3749), - [sym_identifier] = ACTIONS(3749), + [1276] = { + [sym__expression] = STATE(1320), + [sym_conditional_expression] = STATE(1320), + [sym_assignment_expression] = STATE(1320), + [sym_pointer_expression] = STATE(1320), + [sym_logical_expression] = STATE(1320), + [sym_bitwise_expression] = STATE(1320), + [sym_equality_expression] = STATE(1320), + [sym_relational_expression] = STATE(1320), + [sym_shift_expression] = STATE(1320), + [sym_math_expression] = STATE(1320), + [sym_cast_expression] = STATE(1320), + [sym_sizeof_expression] = STATE(1320), + [sym_subscript_expression] = STATE(1320), + [sym_call_expression] = STATE(1320), + [sym_field_expression] = STATE(1320), + [sym_compound_literal_expression] = STATE(1320), + [sym_parenthesized_expression] = STATE(1320), + [sym_concatenated_string] = STATE(1320), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3718), + [sym_char_literal] = ACTIONS(3718), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3720), + [sym_false] = ACTIONS(3720), + [sym_null] = ACTIONS(3720), + [sym_identifier] = ACTIONS(3720), [sym_comment] = ACTIONS(39), }, - [1286] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3751), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1277] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3722), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1287] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3753), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1278] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1288] = { - [sym_declaration] = STATE(1114), - [sym_type_definition] = STATE(1114), - [sym__declaration_specifiers] = STATE(1007), - [sym_compound_statement] = STATE(1114), + [1279] = { + [sym_declaration] = STATE(927), + [sym_type_definition] = STATE(927), + [sym__declaration_specifiers] = STATE(698), + [sym_compound_statement] = STATE(927), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -51225,46 +50262,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(1114), - [sym_expression_statement] = STATE(1114), - [sym_if_statement] = STATE(1114), - [sym_switch_statement] = STATE(1114), - [sym_case_statement] = STATE(1114), - [sym_while_statement] = STATE(1114), - [sym_do_statement] = STATE(1114), - [sym_for_statement] = STATE(1114), - [sym_return_statement] = STATE(1114), - [sym_break_statement] = STATE(1114), - [sym_continue_statement] = STATE(1114), - [sym_goto_statement] = STATE(1114), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), + [sym_labeled_statement] = STATE(927), + [sym_expression_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_switch_statement] = STATE(927), + [sym_case_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_do_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_return_statement] = STATE(927), + [sym_break_statement] = STATE(927), + [sym_continue_statement] = STATE(927), + [sym_goto_statement] = STATE(927), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_typedef] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_typedef] = ACTIONS(19), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -51280,42 +50317,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3671), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3630), [sym_comment] = ACTIONS(39), }, - [1289] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), + [1280] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_static] = ACTIONS(86), [anon_sym_auto] = ACTIONS(86), [anon_sym_register] = ACTIONS(86), @@ -51324,564 +50361,666 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(86), [anon_sym_volatile] = ACTIONS(86), [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3567), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(3506), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [1290] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3755), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1281] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1291] = { - [sym__expression] = STATE(1329), - [sym_conditional_expression] = STATE(1329), - [sym_assignment_expression] = STATE(1329), - [sym_pointer_expression] = STATE(1329), - [sym_logical_expression] = STATE(1329), - [sym_bitwise_expression] = STATE(1329), - [sym_equality_expression] = STATE(1329), - [sym_relational_expression] = STATE(1329), - [sym_shift_expression] = STATE(1329), - [sym_math_expression] = STATE(1329), - [sym_cast_expression] = STATE(1329), - [sym_sizeof_expression] = STATE(1329), - [sym_subscript_expression] = STATE(1329), - [sym_call_expression] = STATE(1329), - [sym_field_expression] = STATE(1329), - [sym_compound_literal_expression] = STATE(1329), - [sym_parenthesized_expression] = STATE(1329), - [sym_concatenated_string] = STATE(1329), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3757), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3759), - [sym_char_literal] = ACTIONS(3759), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3761), - [sym_false] = ACTIONS(3761), - [sym_null] = ACTIONS(3761), - [sym_identifier] = ACTIONS(3761), + [1282] = { + [sym__expression] = STATE(1325), + [sym_conditional_expression] = STATE(1325), + [sym_assignment_expression] = STATE(1325), + [sym_pointer_expression] = STATE(1325), + [sym_logical_expression] = STATE(1325), + [sym_bitwise_expression] = STATE(1325), + [sym_equality_expression] = STATE(1325), + [sym_relational_expression] = STATE(1325), + [sym_shift_expression] = STATE(1325), + [sym_math_expression] = STATE(1325), + [sym_cast_expression] = STATE(1325), + [sym_sizeof_expression] = STATE(1325), + [sym_subscript_expression] = STATE(1325), + [sym_call_expression] = STATE(1325), + [sym_field_expression] = STATE(1325), + [sym_compound_literal_expression] = STATE(1325), + [sym_parenthesized_expression] = STATE(1325), + [sym_concatenated_string] = STATE(1325), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3730), + [sym_char_literal] = ACTIONS(3730), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3732), + [sym_false] = ACTIONS(3732), + [sym_null] = ACTIONS(3732), + [sym_identifier] = ACTIONS(3732), [sym_comment] = ACTIONS(39), }, - [1292] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3763), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1283] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3734), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1293] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3595), - [anon_sym_LPAREN] = ACTIONS(3597), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3595), - [sym_preproc_directive] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3597), - [anon_sym_typedef] = ACTIONS(3595), - [anon_sym_extern] = ACTIONS(3595), - [anon_sym_LBRACE] = ACTIONS(3597), - [anon_sym_STAR] = ACTIONS(3597), - [anon_sym_static] = ACTIONS(3595), - [anon_sym_auto] = ACTIONS(3595), - [anon_sym_register] = ACTIONS(3595), - [anon_sym_inline] = ACTIONS(3595), - [anon_sym_const] = ACTIONS(3595), - [anon_sym_restrict] = ACTIONS(3595), - [anon_sym_volatile] = ACTIONS(3595), - [anon_sym__Atomic] = ACTIONS(3595), - [anon_sym_unsigned] = ACTIONS(3595), - [anon_sym_long] = ACTIONS(3595), - [anon_sym_short] = ACTIONS(3595), - [sym_primitive_type] = ACTIONS(3595), - [anon_sym_enum] = ACTIONS(3595), - [anon_sym_struct] = ACTIONS(3595), - [anon_sym_union] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_else] = ACTIONS(3595), - [anon_sym_switch] = ACTIONS(3595), - [anon_sym_case] = ACTIONS(3595), - [anon_sym_default] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_break] = ACTIONS(3595), - [anon_sym_continue] = ACTIONS(3595), - [anon_sym_goto] = ACTIONS(3595), - [anon_sym_AMP] = ACTIONS(3597), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(3597), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_DASH_DASH] = ACTIONS(3597), - [anon_sym_PLUS_PLUS] = ACTIONS(3597), - [anon_sym_sizeof] = ACTIONS(3595), - [sym_number_literal] = ACTIONS(3597), - [sym_char_literal] = ACTIONS(3597), - [sym_string_literal] = ACTIONS(3597), - [sym_true] = ACTIONS(3595), - [sym_false] = ACTIONS(3595), - [sym_null] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3595), + [1284] = { + [sym_compound_statement] = STATE(1287), + [sym_labeled_statement] = STATE(1287), + [sym_expression_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym_case_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_break_statement] = STATE(1287), + [sym_continue_statement] = STATE(1287), + [sym_goto_statement] = STATE(1287), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, - [1294] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3629), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3627), - [sym_preproc_directive] = ACTIONS(3627), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_typedef] = ACTIONS(3627), - [anon_sym_extern] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_static] = ACTIONS(3627), - [anon_sym_auto] = ACTIONS(3627), - [anon_sym_register] = ACTIONS(3627), - [anon_sym_inline] = ACTIONS(3627), - [anon_sym_const] = ACTIONS(3627), - [anon_sym_restrict] = ACTIONS(3627), - [anon_sym_volatile] = ACTIONS(3627), - [anon_sym__Atomic] = ACTIONS(3627), - [anon_sym_unsigned] = ACTIONS(3627), - [anon_sym_long] = ACTIONS(3627), - [anon_sym_short] = ACTIONS(3627), - [sym_primitive_type] = ACTIONS(3627), - [anon_sym_enum] = ACTIONS(3627), - [anon_sym_struct] = ACTIONS(3627), - [anon_sym_union] = ACTIONS(3627), - [anon_sym_if] = ACTIONS(3627), - [anon_sym_else] = ACTIONS(3627), - [anon_sym_switch] = ACTIONS(3627), - [anon_sym_case] = ACTIONS(3627), - [anon_sym_default] = ACTIONS(3627), - [anon_sym_while] = ACTIONS(3627), - [anon_sym_do] = ACTIONS(3627), - [anon_sym_for] = ACTIONS(3627), - [anon_sym_return] = ACTIONS(3627), - [anon_sym_break] = ACTIONS(3627), - [anon_sym_continue] = ACTIONS(3627), - [anon_sym_goto] = ACTIONS(3627), - [anon_sym_AMP] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3629), - [anon_sym_PLUS_PLUS] = ACTIONS(3629), - [anon_sym_sizeof] = ACTIONS(3627), - [sym_number_literal] = ACTIONS(3629), - [sym_char_literal] = ACTIONS(3629), - [sym_string_literal] = ACTIONS(3629), - [sym_true] = ACTIONS(3627), - [sym_false] = ACTIONS(3627), - [sym_null] = ACTIONS(3627), - [sym_identifier] = ACTIONS(3627), + [1285] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3736), [sym_comment] = ACTIONS(39), }, - [1295] = { - [sym_compound_statement] = STATE(1331), - [sym_labeled_statement] = STATE(1331), - [sym_expression_statement] = STATE(1331), - [sym_if_statement] = STATE(1331), - [sym_switch_statement] = STATE(1331), - [sym_case_statement] = STATE(1331), - [sym_while_statement] = STATE(1331), - [sym_do_statement] = STATE(1331), - [sym_for_statement] = STATE(1331), - [sym_return_statement] = STATE(1331), - [sym_break_statement] = STATE(1331), - [sym_continue_statement] = STATE(1331), - [sym_goto_statement] = STATE(1331), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(2787), + [1286] = { + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1328), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3736), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1296] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3765), + [1287] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3738), + [sym_preproc_directive] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym_typedef] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_auto] = ACTIONS(3738), + [anon_sym_register] = ACTIONS(3738), + [anon_sym_inline] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_restrict] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym__Atomic] = ACTIONS(3738), + [anon_sym_unsigned] = ACTIONS(3738), + [anon_sym_long] = ACTIONS(3738), + [anon_sym_short] = ACTIONS(3738), + [sym_primitive_type] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_union] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_else] = ACTIONS(3738), + [anon_sym_switch] = ACTIONS(3738), + [anon_sym_case] = ACTIONS(3738), + [anon_sym_default] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_break] = ACTIONS(3738), + [anon_sym_continue] = ACTIONS(3738), + [anon_sym_goto] = ACTIONS(3738), + [anon_sym_AMP] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_sizeof] = ACTIONS(3738), + [sym_number_literal] = ACTIONS(3740), + [sym_char_literal] = ACTIONS(3740), + [sym_string_literal] = ACTIONS(3740), + [sym_true] = ACTIONS(3738), + [sym_false] = ACTIONS(3738), + [sym_null] = ACTIONS(3738), + [sym_identifier] = ACTIONS(3738), [sym_comment] = ACTIONS(39), }, - [1297] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1333), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3765), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1288] = { + [sym_compound_statement] = STATE(1329), + [sym_labeled_statement] = STATE(1329), + [sym_expression_statement] = STATE(1329), + [sym_if_statement] = STATE(1329), + [sym_switch_statement] = STATE(1329), + [sym_case_statement] = STATE(1329), + [sym_while_statement] = STATE(1329), + [sym_do_statement] = STATE(1329), + [sym_for_statement] = STATE(1329), + [sym_return_statement] = STATE(1329), + [sym_break_statement] = STATE(1329), + [sym_continue_statement] = STATE(1329), + [sym_goto_statement] = STATE(1329), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1715), [sym_comment] = ACTIONS(39), }, - [1298] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_auto] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3767), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [sym_char_literal] = ACTIONS(3288), - [sym_string_literal] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3286), + [1289] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3742), [sym_comment] = ACTIONS(39), }, - [1299] = { - [sym_compound_statement] = STATE(1144), - [sym_labeled_statement] = STATE(1144), - [sym_expression_statement] = STATE(1144), - [sym_if_statement] = STATE(1144), - [sym_switch_statement] = STATE(1144), - [sym_case_statement] = STATE(1144), - [sym_while_statement] = STATE(1144), - [sym_do_statement] = STATE(1144), - [sym_for_statement] = STATE(1144), - [sym_return_statement] = STATE(1144), - [sym_break_statement] = STATE(1144), - [sym_continue_statement] = STATE(1144), - [sym_goto_statement] = STATE(1144), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2924), + [1290] = { + [sym__expression] = STATE(1331), + [sym_conditional_expression] = STATE(1331), + [sym_assignment_expression] = STATE(1331), + [sym_pointer_expression] = STATE(1331), + [sym_logical_expression] = STATE(1331), + [sym_bitwise_expression] = STATE(1331), + [sym_equality_expression] = STATE(1331), + [sym_relational_expression] = STATE(1331), + [sym_shift_expression] = STATE(1331), + [sym_math_expression] = STATE(1331), + [sym_cast_expression] = STATE(1331), + [sym_sizeof_expression] = STATE(1331), + [sym_subscript_expression] = STATE(1331), + [sym_call_expression] = STATE(1331), + [sym_field_expression] = STATE(1331), + [sym_compound_literal_expression] = STATE(1331), + [sym_parenthesized_expression] = STATE(1331), + [sym_concatenated_string] = STATE(1331), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3744), + [sym_char_literal] = ACTIONS(3744), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3746), + [sym_false] = ACTIONS(3746), + [sym_null] = ACTIONS(3746), + [sym_identifier] = ACTIONS(3746), [sym_comment] = ACTIONS(39), }, - [1300] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1336), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1291] = { + [sym__expression] = STATE(1332), + [sym_conditional_expression] = STATE(1332), + [sym_assignment_expression] = STATE(1332), + [sym_pointer_expression] = STATE(1332), + [sym_logical_expression] = STATE(1332), + [sym_bitwise_expression] = STATE(1332), + [sym_equality_expression] = STATE(1332), + [sym_relational_expression] = STATE(1332), + [sym_shift_expression] = STATE(1332), + [sym_math_expression] = STATE(1332), + [sym_cast_expression] = STATE(1332), + [sym_sizeof_expression] = STATE(1332), + [sym_subscript_expression] = STATE(1332), + [sym_call_expression] = STATE(1332), + [sym_field_expression] = STATE(1332), + [sym_compound_literal_expression] = STATE(1332), + [sym_parenthesized_expression] = STATE(1332), + [sym_concatenated_string] = STATE(1332), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3748), + [sym_char_literal] = ACTIONS(3748), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3750), + [sym_false] = ACTIONS(3750), + [sym_null] = ACTIONS(3750), + [sym_identifier] = ACTIONS(3750), [sym_comment] = ACTIONS(39), }, - [1301] = { + [1292] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1617), + [anon_sym_COLON] = ACTIONS(3752), + [anon_sym_QMARK] = ACTIONS(1621), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_PIPE_PIPE] = ACTIONS(1627), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [anon_sym_EQ_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(1637), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_LT_LT] = ACTIONS(1641), + [anon_sym_GT_GT] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1643), + [anon_sym_DASH] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [1293] = { + [sym_declaration] = STATE(1118), + [sym_type_definition] = STATE(1118), + [sym__declaration_specifiers] = STATE(1119), + [sym_compound_statement] = STATE(1118), + [sym_storage_class_specifier] = STATE(93), + [sym_type_qualifier] = STATE(93), + [sym__type_specifier] = STATE(92), + [sym_sized_type_specifier] = STATE(92), + [sym_enum_specifier] = STATE(92), + [sym_struct_specifier] = STATE(92), + [sym_union_specifier] = STATE(92), + [sym_labeled_statement] = STATE(1118), + [sym_expression_statement] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_switch_statement] = STATE(1118), + [sym_case_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_do_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_return_statement] = STATE(1118), + [sym_break_statement] = STATE(1118), + [sym_continue_statement] = STATE(1118), + [sym_goto_statement] = STATE(1118), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [sym_macro_type_specifier] = STATE(92), + [aux_sym__declaration_specifiers_repeat1] = STATE(93), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_typedef] = ACTIONS(362), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(171), + [anon_sym_long] = ACTIONS(171), + [anon_sym_short] = ACTIONS(171), + [sym_primitive_type] = ACTIONS(173), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3754), + [sym_comment] = ACTIONS(39), + }, + [1294] = { + [sym__expression] = STATE(1335), + [sym_conditional_expression] = STATE(1335), + [sym_assignment_expression] = STATE(1335), + [sym_pointer_expression] = STATE(1335), + [sym_logical_expression] = STATE(1335), + [sym_bitwise_expression] = STATE(1335), + [sym_equality_expression] = STATE(1335), + [sym_relational_expression] = STATE(1335), + [sym_shift_expression] = STATE(1335), + [sym_math_expression] = STATE(1335), + [sym_cast_expression] = STATE(1335), + [sym_sizeof_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_call_expression] = STATE(1335), + [sym_field_expression] = STATE(1335), + [sym_compound_literal_expression] = STATE(1335), + [sym_parenthesized_expression] = STATE(1335), + [sym_concatenated_string] = STATE(1335), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1593), + [anon_sym_PLUS_PLUS] = ACTIONS(1593), + [anon_sym_sizeof] = ACTIONS(1595), + [sym_number_literal] = ACTIONS(3756), + [sym_char_literal] = ACTIONS(3756), + [sym_string_literal] = ACTIONS(1599), + [sym_true] = ACTIONS(3758), + [sym_false] = ACTIONS(3758), + [sym_null] = ACTIONS(3758), + [sym_identifier] = ACTIONS(3758), + [sym_comment] = ACTIONS(39), + }, + [1295] = { + [sym_declaration] = STATE(1336), + [sym__declaration_specifiers] = STATE(698), + [sym_storage_class_specifier] = STATE(93), + [sym_type_qualifier] = STATE(93), + [sym__type_specifier] = STATE(92), + [sym_sized_type_specifier] = STATE(92), + [sym_enum_specifier] = STATE(92), + [sym_struct_specifier] = STATE(92), + [sym_union_specifier] = STATE(92), [sym__expression] = STATE(1337), [sym_conditional_expression] = STATE(1337), [sym_assignment_expression] = STATE(1337), @@ -51900,68 +51039,292 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1337), [sym_parenthesized_expression] = STATE(1337), [sym_concatenated_string] = STATE(1337), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3769), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3771), - [sym_char_literal] = ACTIONS(3771), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_identifier] = ACTIONS(3773), + [sym_macro_type_specifier] = STATE(92), + [aux_sym__declaration_specifiers_repeat1] = STATE(93), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(171), + [anon_sym_long] = ACTIONS(171), + [anon_sym_short] = ACTIONS(171), + [sym_primitive_type] = ACTIONS(173), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3762), + [sym_char_literal] = ACTIONS(3762), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3764), + [sym_false] = ACTIONS(3764), + [sym_null] = ACTIONS(3764), + [sym_identifier] = ACTIONS(1675), [sym_comment] = ACTIONS(39), }, - [1302] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3775), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1296] = { + [sym_compound_statement] = STATE(1127), + [sym_labeled_statement] = STATE(1127), + [sym_expression_statement] = STATE(1127), + [sym_if_statement] = STATE(1127), + [sym_switch_statement] = STATE(1127), + [sym_case_statement] = STATE(1127), + [sym_while_statement] = STATE(1127), + [sym_do_statement] = STATE(1127), + [sym_for_statement] = STATE(1127), + [sym_return_statement] = STATE(1127), + [sym_break_statement] = STATE(1127), + [sym_continue_statement] = STATE(1127), + [sym_goto_statement] = STATE(1127), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3556), [sym_comment] = ACTIONS(39), }, - [1303] = { + [1297] = { + [sym_compound_statement] = STATE(1338), + [sym_labeled_statement] = STATE(1338), + [sym_expression_statement] = STATE(1338), + [sym_if_statement] = STATE(1338), + [sym_switch_statement] = STATE(1338), + [sym_case_statement] = STATE(1338), + [sym_while_statement] = STATE(1338), + [sym_do_statement] = STATE(1338), + [sym_for_statement] = STATE(1338), + [sym_return_statement] = STATE(1338), + [sym_break_statement] = STATE(1338), + [sym_continue_statement] = STATE(1338), + [sym_goto_statement] = STATE(1338), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3169), + [sym_comment] = ACTIONS(39), + }, + [1298] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3520), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_auto] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [sym_char_literal] = ACTIONS(3520), + [sym_string_literal] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3518), + [sym_comment] = ACTIONS(39), + }, + [1299] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3524), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3522), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3522), + [sym_preproc_directive] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_typedef] = ACTIONS(3522), + [anon_sym_extern] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_auto] = ACTIONS(3522), + [anon_sym_register] = ACTIONS(3522), + [anon_sym_inline] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_restrict] = ACTIONS(3522), + [anon_sym_volatile] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3522), + [anon_sym_unsigned] = ACTIONS(3522), + [anon_sym_long] = ACTIONS(3522), + [anon_sym_short] = ACTIONS(3522), + [sym_primitive_type] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_union] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_case] = ACTIONS(3522), + [anon_sym_default] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_goto] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_sizeof] = ACTIONS(3522), + [sym_number_literal] = ACTIONS(3524), + [sym_char_literal] = ACTIONS(3524), + [sym_string_literal] = ACTIONS(3524), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [sym_null] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3522), + [sym_comment] = ACTIONS(39), + }, + [1300] = { [sym_compound_statement] = STATE(1339), [sym_labeled_statement] = STATE(1339), [sym_expression_statement] = STATE(1339), @@ -51975,587 +51338,232 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(1339), [sym_continue_statement] = STATE(1339), [sym_goto_statement] = STATE(1339), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3322), - [sym_comment] = ACTIONS(39), - }, - [1304] = { - [sym_compound_statement] = STATE(1044), - [sym_labeled_statement] = STATE(1044), - [sym_expression_statement] = STATE(1044), - [sym_if_statement] = STATE(1044), - [sym_switch_statement] = STATE(1044), - [sym_case_statement] = STATE(1044), - [sym_while_statement] = STATE(1044), - [sym_do_statement] = STATE(1044), - [sym_for_statement] = STATE(1044), - [sym_return_statement] = STATE(1044), - [sym_break_statement] = STATE(1044), - [sym_continue_statement] = STATE(1044), - [sym_goto_statement] = STATE(1044), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3322), - [sym_comment] = ACTIONS(39), - }, - [1305] = { - [sym_compound_statement] = STATE(1047), - [sym_labeled_statement] = STATE(1047), - [sym_expression_statement] = STATE(1047), - [sym_if_statement] = STATE(1047), - [sym_switch_statement] = STATE(1047), - [sym_case_statement] = STATE(1047), - [sym_while_statement] = STATE(1047), - [sym_do_statement] = STATE(1047), - [sym_for_statement] = STATE(1047), - [sym_return_statement] = STATE(1047), - [sym_break_statement] = STATE(1047), - [sym_continue_statement] = STATE(1047), - [sym_goto_statement] = STATE(1047), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3322), - [sym_comment] = ACTIONS(39), - }, - [1306] = { - [sym__expression] = STATE(1341), - [sym_conditional_expression] = STATE(1341), - [sym_assignment_expression] = STATE(1341), - [sym_pointer_expression] = STATE(1341), - [sym_logical_expression] = STATE(1341), - [sym_bitwise_expression] = STATE(1341), - [sym_equality_expression] = STATE(1341), - [sym_relational_expression] = STATE(1341), - [sym_shift_expression] = STATE(1341), - [sym_math_expression] = STATE(1341), - [sym_cast_expression] = STATE(1341), - [sym_sizeof_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_call_expression] = STATE(1341), - [sym_field_expression] = STATE(1341), - [sym_compound_literal_expression] = STATE(1341), - [sym_parenthesized_expression] = STATE(1341), - [sym_concatenated_string] = STATE(1341), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3777), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3779), - [sym_char_literal] = ACTIONS(3779), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3781), - [sym_false] = ACTIONS(3781), - [sym_null] = ACTIONS(3781), - [sym_identifier] = ACTIONS(3781), - [sym_comment] = ACTIONS(39), - }, - [1307] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3783), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1308] = { - [sym__expression] = STATE(1343), - [sym_conditional_expression] = STATE(1343), - [sym_assignment_expression] = STATE(1343), - [sym_pointer_expression] = STATE(1343), - [sym_logical_expression] = STATE(1343), - [sym_bitwise_expression] = STATE(1343), - [sym_equality_expression] = STATE(1343), - [sym_relational_expression] = STATE(1343), - [sym_shift_expression] = STATE(1343), - [sym_math_expression] = STATE(1343), - [sym_cast_expression] = STATE(1343), - [sym_sizeof_expression] = STATE(1343), - [sym_subscript_expression] = STATE(1343), - [sym_call_expression] = STATE(1343), - [sym_field_expression] = STATE(1343), - [sym_compound_literal_expression] = STATE(1343), - [sym_parenthesized_expression] = STATE(1343), - [sym_concatenated_string] = STATE(1343), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3783), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3785), - [sym_char_literal] = ACTIONS(3785), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3787), - [sym_false] = ACTIONS(3787), - [sym_null] = ACTIONS(3787), - [sym_identifier] = ACTIONS(3787), - [sym_comment] = ACTIONS(39), - }, - [1309] = { - [sym_compound_statement] = STATE(1311), - [sym_labeled_statement] = STATE(1311), - [sym_expression_statement] = STATE(1311), - [sym_if_statement] = STATE(1311), - [sym_switch_statement] = STATE(1311), - [sym_case_statement] = STATE(1311), - [sym_while_statement] = STATE(1311), - [sym_do_statement] = STATE(1311), - [sym_for_statement] = STATE(1311), - [sym_return_statement] = STATE(1311), - [sym_break_statement] = STATE(1311), - [sym_continue_statement] = STATE(1311), - [sym_goto_statement] = STATE(1311), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3169), [sym_comment] = ACTIONS(39), }, - [1310] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3789), + [1301] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3766), [sym_comment] = ACTIONS(39), }, - [1311] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3791), - [anon_sym_LPAREN] = ACTIONS(3793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3791), - [sym_preproc_directive] = ACTIONS(3791), - [anon_sym_SEMI] = ACTIONS(3793), - [anon_sym_typedef] = ACTIONS(3791), - [anon_sym_extern] = ACTIONS(3791), - [anon_sym_LBRACE] = ACTIONS(3793), - [anon_sym_RBRACE] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_static] = ACTIONS(3791), - [anon_sym_auto] = ACTIONS(3791), - [anon_sym_register] = ACTIONS(3791), - [anon_sym_inline] = ACTIONS(3791), - [anon_sym_const] = ACTIONS(3791), - [anon_sym_restrict] = ACTIONS(3791), - [anon_sym_volatile] = ACTIONS(3791), - [anon_sym__Atomic] = ACTIONS(3791), - [anon_sym_unsigned] = ACTIONS(3791), - [anon_sym_long] = ACTIONS(3791), - [anon_sym_short] = ACTIONS(3791), - [sym_primitive_type] = ACTIONS(3791), - [anon_sym_enum] = ACTIONS(3791), - [anon_sym_struct] = ACTIONS(3791), - [anon_sym_union] = ACTIONS(3791), - [anon_sym_if] = ACTIONS(3791), - [anon_sym_else] = ACTIONS(3791), - [anon_sym_switch] = ACTIONS(3791), - [anon_sym_case] = ACTIONS(3791), - [anon_sym_default] = ACTIONS(3791), - [anon_sym_while] = ACTIONS(3791), - [anon_sym_do] = ACTIONS(3791), - [anon_sym_for] = ACTIONS(3791), - [anon_sym_return] = ACTIONS(3791), - [anon_sym_break] = ACTIONS(3791), - [anon_sym_continue] = ACTIONS(3791), - [anon_sym_goto] = ACTIONS(3791), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_BANG] = ACTIONS(3793), - [anon_sym_TILDE] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3791), - [anon_sym_DASH] = ACTIONS(3791), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_sizeof] = ACTIONS(3791), - [sym_number_literal] = ACTIONS(3793), - [sym_char_literal] = ACTIONS(3793), - [sym_string_literal] = ACTIONS(3793), - [sym_true] = ACTIONS(3791), - [sym_false] = ACTIONS(3791), - [sym_null] = ACTIONS(3791), - [sym_identifier] = ACTIONS(3791), + [1302] = { + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1341), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1312] = { - [sym_compound_statement] = STATE(1345), - [sym_labeled_statement] = STATE(1345), - [sym_expression_statement] = STATE(1345), - [sym_if_statement] = STATE(1345), - [sym_switch_statement] = STATE(1345), - [sym_case_statement] = STATE(1345), - [sym_while_statement] = STATE(1345), - [sym_do_statement] = STATE(1345), - [sym_for_statement] = STATE(1345), - [sym_return_statement] = STATE(1345), - [sym_break_statement] = STATE(1345), - [sym_continue_statement] = STATE(1345), - [sym_goto_statement] = STATE(1345), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_case] = ACTIONS(546), - [anon_sym_default] = ACTIONS(548), - [anon_sym_while] = ACTIONS(550), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(554), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1701), + [1303] = { + [sym__expression] = STATE(1342), + [sym_conditional_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1342), + [sym_pointer_expression] = STATE(1342), + [sym_logical_expression] = STATE(1342), + [sym_bitwise_expression] = STATE(1342), + [sym_equality_expression] = STATE(1342), + [sym_relational_expression] = STATE(1342), + [sym_shift_expression] = STATE(1342), + [sym_math_expression] = STATE(1342), + [sym_cast_expression] = STATE(1342), + [sym_sizeof_expression] = STATE(1342), + [sym_subscript_expression] = STATE(1342), + [sym_call_expression] = STATE(1342), + [sym_field_expression] = STATE(1342), + [sym_compound_literal_expression] = STATE(1342), + [sym_parenthesized_expression] = STATE(1342), + [sym_concatenated_string] = STATE(1342), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3768), + [sym_char_literal] = ACTIONS(3768), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3770), + [sym_false] = ACTIONS(3770), + [sym_null] = ACTIONS(3770), + [sym_identifier] = ACTIONS(3770), [sym_comment] = ACTIONS(39), }, - [1313] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1304] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3772), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1314] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3797), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1305] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3774), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1315] = { - [sym_declaration] = STATE(1172), - [sym_type_definition] = STATE(1172), - [sym__declaration_specifiers] = STATE(1101), - [sym_compound_statement] = STATE(1172), + [1306] = { + [sym_declaration] = STATE(1132), + [sym_type_definition] = STATE(1132), + [sym__declaration_specifiers] = STATE(1025), + [sym_compound_statement] = STATE(1132), [sym_storage_class_specifier] = STATE(93), [sym_type_qualifier] = STATE(93), [sym__type_specifier] = STATE(92), @@ -52563,46 +51571,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(92), [sym_struct_specifier] = STATE(92), [sym_union_specifier] = STATE(92), - [sym_labeled_statement] = STATE(1172), - [sym_expression_statement] = STATE(1172), - [sym_if_statement] = STATE(1172), - [sym_switch_statement] = STATE(1172), - [sym_case_statement] = STATE(1172), - [sym_while_statement] = STATE(1172), - [sym_do_statement] = STATE(1172), - [sym_for_statement] = STATE(1172), - [sym_return_statement] = STATE(1172), - [sym_break_statement] = STATE(1172), - [sym_continue_statement] = STATE(1172), - [sym_goto_statement] = STATE(1172), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), + [sym_labeled_statement] = STATE(1132), + [sym_expression_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_switch_statement] = STATE(1132), + [sym_case_statement] = STATE(1132), + [sym_while_statement] = STATE(1132), + [sym_do_statement] = STATE(1132), + [sym_for_statement] = STATE(1132), + [sym_return_statement] = STATE(1132), + [sym_break_statement] = STATE(1132), + [sym_continue_statement] = STATE(1132), + [sym_goto_statement] = STATE(1132), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), [sym_macro_type_specifier] = STATE(92), [aux_sym__declaration_specifiers_repeat1] = STATE(93), [aux_sym_sized_type_specifier_repeat1] = STATE(94), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_typedef] = ACTIONS(362), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_typedef] = ACTIONS(145), [anon_sym_extern] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), [anon_sym_static] = ACTIONS(23), [anon_sym_auto] = ACTIONS(23), [anon_sym_register] = ACTIONS(23), @@ -52618,42 +51626,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(31), [anon_sym_struct] = ACTIONS(33), [anon_sym_union] = ACTIONS(35), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3733), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3692), [sym_comment] = ACTIONS(39), }, - [1316] = { - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), + [1307] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), [anon_sym_extern] = ACTIONS(86), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), [anon_sym_static] = ACTIONS(86), [anon_sym_auto] = ACTIONS(86), [anon_sym_register] = ACTIONS(86), @@ -52662,669 +51670,839 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_restrict] = ACTIONS(86), [anon_sym_volatile] = ACTIONS(86), [anon_sym__Atomic] = ACTIONS(86), - [anon_sym_COLON] = ACTIONS(3647), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_PLUS_PLUS] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(3588), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [1317] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(3799), - [anon_sym_STAR] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2408), - [anon_sym_SLASH_EQ] = ACTIONS(2408), - [anon_sym_PERCENT_EQ] = ACTIONS(2408), - [anon_sym_PLUS_EQ] = ACTIONS(2408), - [anon_sym_DASH_EQ] = ACTIONS(2408), - [anon_sym_LT_LT_EQ] = ACTIONS(2408), - [anon_sym_GT_GT_EQ] = ACTIONS(2408), - [anon_sym_AMP_EQ] = ACTIONS(2408), - [anon_sym_CARET_EQ] = ACTIONS(2408), - [anon_sym_PIPE_EQ] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2414), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2420), - [anon_sym_BANG_EQ] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_GT] = ACTIONS(2422), - [anon_sym_LT_EQ] = ACTIONS(2424), - [anon_sym_GT_EQ] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2426), - [anon_sym_GT_GT] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1308] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3776), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1318] = { - [sym__expression] = STATE(1350), - [sym_conditional_expression] = STATE(1350), - [sym_assignment_expression] = STATE(1350), - [sym_pointer_expression] = STATE(1350), - [sym_logical_expression] = STATE(1350), - [sym_bitwise_expression] = STATE(1350), - [sym_equality_expression] = STATE(1350), - [sym_relational_expression] = STATE(1350), - [sym_shift_expression] = STATE(1350), - [sym_math_expression] = STATE(1350), - [sym_cast_expression] = STATE(1350), - [sym_sizeof_expression] = STATE(1350), - [sym_subscript_expression] = STATE(1350), - [sym_call_expression] = STATE(1350), - [sym_field_expression] = STATE(1350), - [sym_compound_literal_expression] = STATE(1350), - [sym_parenthesized_expression] = STATE(1350), - [sym_concatenated_string] = STATE(1350), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3803), - [sym_char_literal] = ACTIONS(3803), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3805), - [sym_false] = ACTIONS(3805), - [sym_null] = ACTIONS(3805), - [sym_identifier] = ACTIONS(3805), + [1309] = { + [sym__expression] = STATE(1347), + [sym_conditional_expression] = STATE(1347), + [sym_assignment_expression] = STATE(1347), + [sym_pointer_expression] = STATE(1347), + [sym_logical_expression] = STATE(1347), + [sym_bitwise_expression] = STATE(1347), + [sym_equality_expression] = STATE(1347), + [sym_relational_expression] = STATE(1347), + [sym_shift_expression] = STATE(1347), + [sym_math_expression] = STATE(1347), + [sym_cast_expression] = STATE(1347), + [sym_sizeof_expression] = STATE(1347), + [sym_subscript_expression] = STATE(1347), + [sym_call_expression] = STATE(1347), + [sym_field_expression] = STATE(1347), + [sym_compound_literal_expression] = STATE(1347), + [sym_parenthesized_expression] = STATE(1347), + [sym_concatenated_string] = STATE(1347), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3778), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3780), + [sym_char_literal] = ACTIONS(3780), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3782), + [sym_false] = ACTIONS(3782), + [sym_null] = ACTIONS(3782), + [sym_identifier] = ACTIONS(3782), [sym_comment] = ACTIONS(39), }, - [1319] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3807), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1310] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1320] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3595), - [anon_sym_LPAREN] = ACTIONS(3597), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3595), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3595), - [sym_preproc_directive] = ACTIONS(3595), - [anon_sym_SEMI] = ACTIONS(3597), - [anon_sym_typedef] = ACTIONS(3595), - [anon_sym_extern] = ACTIONS(3595), - [anon_sym_LBRACE] = ACTIONS(3597), - [anon_sym_STAR] = ACTIONS(3597), - [anon_sym_static] = ACTIONS(3595), - [anon_sym_auto] = ACTIONS(3595), - [anon_sym_register] = ACTIONS(3595), - [anon_sym_inline] = ACTIONS(3595), - [anon_sym_const] = ACTIONS(3595), - [anon_sym_restrict] = ACTIONS(3595), - [anon_sym_volatile] = ACTIONS(3595), - [anon_sym__Atomic] = ACTIONS(3595), - [anon_sym_unsigned] = ACTIONS(3595), - [anon_sym_long] = ACTIONS(3595), - [anon_sym_short] = ACTIONS(3595), - [sym_primitive_type] = ACTIONS(3595), - [anon_sym_enum] = ACTIONS(3595), - [anon_sym_struct] = ACTIONS(3595), - [anon_sym_union] = ACTIONS(3595), - [anon_sym_if] = ACTIONS(3595), - [anon_sym_else] = ACTIONS(3595), - [anon_sym_switch] = ACTIONS(3595), - [anon_sym_case] = ACTIONS(3595), - [anon_sym_default] = ACTIONS(3595), - [anon_sym_while] = ACTIONS(3595), - [anon_sym_do] = ACTIONS(3595), - [anon_sym_for] = ACTIONS(3595), - [anon_sym_return] = ACTIONS(3595), - [anon_sym_break] = ACTIONS(3595), - [anon_sym_continue] = ACTIONS(3595), - [anon_sym_goto] = ACTIONS(3595), - [anon_sym_AMP] = ACTIONS(3597), - [anon_sym_BANG] = ACTIONS(3597), - [anon_sym_TILDE] = ACTIONS(3597), - [anon_sym_PLUS] = ACTIONS(3595), - [anon_sym_DASH] = ACTIONS(3595), - [anon_sym_DASH_DASH] = ACTIONS(3597), - [anon_sym_PLUS_PLUS] = ACTIONS(3597), - [anon_sym_sizeof] = ACTIONS(3595), - [sym_number_literal] = ACTIONS(3597), - [sym_char_literal] = ACTIONS(3597), - [sym_string_literal] = ACTIONS(3597), - [sym_true] = ACTIONS(3595), - [sym_false] = ACTIONS(3595), - [sym_null] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3595), + [1311] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3618), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3616), + [sym_preproc_directive] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3616), + [anon_sym_extern] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_auto] = ACTIONS(3616), + [anon_sym_register] = ACTIONS(3616), + [anon_sym_inline] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_restrict] = ACTIONS(3616), + [anon_sym_volatile] = ACTIONS(3616), + [anon_sym__Atomic] = ACTIONS(3616), + [anon_sym_unsigned] = ACTIONS(3616), + [anon_sym_long] = ACTIONS(3616), + [anon_sym_short] = ACTIONS(3616), + [sym_primitive_type] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3616), + [anon_sym_union] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_case] = ACTIONS(3616), + [anon_sym_default] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_goto] = ACTIONS(3616), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_sizeof] = ACTIONS(3616), + [sym_number_literal] = ACTIONS(3618), + [sym_char_literal] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3618), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3616), [sym_comment] = ACTIONS(39), }, - [1321] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3629), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3627), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3627), - [sym_preproc_directive] = ACTIONS(3627), - [anon_sym_SEMI] = ACTIONS(3629), - [anon_sym_typedef] = ACTIONS(3627), - [anon_sym_extern] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3629), - [anon_sym_STAR] = ACTIONS(3629), - [anon_sym_static] = ACTIONS(3627), - [anon_sym_auto] = ACTIONS(3627), - [anon_sym_register] = ACTIONS(3627), - [anon_sym_inline] = ACTIONS(3627), - [anon_sym_const] = ACTIONS(3627), - [anon_sym_restrict] = ACTIONS(3627), - [anon_sym_volatile] = ACTIONS(3627), - [anon_sym__Atomic] = ACTIONS(3627), - [anon_sym_unsigned] = ACTIONS(3627), - [anon_sym_long] = ACTIONS(3627), - [anon_sym_short] = ACTIONS(3627), - [sym_primitive_type] = ACTIONS(3627), - [anon_sym_enum] = ACTIONS(3627), - [anon_sym_struct] = ACTIONS(3627), - [anon_sym_union] = ACTIONS(3627), - [anon_sym_if] = ACTIONS(3627), - [anon_sym_else] = ACTIONS(3627), - [anon_sym_switch] = ACTIONS(3627), - [anon_sym_case] = ACTIONS(3627), - [anon_sym_default] = ACTIONS(3627), - [anon_sym_while] = ACTIONS(3627), - [anon_sym_do] = ACTIONS(3627), - [anon_sym_for] = ACTIONS(3627), - [anon_sym_return] = ACTIONS(3627), - [anon_sym_break] = ACTIONS(3627), - [anon_sym_continue] = ACTIONS(3627), - [anon_sym_goto] = ACTIONS(3627), - [anon_sym_AMP] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(3629), - [anon_sym_TILDE] = ACTIONS(3629), - [anon_sym_PLUS] = ACTIONS(3627), - [anon_sym_DASH] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3629), - [anon_sym_PLUS_PLUS] = ACTIONS(3629), - [anon_sym_sizeof] = ACTIONS(3627), - [sym_number_literal] = ACTIONS(3629), - [sym_char_literal] = ACTIONS(3629), - [sym_string_literal] = ACTIONS(3629), - [sym_true] = ACTIONS(3627), - [sym_false] = ACTIONS(3627), - [sym_null] = ACTIONS(3627), - [sym_identifier] = ACTIONS(3627), + [1312] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_auto] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [sym_char_literal] = ACTIONS(3650), + [sym_string_literal] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [sym_null] = ACTIONS(3648), + [sym_identifier] = ACTIONS(3648), [sym_comment] = ACTIONS(39), }, - [1322] = { - [sym_compound_statement] = STATE(1352), - [sym_labeled_statement] = STATE(1352), - [sym_expression_statement] = STATE(1352), - [sym_if_statement] = STATE(1352), - [sym_switch_statement] = STATE(1352), - [sym_case_statement] = STATE(1352), - [sym_while_statement] = STATE(1352), - [sym_do_statement] = STATE(1352), - [sym_for_statement] = STATE(1352), - [sym_return_statement] = STATE(1352), - [sym_break_statement] = STATE(1352), - [sym_continue_statement] = STATE(1352), - [sym_goto_statement] = STATE(1352), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3148), + [1313] = { + [sym_compound_statement] = STATE(1349), + [sym_labeled_statement] = STATE(1349), + [sym_expression_statement] = STATE(1349), + [sym_if_statement] = STATE(1349), + [sym_switch_statement] = STATE(1349), + [sym_case_statement] = STATE(1349), + [sym_while_statement] = STATE(1349), + [sym_do_statement] = STATE(1349), + [sym_for_statement] = STATE(1349), + [sym_return_statement] = STATE(1349), + [sym_break_statement] = STATE(1349), + [sym_continue_statement] = STATE(1349), + [sym_goto_statement] = STATE(1349), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(2808), [sym_comment] = ACTIONS(39), }, - [1323] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3809), + [1314] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3786), [sym_comment] = ACTIONS(39), }, - [1324] = { - [sym_argument_list] = STATE(453), + [1315] = { + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1351), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3786), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [1316] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3307), + [sym_preproc_directive] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_typedef] = ACTIONS(3307), + [anon_sym_extern] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_auto] = ACTIONS(3307), + [anon_sym_register] = ACTIONS(3307), + [anon_sym_inline] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_restrict] = ACTIONS(3307), + [anon_sym_volatile] = ACTIONS(3307), + [anon_sym__Atomic] = ACTIONS(3307), + [anon_sym_unsigned] = ACTIONS(3307), + [anon_sym_long] = ACTIONS(3307), + [anon_sym_short] = ACTIONS(3307), + [sym_primitive_type] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_union] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3788), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_case] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_goto] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3307), + [sym_number_literal] = ACTIONS(3309), + [sym_char_literal] = ACTIONS(3309), + [sym_string_literal] = ACTIONS(3309), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3307), + [sym_comment] = ACTIONS(39), + }, + [1317] = { + [sym_compound_statement] = STATE(1162), + [sym_labeled_statement] = STATE(1162), + [sym_expression_statement] = STATE(1162), + [sym_if_statement] = STATE(1162), + [sym_switch_statement] = STATE(1162), + [sym_case_statement] = STATE(1162), + [sym_while_statement] = STATE(1162), + [sym_do_statement] = STATE(1162), + [sym_for_statement] = STATE(1162), + [sym_return_statement] = STATE(1162), + [sym_break_statement] = STATE(1162), + [sym_continue_statement] = STATE(1162), + [sym_goto_statement] = STATE(1162), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2945), + [sym_comment] = ACTIONS(39), + }, + [1318] = { + [sym_argument_list] = STATE(463), [aux_sym_for_statement_repeat1] = STATE(1354), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3809), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3790), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1325] = { - [sym_compound_statement] = STATE(1355), - [sym_labeled_statement] = STATE(1355), - [sym_expression_statement] = STATE(1355), - [sym_if_statement] = STATE(1355), - [sym_switch_statement] = STATE(1355), - [sym_case_statement] = STATE(1355), - [sym_while_statement] = STATE(1355), - [sym_do_statement] = STATE(1355), - [sym_for_statement] = STATE(1355), - [sym_return_statement] = STATE(1355), - [sym_break_statement] = STATE(1355), - [sym_continue_statement] = STATE(1355), - [sym_goto_statement] = STATE(1355), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3423), + [1319] = { + [sym__expression] = STATE(1355), + [sym_conditional_expression] = STATE(1355), + [sym_assignment_expression] = STATE(1355), + [sym_pointer_expression] = STATE(1355), + [sym_logical_expression] = STATE(1355), + [sym_bitwise_expression] = STATE(1355), + [sym_equality_expression] = STATE(1355), + [sym_relational_expression] = STATE(1355), + [sym_shift_expression] = STATE(1355), + [sym_math_expression] = STATE(1355), + [sym_cast_expression] = STATE(1355), + [sym_sizeof_expression] = STATE(1355), + [sym_subscript_expression] = STATE(1355), + [sym_call_expression] = STATE(1355), + [sym_field_expression] = STATE(1355), + [sym_compound_literal_expression] = STATE(1355), + [sym_parenthesized_expression] = STATE(1355), + [sym_concatenated_string] = STATE(1355), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3790), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3792), + [sym_char_literal] = ACTIONS(3792), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3794), + [sym_false] = ACTIONS(3794), + [sym_null] = ACTIONS(3794), + [sym_identifier] = ACTIONS(3794), [sym_comment] = ACTIONS(39), }, - [1326] = { - [sym_compound_statement] = STATE(1186), - [sym_labeled_statement] = STATE(1186), - [sym_expression_statement] = STATE(1186), - [sym_if_statement] = STATE(1186), - [sym_switch_statement] = STATE(1186), - [sym_case_statement] = STATE(1186), - [sym_while_statement] = STATE(1186), - [sym_do_statement] = STATE(1186), - [sym_for_statement] = STATE(1186), - [sym_return_statement] = STATE(1186), - [sym_break_statement] = STATE(1186), - [sym_continue_statement] = STATE(1186), - [sym_goto_statement] = STATE(1186), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3423), + [1320] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3796), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1327] = { - [sym_compound_statement] = STATE(1187), - [sym_labeled_statement] = STATE(1187), - [sym_expression_statement] = STATE(1187), - [sym_if_statement] = STATE(1187), - [sym_switch_statement] = STATE(1187), - [sym_case_statement] = STATE(1187), - [sym_while_statement] = STATE(1187), - [sym_do_statement] = STATE(1187), - [sym_for_statement] = STATE(1187), - [sym_return_statement] = STATE(1187), - [sym_break_statement] = STATE(1187), - [sym_continue_statement] = STATE(1187), - [sym_goto_statement] = STATE(1187), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3423), + [1321] = { + [sym_compound_statement] = STATE(1357), + [sym_labeled_statement] = STATE(1357), + [sym_expression_statement] = STATE(1357), + [sym_if_statement] = STATE(1357), + [sym_switch_statement] = STATE(1357), + [sym_case_statement] = STATE(1357), + [sym_while_statement] = STATE(1357), + [sym_do_statement] = STATE(1357), + [sym_for_statement] = STATE(1357), + [sym_return_statement] = STATE(1357), + [sym_break_statement] = STATE(1357), + [sym_continue_statement] = STATE(1357), + [sym_goto_statement] = STATE(1357), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3343), [sym_comment] = ACTIONS(39), }, - [1328] = { - [sym__expression] = STATE(1357), - [sym_conditional_expression] = STATE(1357), - [sym_assignment_expression] = STATE(1357), - [sym_pointer_expression] = STATE(1357), - [sym_logical_expression] = STATE(1357), - [sym_bitwise_expression] = STATE(1357), - [sym_equality_expression] = STATE(1357), - [sym_relational_expression] = STATE(1357), - [sym_shift_expression] = STATE(1357), - [sym_math_expression] = STATE(1357), - [sym_cast_expression] = STATE(1357), - [sym_sizeof_expression] = STATE(1357), - [sym_subscript_expression] = STATE(1357), - [sym_call_expression] = STATE(1357), - [sym_field_expression] = STATE(1357), - [sym_compound_literal_expression] = STATE(1357), - [sym_parenthesized_expression] = STATE(1357), - [sym_concatenated_string] = STATE(1357), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3811), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3813), - [sym_char_literal] = ACTIONS(3813), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3815), - [sym_false] = ACTIONS(3815), - [sym_null] = ACTIONS(3815), - [sym_identifier] = ACTIONS(3815), + [1322] = { + [sym_compound_statement] = STATE(1062), + [sym_labeled_statement] = STATE(1062), + [sym_expression_statement] = STATE(1062), + [sym_if_statement] = STATE(1062), + [sym_switch_statement] = STATE(1062), + [sym_case_statement] = STATE(1062), + [sym_while_statement] = STATE(1062), + [sym_do_statement] = STATE(1062), + [sym_for_statement] = STATE(1062), + [sym_return_statement] = STATE(1062), + [sym_break_statement] = STATE(1062), + [sym_continue_statement] = STATE(1062), + [sym_goto_statement] = STATE(1062), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3343), [sym_comment] = ACTIONS(39), }, - [1329] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1323] = { + [sym_compound_statement] = STATE(1065), + [sym_labeled_statement] = STATE(1065), + [sym_expression_statement] = STATE(1065), + [sym_if_statement] = STATE(1065), + [sym_switch_statement] = STATE(1065), + [sym_case_statement] = STATE(1065), + [sym_while_statement] = STATE(1065), + [sym_do_statement] = STATE(1065), + [sym_for_statement] = STATE(1065), + [sym_return_statement] = STATE(1065), + [sym_break_statement] = STATE(1065), + [sym_continue_statement] = STATE(1065), + [sym_goto_statement] = STATE(1065), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3343), [sym_comment] = ACTIONS(39), }, - [1330] = { + [1324] = { [sym__expression] = STATE(1359), [sym_conditional_expression] = STATE(1359), [sym_assignment_expression] = STATE(1359), @@ -53343,489 +52521,571 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1359), [sym_parenthesized_expression] = STATE(1359), [sym_concatenated_string] = STATE(1359), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3819), - [sym_char_literal] = ACTIONS(3819), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3821), - [sym_false] = ACTIONS(3821), - [sym_null] = ACTIONS(3821), - [sym_identifier] = ACTIONS(3821), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3798), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3800), + [sym_char_literal] = ACTIONS(3800), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3802), + [sym_false] = ACTIONS(3802), + [sym_null] = ACTIONS(3802), + [sym_identifier] = ACTIONS(3802), [sym_comment] = ACTIONS(39), }, - [1331] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3719), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3717), - [sym_preproc_directive] = ACTIONS(3717), - [anon_sym_SEMI] = ACTIONS(3719), - [anon_sym_typedef] = ACTIONS(3717), - [anon_sym_extern] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3719), - [anon_sym_static] = ACTIONS(3717), - [anon_sym_auto] = ACTIONS(3717), - [anon_sym_register] = ACTIONS(3717), - [anon_sym_inline] = ACTIONS(3717), - [anon_sym_const] = ACTIONS(3717), - [anon_sym_restrict] = ACTIONS(3717), - [anon_sym_volatile] = ACTIONS(3717), - [anon_sym__Atomic] = ACTIONS(3717), - [anon_sym_unsigned] = ACTIONS(3717), - [anon_sym_long] = ACTIONS(3717), - [anon_sym_short] = ACTIONS(3717), - [sym_primitive_type] = ACTIONS(3717), - [anon_sym_enum] = ACTIONS(3717), - [anon_sym_struct] = ACTIONS(3717), - [anon_sym_union] = ACTIONS(3717), - [anon_sym_if] = ACTIONS(3717), - [anon_sym_else] = ACTIONS(3717), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_case] = ACTIONS(3717), - [anon_sym_default] = ACTIONS(3717), - [anon_sym_while] = ACTIONS(3717), - [anon_sym_do] = ACTIONS(3717), - [anon_sym_for] = ACTIONS(3717), - [anon_sym_return] = ACTIONS(3717), - [anon_sym_break] = ACTIONS(3717), - [anon_sym_continue] = ACTIONS(3717), - [anon_sym_goto] = ACTIONS(3717), - [anon_sym_AMP] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3719), - [anon_sym_TILDE] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_sizeof] = ACTIONS(3717), - [sym_number_literal] = ACTIONS(3719), - [sym_char_literal] = ACTIONS(3719), - [sym_string_literal] = ACTIONS(3719), - [sym_true] = ACTIONS(3717), - [sym_false] = ACTIONS(3717), - [sym_null] = ACTIONS(3717), - [sym_identifier] = ACTIONS(3717), + [1325] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1332] = { - [sym_compound_statement] = STATE(1360), - [sym_labeled_statement] = STATE(1360), - [sym_expression_statement] = STATE(1360), - [sym_if_statement] = STATE(1360), - [sym_switch_statement] = STATE(1360), - [sym_case_statement] = STATE(1360), - [sym_while_statement] = STATE(1360), - [sym_do_statement] = STATE(1360), - [sym_for_statement] = STATE(1360), - [sym_return_statement] = STATE(1360), - [sym_break_statement] = STATE(1360), - [sym_continue_statement] = STATE(1360), - [sym_goto_statement] = STATE(1360), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(2787), + [1326] = { + [sym__expression] = STATE(1361), + [sym_conditional_expression] = STATE(1361), + [sym_assignment_expression] = STATE(1361), + [sym_pointer_expression] = STATE(1361), + [sym_logical_expression] = STATE(1361), + [sym_bitwise_expression] = STATE(1361), + [sym_equality_expression] = STATE(1361), + [sym_relational_expression] = STATE(1361), + [sym_shift_expression] = STATE(1361), + [sym_math_expression] = STATE(1361), + [sym_cast_expression] = STATE(1361), + [sym_sizeof_expression] = STATE(1361), + [sym_subscript_expression] = STATE(1361), + [sym_call_expression] = STATE(1361), + [sym_field_expression] = STATE(1361), + [sym_compound_literal_expression] = STATE(1361), + [sym_parenthesized_expression] = STATE(1361), + [sym_concatenated_string] = STATE(1361), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3804), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3806), + [sym_char_literal] = ACTIONS(3806), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3808), + [sym_false] = ACTIONS(3808), + [sym_null] = ACTIONS(3808), + [sym_identifier] = ACTIONS(3808), [sym_comment] = ACTIONS(39), }, - [1333] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3823), + [1327] = { + [sym_compound_statement] = STATE(1329), + [sym_labeled_statement] = STATE(1329), + [sym_expression_statement] = STATE(1329), + [sym_if_statement] = STATE(1329), + [sym_switch_statement] = STATE(1329), + [sym_case_statement] = STATE(1329), + [sym_while_statement] = STATE(1329), + [sym_do_statement] = STATE(1329), + [sym_for_statement] = STATE(1329), + [sym_return_statement] = STATE(1329), + [sym_break_statement] = STATE(1329), + [sym_continue_statement] = STATE(1329), + [sym_goto_statement] = STATE(1329), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, - [1334] = { - [sym_compound_statement] = STATE(1200), - [sym_labeled_statement] = STATE(1200), - [sym_expression_statement] = STATE(1200), - [sym_if_statement] = STATE(1200), - [sym_switch_statement] = STATE(1200), - [sym_case_statement] = STATE(1200), - [sym_while_statement] = STATE(1200), - [sym_do_statement] = STATE(1200), - [sym_for_statement] = STATE(1200), - [sym_return_statement] = STATE(1200), - [sym_break_statement] = STATE(1200), - [sym_continue_statement] = STATE(1200), - [sym_goto_statement] = STATE(1200), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2924), + [1328] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3810), [sym_comment] = ACTIONS(39), }, - [1335] = { - [sym_compound_statement] = STATE(1214), - [sym_labeled_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_case_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_goto_statement] = STATE(1214), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2924), + [1329] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3812), + [anon_sym_LPAREN] = ACTIONS(3814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3812), + [sym_preproc_directive] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3814), + [anon_sym_typedef] = ACTIONS(3812), + [anon_sym_extern] = ACTIONS(3812), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_RBRACE] = ACTIONS(3814), + [anon_sym_STAR] = ACTIONS(3814), + [anon_sym_static] = ACTIONS(3812), + [anon_sym_auto] = ACTIONS(3812), + [anon_sym_register] = ACTIONS(3812), + [anon_sym_inline] = ACTIONS(3812), + [anon_sym_const] = ACTIONS(3812), + [anon_sym_restrict] = ACTIONS(3812), + [anon_sym_volatile] = ACTIONS(3812), + [anon_sym__Atomic] = ACTIONS(3812), + [anon_sym_unsigned] = ACTIONS(3812), + [anon_sym_long] = ACTIONS(3812), + [anon_sym_short] = ACTIONS(3812), + [sym_primitive_type] = ACTIONS(3812), + [anon_sym_enum] = ACTIONS(3812), + [anon_sym_struct] = ACTIONS(3812), + [anon_sym_union] = ACTIONS(3812), + [anon_sym_if] = ACTIONS(3812), + [anon_sym_else] = ACTIONS(3812), + [anon_sym_switch] = ACTIONS(3812), + [anon_sym_case] = ACTIONS(3812), + [anon_sym_default] = ACTIONS(3812), + [anon_sym_while] = ACTIONS(3812), + [anon_sym_do] = ACTIONS(3812), + [anon_sym_for] = ACTIONS(3812), + [anon_sym_return] = ACTIONS(3812), + [anon_sym_break] = ACTIONS(3812), + [anon_sym_continue] = ACTIONS(3812), + [anon_sym_goto] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_BANG] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3812), + [anon_sym_DASH] = ACTIONS(3812), + [anon_sym_DASH_DASH] = ACTIONS(3814), + [anon_sym_PLUS_PLUS] = ACTIONS(3814), + [anon_sym_sizeof] = ACTIONS(3812), + [sym_number_literal] = ACTIONS(3814), + [sym_char_literal] = ACTIONS(3814), + [sym_string_literal] = ACTIONS(3814), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_identifier] = ACTIONS(3812), [sym_comment] = ACTIONS(39), }, - [1336] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3825), + [1330] = { + [sym_compound_statement] = STATE(1363), + [sym_labeled_statement] = STATE(1363), + [sym_expression_statement] = STATE(1363), + [sym_if_statement] = STATE(1363), + [sym_switch_statement] = STATE(1363), + [sym_case_statement] = STATE(1363), + [sym_while_statement] = STATE(1363), + [sym_do_statement] = STATE(1363), + [sym_for_statement] = STATE(1363), + [sym_return_statement] = STATE(1363), + [sym_break_statement] = STATE(1363), + [sym_continue_statement] = STATE(1363), + [sym_goto_statement] = STATE(1363), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(546), + [anon_sym_switch] = ACTIONS(548), + [anon_sym_case] = ACTIONS(550), + [anon_sym_default] = ACTIONS(552), + [anon_sym_while] = ACTIONS(554), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(558), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1715), [sym_comment] = ACTIONS(39), }, - [1337] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1363), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1331] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3816), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1338] = { - [sym__expression] = STATE(1364), - [sym_conditional_expression] = STATE(1364), - [sym_assignment_expression] = STATE(1364), - [sym_pointer_expression] = STATE(1364), - [sym_logical_expression] = STATE(1364), - [sym_bitwise_expression] = STATE(1364), - [sym_equality_expression] = STATE(1364), - [sym_relational_expression] = STATE(1364), - [sym_shift_expression] = STATE(1364), - [sym_math_expression] = STATE(1364), - [sym_cast_expression] = STATE(1364), - [sym_sizeof_expression] = STATE(1364), - [sym_subscript_expression] = STATE(1364), - [sym_call_expression] = STATE(1364), - [sym_field_expression] = STATE(1364), - [sym_compound_literal_expression] = STATE(1364), - [sym_parenthesized_expression] = STATE(1364), - [sym_concatenated_string] = STATE(1364), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3825), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3827), - [sym_char_literal] = ACTIONS(3827), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3829), - [sym_false] = ACTIONS(3829), - [sym_null] = ACTIONS(3829), - [sym_identifier] = ACTIONS(3829), + [1332] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3818), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1339] = { - [anon_sym_else] = ACTIONS(3831), - [anon_sym_while] = ACTIONS(3288), + [1333] = { + [sym_declaration] = STATE(1190), + [sym_type_definition] = STATE(1190), + [sym__declaration_specifiers] = STATE(1119), + [sym_compound_statement] = STATE(1190), + [sym_storage_class_specifier] = STATE(93), + [sym_type_qualifier] = STATE(93), + [sym__type_specifier] = STATE(92), + [sym_sized_type_specifier] = STATE(92), + [sym_enum_specifier] = STATE(92), + [sym_struct_specifier] = STATE(92), + [sym_union_specifier] = STATE(92), + [sym_labeled_statement] = STATE(1190), + [sym_expression_statement] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_case_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_goto_statement] = STATE(1190), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [sym_macro_type_specifier] = STATE(92), + [aux_sym__declaration_specifiers_repeat1] = STATE(93), + [aux_sym_sized_type_specifier_repeat1] = STATE(94), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_typedef] = ACTIONS(362), + [anon_sym_extern] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_static] = ACTIONS(23), + [anon_sym_auto] = ACTIONS(23), + [anon_sym_register] = ACTIONS(23), + [anon_sym_inline] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_restrict] = ACTIONS(25), + [anon_sym_volatile] = ACTIONS(25), + [anon_sym__Atomic] = ACTIONS(25), + [anon_sym_unsigned] = ACTIONS(171), + [anon_sym_long] = ACTIONS(171), + [anon_sym_short] = ACTIONS(171), + [sym_primitive_type] = ACTIONS(173), + [anon_sym_enum] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3754), [sym_comment] = ACTIONS(39), }, - [1340] = { - [sym_compound_statement] = STATE(1144), - [sym_labeled_statement] = STATE(1144), - [sym_expression_statement] = STATE(1144), - [sym_if_statement] = STATE(1144), - [sym_switch_statement] = STATE(1144), - [sym_case_statement] = STATE(1144), - [sym_while_statement] = STATE(1144), - [sym_do_statement] = STATE(1144), - [sym_for_statement] = STATE(1144), - [sym_return_statement] = STATE(1144), - [sym_break_statement] = STATE(1144), - [sym_continue_statement] = STATE(1144), - [sym_goto_statement] = STATE(1144), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3322), + [1334] = { + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(86), + [anon_sym_STAR] = ACTIONS(1069), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(86), + [anon_sym_auto] = ACTIONS(86), + [anon_sym_register] = ACTIONS(86), + [anon_sym_inline] = ACTIONS(86), + [anon_sym_const] = ACTIONS(86), + [anon_sym_restrict] = ACTIONS(86), + [anon_sym_volatile] = ACTIONS(86), + [anon_sym__Atomic] = ACTIONS(86), + [anon_sym_COLON] = ACTIONS(3668), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_PLUS_PLUS] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), + [sym_identifier] = ACTIONS(86), [sym_comment] = ACTIONS(39), }, - [1341] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1367), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3833), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1335] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(2425), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_STAR_EQ] = ACTIONS(2429), + [anon_sym_SLASH_EQ] = ACTIONS(2429), + [anon_sym_PERCENT_EQ] = ACTIONS(2429), + [anon_sym_PLUS_EQ] = ACTIONS(2429), + [anon_sym_DASH_EQ] = ACTIONS(2429), + [anon_sym_LT_LT_EQ] = ACTIONS(2429), + [anon_sym_GT_GT_EQ] = ACTIONS(2429), + [anon_sym_AMP_EQ] = ACTIONS(2429), + [anon_sym_CARET_EQ] = ACTIONS(2429), + [anon_sym_PIPE_EQ] = ACTIONS(2429), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE_PIPE] = ACTIONS(2433), + [anon_sym_AMP_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2437), + [anon_sym_CARET] = ACTIONS(2439), + [anon_sym_EQ_EQ] = ACTIONS(2441), + [anon_sym_BANG_EQ] = ACTIONS(2441), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2445), + [anon_sym_GT_EQ] = ACTIONS(2445), + [anon_sym_LT_LT] = ACTIONS(2447), + [anon_sym_GT_GT] = ACTIONS(2447), + [anon_sym_PLUS] = ACTIONS(2449), + [anon_sym_DASH] = ACTIONS(2449), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1342] = { + [1336] = { [sym__expression] = STATE(1368), [sym_conditional_expression] = STATE(1368), [sym_assignment_expression] = STATE(1368), @@ -53844,191 +53104,184 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(1368), [sym_parenthesized_expression] = STATE(1368), [sym_concatenated_string] = STATE(1368), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3833), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3835), - [sym_char_literal] = ACTIONS(3835), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3837), - [sym_false] = ACTIONS(3837), - [sym_null] = ACTIONS(3837), - [sym_identifier] = ACTIONS(3837), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3824), + [sym_char_literal] = ACTIONS(3824), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3826), + [sym_false] = ACTIONS(3826), + [sym_null] = ACTIONS(3826), + [sym_identifier] = ACTIONS(3826), [sym_comment] = ACTIONS(39), }, - [1343] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3839), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [1337] = { + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3828), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, - [1344] = { - [sym_compound_statement] = STATE(1345), - [sym_labeled_statement] = STATE(1345), - [sym_expression_statement] = STATE(1345), - [sym_if_statement] = STATE(1345), - [sym_switch_statement] = STATE(1345), - [sym_case_statement] = STATE(1345), - [sym_while_statement] = STATE(1345), - [sym_do_statement] = STATE(1345), - [sym_for_statement] = STATE(1345), - [sym_return_statement] = STATE(1345), - [sym_break_statement] = STATE(1345), - [sym_continue_statement] = STATE(1345), - [sym_goto_statement] = STATE(1345), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1000), - [anon_sym_case] = ACTIONS(1002), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1006), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(1010), + [1338] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3618), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3616), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3616), + [sym_preproc_directive] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_typedef] = ACTIONS(3616), + [anon_sym_extern] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_auto] = ACTIONS(3616), + [anon_sym_register] = ACTIONS(3616), + [anon_sym_inline] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_restrict] = ACTIONS(3616), + [anon_sym_volatile] = ACTIONS(3616), + [anon_sym__Atomic] = ACTIONS(3616), + [anon_sym_unsigned] = ACTIONS(3616), + [anon_sym_long] = ACTIONS(3616), + [anon_sym_short] = ACTIONS(3616), + [sym_primitive_type] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3616), + [anon_sym_union] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_case] = ACTIONS(3616), + [anon_sym_default] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_goto] = ACTIONS(3616), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_sizeof] = ACTIONS(3616), + [sym_number_literal] = ACTIONS(3618), + [sym_char_literal] = ACTIONS(3618), + [sym_string_literal] = ACTIONS(3618), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_identifier] = ACTIONS(3616), [sym_comment] = ACTIONS(39), }, - [1345] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3841), - [anon_sym_LPAREN] = ACTIONS(3843), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3841), - [sym_preproc_directive] = ACTIONS(3841), - [anon_sym_SEMI] = ACTIONS(3843), - [anon_sym_typedef] = ACTIONS(3841), - [anon_sym_extern] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_RBRACE] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_static] = ACTIONS(3841), - [anon_sym_auto] = ACTIONS(3841), - [anon_sym_register] = ACTIONS(3841), - [anon_sym_inline] = ACTIONS(3841), - [anon_sym_const] = ACTIONS(3841), - [anon_sym_restrict] = ACTIONS(3841), - [anon_sym_volatile] = ACTIONS(3841), - [anon_sym__Atomic] = ACTIONS(3841), - [anon_sym_unsigned] = ACTIONS(3841), - [anon_sym_long] = ACTIONS(3841), - [anon_sym_short] = ACTIONS(3841), - [sym_primitive_type] = ACTIONS(3841), - [anon_sym_enum] = ACTIONS(3841), - [anon_sym_struct] = ACTIONS(3841), - [anon_sym_union] = ACTIONS(3841), - [anon_sym_if] = ACTIONS(3841), - [anon_sym_else] = ACTIONS(3841), - [anon_sym_switch] = ACTIONS(3841), - [anon_sym_case] = ACTIONS(3841), - [anon_sym_default] = ACTIONS(3841), - [anon_sym_while] = ACTIONS(3841), - [anon_sym_do] = ACTIONS(3841), - [anon_sym_for] = ACTIONS(3841), - [anon_sym_return] = ACTIONS(3841), - [anon_sym_break] = ACTIONS(3841), - [anon_sym_continue] = ACTIONS(3841), - [anon_sym_goto] = ACTIONS(3841), - [anon_sym_AMP] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_TILDE] = ACTIONS(3843), - [anon_sym_PLUS] = ACTIONS(3841), - [anon_sym_DASH] = ACTIONS(3841), - [anon_sym_DASH_DASH] = ACTIONS(3843), - [anon_sym_PLUS_PLUS] = ACTIONS(3843), - [anon_sym_sizeof] = ACTIONS(3841), - [sym_number_literal] = ACTIONS(3843), - [sym_char_literal] = ACTIONS(3843), - [sym_string_literal] = ACTIONS(3843), - [sym_true] = ACTIONS(3841), - [sym_false] = ACTIONS(3841), - [sym_null] = ACTIONS(3841), - [sym_identifier] = ACTIONS(3841), + [1339] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3650), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3648), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_auto] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [sym_char_literal] = ACTIONS(3650), + [sym_string_literal] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [sym_null] = ACTIONS(3648), + [sym_identifier] = ACTIONS(3648), [sym_comment] = ACTIONS(39), }, - [1346] = { + [1340] = { [sym_compound_statement] = STATE(1370), [sym_labeled_statement] = STATE(1370), [sym_expression_statement] = STATE(1370), @@ -54042,2428 +53295,2603 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(1370), [sym_continue_statement] = STATE(1370), [sym_goto_statement] = STATE(1370), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3535), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3169), + [sym_comment] = ACTIONS(39), + }, + [1341] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3830), + [sym_comment] = ACTIONS(39), + }, + [1342] = { + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1372), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3830), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [1343] = { + [sym_compound_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_expression_statement] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_case_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_goto_statement] = STATE(1373), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3444), + [sym_comment] = ACTIONS(39), + }, + [1344] = { + [sym_compound_statement] = STATE(1204), + [sym_labeled_statement] = STATE(1204), + [sym_expression_statement] = STATE(1204), + [sym_if_statement] = STATE(1204), + [sym_switch_statement] = STATE(1204), + [sym_case_statement] = STATE(1204), + [sym_while_statement] = STATE(1204), + [sym_do_statement] = STATE(1204), + [sym_for_statement] = STATE(1204), + [sym_return_statement] = STATE(1204), + [sym_break_statement] = STATE(1204), + [sym_continue_statement] = STATE(1204), + [sym_goto_statement] = STATE(1204), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3444), + [sym_comment] = ACTIONS(39), + }, + [1345] = { + [sym_compound_statement] = STATE(1205), + [sym_labeled_statement] = STATE(1205), + [sym_expression_statement] = STATE(1205), + [sym_if_statement] = STATE(1205), + [sym_switch_statement] = STATE(1205), + [sym_case_statement] = STATE(1205), + [sym_while_statement] = STATE(1205), + [sym_do_statement] = STATE(1205), + [sym_for_statement] = STATE(1205), + [sym_return_statement] = STATE(1205), + [sym_break_statement] = STATE(1205), + [sym_continue_statement] = STATE(1205), + [sym_goto_statement] = STATE(1205), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3444), + [sym_comment] = ACTIONS(39), + }, + [1346] = { + [sym__expression] = STATE(1375), + [sym_conditional_expression] = STATE(1375), + [sym_assignment_expression] = STATE(1375), + [sym_pointer_expression] = STATE(1375), + [sym_logical_expression] = STATE(1375), + [sym_bitwise_expression] = STATE(1375), + [sym_equality_expression] = STATE(1375), + [sym_relational_expression] = STATE(1375), + [sym_shift_expression] = STATE(1375), + [sym_math_expression] = STATE(1375), + [sym_cast_expression] = STATE(1375), + [sym_sizeof_expression] = STATE(1375), + [sym_subscript_expression] = STATE(1375), + [sym_call_expression] = STATE(1375), + [sym_field_expression] = STATE(1375), + [sym_compound_literal_expression] = STATE(1375), + [sym_parenthesized_expression] = STATE(1375), + [sym_concatenated_string] = STATE(1375), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3832), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3834), + [sym_char_literal] = ACTIONS(3834), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3836), + [sym_false] = ACTIONS(3836), + [sym_null] = ACTIONS(3836), + [sym_identifier] = ACTIONS(3836), [sym_comment] = ACTIONS(39), }, [1347] = { - [sym_compound_statement] = STATE(1232), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3535), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1348] = { - [sym_compound_statement] = STATE(1233), - [sym_labeled_statement] = STATE(1233), - [sym_expression_statement] = STATE(1233), - [sym_if_statement] = STATE(1233), - [sym_switch_statement] = STATE(1233), - [sym_case_statement] = STATE(1233), - [sym_while_statement] = STATE(1233), - [sym_do_statement] = STATE(1233), - [sym_for_statement] = STATE(1233), - [sym_return_statement] = STATE(1233), - [sym_break_statement] = STATE(1233), - [sym_continue_statement] = STATE(1233), - [sym_goto_statement] = STATE(1233), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3535), + [sym__expression] = STATE(1377), + [sym_conditional_expression] = STATE(1377), + [sym_assignment_expression] = STATE(1377), + [sym_pointer_expression] = STATE(1377), + [sym_logical_expression] = STATE(1377), + [sym_bitwise_expression] = STATE(1377), + [sym_equality_expression] = STATE(1377), + [sym_relational_expression] = STATE(1377), + [sym_shift_expression] = STATE(1377), + [sym_math_expression] = STATE(1377), + [sym_cast_expression] = STATE(1377), + [sym_sizeof_expression] = STATE(1377), + [sym_subscript_expression] = STATE(1377), + [sym_call_expression] = STATE(1377), + [sym_field_expression] = STATE(1377), + [sym_compound_literal_expression] = STATE(1377), + [sym_parenthesized_expression] = STATE(1377), + [sym_concatenated_string] = STATE(1377), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3838), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3840), + [sym_char_literal] = ACTIONS(3840), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3842), + [sym_false] = ACTIONS(3842), + [sym_null] = ACTIONS(3842), + [sym_identifier] = ACTIONS(3842), [sym_comment] = ACTIONS(39), }, [1349] = { - [sym__expression] = STATE(1372), - [sym_conditional_expression] = STATE(1372), - [sym_assignment_expression] = STATE(1372), - [sym_pointer_expression] = STATE(1372), - [sym_logical_expression] = STATE(1372), - [sym_bitwise_expression] = STATE(1372), - [sym_equality_expression] = STATE(1372), - [sym_relational_expression] = STATE(1372), - [sym_shift_expression] = STATE(1372), - [sym_math_expression] = STATE(1372), - [sym_cast_expression] = STATE(1372), - [sym_sizeof_expression] = STATE(1372), - [sym_subscript_expression] = STATE(1372), - [sym_call_expression] = STATE(1372), - [sym_field_expression] = STATE(1372), - [sym_compound_literal_expression] = STATE(1372), - [sym_parenthesized_expression] = STATE(1372), - [sym_concatenated_string] = STATE(1372), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3847), - [sym_char_literal] = ACTIONS(3847), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3849), - [sym_false] = ACTIONS(3849), - [sym_null] = ACTIONS(3849), - [sym_identifier] = ACTIONS(3849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3738), + [sym_preproc_directive] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym_typedef] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_auto] = ACTIONS(3738), + [anon_sym_register] = ACTIONS(3738), + [anon_sym_inline] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_restrict] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym__Atomic] = ACTIONS(3738), + [anon_sym_unsigned] = ACTIONS(3738), + [anon_sym_long] = ACTIONS(3738), + [anon_sym_short] = ACTIONS(3738), + [sym_primitive_type] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_union] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_else] = ACTIONS(3738), + [anon_sym_switch] = ACTIONS(3738), + [anon_sym_case] = ACTIONS(3738), + [anon_sym_default] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_break] = ACTIONS(3738), + [anon_sym_continue] = ACTIONS(3738), + [anon_sym_goto] = ACTIONS(3738), + [anon_sym_AMP] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_sizeof] = ACTIONS(3738), + [sym_number_literal] = ACTIONS(3740), + [sym_char_literal] = ACTIONS(3740), + [sym_string_literal] = ACTIONS(3740), + [sym_true] = ACTIONS(3738), + [sym_false] = ACTIONS(3738), + [sym_null] = ACTIONS(3738), + [sym_identifier] = ACTIONS(3738), [sym_comment] = ACTIONS(39), }, [1350] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_compound_statement] = STATE(1378), + [sym_labeled_statement] = STATE(1378), + [sym_expression_statement] = STATE(1378), + [sym_if_statement] = STATE(1378), + [sym_switch_statement] = STATE(1378), + [sym_case_statement] = STATE(1378), + [sym_while_statement] = STATE(1378), + [sym_do_statement] = STATE(1378), + [sym_for_statement] = STATE(1378), + [sym_return_statement] = STATE(1378), + [sym_break_statement] = STATE(1378), + [sym_continue_statement] = STATE(1378), + [sym_goto_statement] = STATE(1378), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(2808), [sym_comment] = ACTIONS(39), }, [1351] = { - [sym__expression] = STATE(1374), - [sym_conditional_expression] = STATE(1374), - [sym_assignment_expression] = STATE(1374), - [sym_pointer_expression] = STATE(1374), - [sym_logical_expression] = STATE(1374), - [sym_bitwise_expression] = STATE(1374), - [sym_equality_expression] = STATE(1374), - [sym_relational_expression] = STATE(1374), - [sym_shift_expression] = STATE(1374), - [sym_math_expression] = STATE(1374), - [sym_cast_expression] = STATE(1374), - [sym_sizeof_expression] = STATE(1374), - [sym_subscript_expression] = STATE(1374), - [sym_call_expression] = STATE(1374), - [sym_field_expression] = STATE(1374), - [sym_compound_literal_expression] = STATE(1374), - [sym_parenthesized_expression] = STATE(1374), - [sym_concatenated_string] = STATE(1374), - [anon_sym_LPAREN] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(811), - [anon_sym_AMP] = ACTIONS(811), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_sizeof] = ACTIONS(821), - [sym_number_literal] = ACTIONS(3853), - [sym_char_literal] = ACTIONS(3853), - [sym_string_literal] = ACTIONS(825), - [sym_true] = ACTIONS(3855), - [sym_false] = ACTIONS(3855), - [sym_null] = ACTIONS(3855), - [sym_identifier] = ACTIONS(3855), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3844), [sym_comment] = ACTIONS(39), }, [1352] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3717), - [anon_sym_LPAREN] = ACTIONS(3719), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3717), - [sym_preproc_directive] = ACTIONS(3717), - [anon_sym_SEMI] = ACTIONS(3719), - [anon_sym_typedef] = ACTIONS(3717), - [anon_sym_extern] = ACTIONS(3717), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_STAR] = ACTIONS(3719), - [anon_sym_static] = ACTIONS(3717), - [anon_sym_auto] = ACTIONS(3717), - [anon_sym_register] = ACTIONS(3717), - [anon_sym_inline] = ACTIONS(3717), - [anon_sym_const] = ACTIONS(3717), - [anon_sym_restrict] = ACTIONS(3717), - [anon_sym_volatile] = ACTIONS(3717), - [anon_sym__Atomic] = ACTIONS(3717), - [anon_sym_unsigned] = ACTIONS(3717), - [anon_sym_long] = ACTIONS(3717), - [anon_sym_short] = ACTIONS(3717), - [sym_primitive_type] = ACTIONS(3717), - [anon_sym_enum] = ACTIONS(3717), - [anon_sym_struct] = ACTIONS(3717), - [anon_sym_union] = ACTIONS(3717), - [anon_sym_if] = ACTIONS(3717), - [anon_sym_else] = ACTIONS(3717), - [anon_sym_switch] = ACTIONS(3717), - [anon_sym_case] = ACTIONS(3717), - [anon_sym_default] = ACTIONS(3717), - [anon_sym_while] = ACTIONS(3717), - [anon_sym_do] = ACTIONS(3717), - [anon_sym_for] = ACTIONS(3717), - [anon_sym_return] = ACTIONS(3717), - [anon_sym_break] = ACTIONS(3717), - [anon_sym_continue] = ACTIONS(3717), - [anon_sym_goto] = ACTIONS(3717), - [anon_sym_AMP] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3719), - [anon_sym_TILDE] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3717), - [anon_sym_DASH] = ACTIONS(3717), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_sizeof] = ACTIONS(3717), - [sym_number_literal] = ACTIONS(3719), - [sym_char_literal] = ACTIONS(3719), - [sym_string_literal] = ACTIONS(3719), - [sym_true] = ACTIONS(3717), - [sym_false] = ACTIONS(3717), - [sym_null] = ACTIONS(3717), - [sym_identifier] = ACTIONS(3717), + [sym_compound_statement] = STATE(1218), + [sym_labeled_statement] = STATE(1218), + [sym_expression_statement] = STATE(1218), + [sym_if_statement] = STATE(1218), + [sym_switch_statement] = STATE(1218), + [sym_case_statement] = STATE(1218), + [sym_while_statement] = STATE(1218), + [sym_do_statement] = STATE(1218), + [sym_for_statement] = STATE(1218), + [sym_return_statement] = STATE(1218), + [sym_break_statement] = STATE(1218), + [sym_continue_statement] = STATE(1218), + [sym_goto_statement] = STATE(1218), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2945), [sym_comment] = ACTIONS(39), }, [1353] = { - [sym_compound_statement] = STATE(1375), - [sym_labeled_statement] = STATE(1375), - [sym_expression_statement] = STATE(1375), - [sym_if_statement] = STATE(1375), - [sym_switch_statement] = STATE(1375), - [sym_case_statement] = STATE(1375), - [sym_while_statement] = STATE(1375), - [sym_do_statement] = STATE(1375), - [sym_for_statement] = STATE(1375), - [sym_return_statement] = STATE(1375), - [sym_break_statement] = STATE(1375), - [sym_continue_statement] = STATE(1375), - [sym_goto_statement] = STATE(1375), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3148), + [sym_compound_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2945), [sym_comment] = ACTIONS(39), }, [1354] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3857), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3846), [sym_comment] = ACTIONS(39), }, [1355] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_auto] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3859), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [sym_char_literal] = ACTIONS(3288), - [sym_string_literal] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3286), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1381), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3846), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1356] = { - [sym_compound_statement] = STATE(1248), - [sym_labeled_statement] = STATE(1248), - [sym_expression_statement] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_switch_statement] = STATE(1248), - [sym_case_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_do_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_return_statement] = STATE(1248), - [sym_break_statement] = STATE(1248), - [sym_continue_statement] = STATE(1248), - [sym_goto_statement] = STATE(1248), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3423), + [sym__expression] = STATE(1382), + [sym_conditional_expression] = STATE(1382), + [sym_assignment_expression] = STATE(1382), + [sym_pointer_expression] = STATE(1382), + [sym_logical_expression] = STATE(1382), + [sym_bitwise_expression] = STATE(1382), + [sym_equality_expression] = STATE(1382), + [sym_relational_expression] = STATE(1382), + [sym_shift_expression] = STATE(1382), + [sym_math_expression] = STATE(1382), + [sym_cast_expression] = STATE(1382), + [sym_sizeof_expression] = STATE(1382), + [sym_subscript_expression] = STATE(1382), + [sym_call_expression] = STATE(1382), + [sym_field_expression] = STATE(1382), + [sym_compound_literal_expression] = STATE(1382), + [sym_parenthesized_expression] = STATE(1382), + [sym_concatenated_string] = STATE(1382), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3846), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3848), + [sym_char_literal] = ACTIONS(3848), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3850), + [sym_false] = ACTIONS(3850), + [sym_null] = ACTIONS(3850), + [sym_identifier] = ACTIONS(3850), [sym_comment] = ACTIONS(39), }, [1357] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1379), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [anon_sym_else] = ACTIONS(3852), + [anon_sym_while] = ACTIONS(3309), [sym_comment] = ACTIONS(39), }, [1358] = { - [sym__expression] = STATE(1380), - [sym_conditional_expression] = STATE(1380), - [sym_assignment_expression] = STATE(1380), - [sym_pointer_expression] = STATE(1380), - [sym_logical_expression] = STATE(1380), - [sym_bitwise_expression] = STATE(1380), - [sym_equality_expression] = STATE(1380), - [sym_relational_expression] = STATE(1380), - [sym_shift_expression] = STATE(1380), - [sym_math_expression] = STATE(1380), - [sym_cast_expression] = STATE(1380), - [sym_sizeof_expression] = STATE(1380), - [sym_subscript_expression] = STATE(1380), - [sym_call_expression] = STATE(1380), - [sym_field_expression] = STATE(1380), - [sym_compound_literal_expression] = STATE(1380), - [sym_parenthesized_expression] = STATE(1380), - [sym_concatenated_string] = STATE(1380), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3863), - [sym_char_literal] = ACTIONS(3863), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3865), - [sym_false] = ACTIONS(3865), - [sym_null] = ACTIONS(3865), - [sym_identifier] = ACTIONS(3865), + [sym_compound_statement] = STATE(1162), + [sym_labeled_statement] = STATE(1162), + [sym_expression_statement] = STATE(1162), + [sym_if_statement] = STATE(1162), + [sym_switch_statement] = STATE(1162), + [sym_case_statement] = STATE(1162), + [sym_while_statement] = STATE(1162), + [sym_do_statement] = STATE(1162), + [sym_for_statement] = STATE(1162), + [sym_return_statement] = STATE(1162), + [sym_break_statement] = STATE(1162), + [sym_continue_statement] = STATE(1162), + [sym_goto_statement] = STATE(1162), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3343), [sym_comment] = ACTIONS(39), }, [1359] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3867), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1385), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3854), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1360] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3791), - [anon_sym_LPAREN] = ACTIONS(3793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3791), - [sym_preproc_directive] = ACTIONS(3791), - [anon_sym_SEMI] = ACTIONS(3793), - [anon_sym_typedef] = ACTIONS(3791), - [anon_sym_extern] = ACTIONS(3791), - [anon_sym_LBRACE] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_static] = ACTIONS(3791), - [anon_sym_auto] = ACTIONS(3791), - [anon_sym_register] = ACTIONS(3791), - [anon_sym_inline] = ACTIONS(3791), - [anon_sym_const] = ACTIONS(3791), - [anon_sym_restrict] = ACTIONS(3791), - [anon_sym_volatile] = ACTIONS(3791), - [anon_sym__Atomic] = ACTIONS(3791), - [anon_sym_unsigned] = ACTIONS(3791), - [anon_sym_long] = ACTIONS(3791), - [anon_sym_short] = ACTIONS(3791), - [sym_primitive_type] = ACTIONS(3791), - [anon_sym_enum] = ACTIONS(3791), - [anon_sym_struct] = ACTIONS(3791), - [anon_sym_union] = ACTIONS(3791), - [anon_sym_if] = ACTIONS(3791), - [anon_sym_else] = ACTIONS(3791), - [anon_sym_switch] = ACTIONS(3791), - [anon_sym_case] = ACTIONS(3791), - [anon_sym_default] = ACTIONS(3791), - [anon_sym_while] = ACTIONS(3791), - [anon_sym_do] = ACTIONS(3791), - [anon_sym_for] = ACTIONS(3791), - [anon_sym_return] = ACTIONS(3791), - [anon_sym_break] = ACTIONS(3791), - [anon_sym_continue] = ACTIONS(3791), - [anon_sym_goto] = ACTIONS(3791), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_BANG] = ACTIONS(3793), - [anon_sym_TILDE] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3791), - [anon_sym_DASH] = ACTIONS(3791), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_sizeof] = ACTIONS(3791), - [sym_number_literal] = ACTIONS(3793), - [sym_char_literal] = ACTIONS(3793), - [sym_string_literal] = ACTIONS(3793), - [sym_true] = ACTIONS(3791), - [sym_false] = ACTIONS(3791), - [sym_null] = ACTIONS(3791), - [sym_identifier] = ACTIONS(3791), + [sym__expression] = STATE(1386), + [sym_conditional_expression] = STATE(1386), + [sym_assignment_expression] = STATE(1386), + [sym_pointer_expression] = STATE(1386), + [sym_logical_expression] = STATE(1386), + [sym_bitwise_expression] = STATE(1386), + [sym_equality_expression] = STATE(1386), + [sym_relational_expression] = STATE(1386), + [sym_shift_expression] = STATE(1386), + [sym_math_expression] = STATE(1386), + [sym_cast_expression] = STATE(1386), + [sym_sizeof_expression] = STATE(1386), + [sym_subscript_expression] = STATE(1386), + [sym_call_expression] = STATE(1386), + [sym_field_expression] = STATE(1386), + [sym_compound_literal_expression] = STATE(1386), + [sym_parenthesized_expression] = STATE(1386), + [sym_concatenated_string] = STATE(1386), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3854), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3856), + [sym_char_literal] = ACTIONS(3856), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3858), + [sym_false] = ACTIONS(3858), + [sym_null] = ACTIONS(3858), + [sym_identifier] = ACTIONS(3858), [sym_comment] = ACTIONS(39), }, [1361] = { - [sym_compound_statement] = STATE(1382), - [sym_labeled_statement] = STATE(1382), - [sym_expression_statement] = STATE(1382), - [sym_if_statement] = STATE(1382), - [sym_switch_statement] = STATE(1382), - [sym_case_statement] = STATE(1382), - [sym_while_statement] = STATE(1382), - [sym_do_statement] = STATE(1382), - [sym_for_statement] = STATE(1382), - [sym_return_statement] = STATE(1382), - [sym_break_statement] = STATE(1382), - [sym_continue_statement] = STATE(1382), - [sym_goto_statement] = STATE(1382), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1541), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1545), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(2787), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1362] = { - [sym_compound_statement] = STATE(1269), - [sym_labeled_statement] = STATE(1269), - [sym_expression_statement] = STATE(1269), - [sym_if_statement] = STATE(1269), - [sym_switch_statement] = STATE(1269), - [sym_case_statement] = STATE(1269), - [sym_while_statement] = STATE(1269), - [sym_do_statement] = STATE(1269), - [sym_for_statement] = STATE(1269), - [sym_return_statement] = STATE(1269), - [sym_break_statement] = STATE(1269), - [sym_continue_statement] = STATE(1269), - [sym_goto_statement] = STATE(1269), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [sym_compound_statement] = STATE(1363), + [sym_labeled_statement] = STATE(1363), + [sym_expression_statement] = STATE(1363), + [sym_if_statement] = STATE(1363), + [sym_switch_statement] = STATE(1363), + [sym_case_statement] = STATE(1363), + [sym_while_statement] = STATE(1363), + [sym_do_statement] = STATE(1363), + [sym_for_statement] = STATE(1363), + [sym_return_statement] = STATE(1363), + [sym_break_statement] = STATE(1363), + [sym_continue_statement] = STATE(1363), + [sym_goto_statement] = STATE(1363), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(1014), + [anon_sym_default] = ACTIONS(1016), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(1022), [sym_comment] = ACTIONS(39), }, [1363] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3869), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3862), + [anon_sym_LPAREN] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3862), + [sym_preproc_directive] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_typedef] = ACTIONS(3862), + [anon_sym_extern] = ACTIONS(3862), + [anon_sym_LBRACE] = ACTIONS(3864), + [anon_sym_RBRACE] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3864), + [anon_sym_static] = ACTIONS(3862), + [anon_sym_auto] = ACTIONS(3862), + [anon_sym_register] = ACTIONS(3862), + [anon_sym_inline] = ACTIONS(3862), + [anon_sym_const] = ACTIONS(3862), + [anon_sym_restrict] = ACTIONS(3862), + [anon_sym_volatile] = ACTIONS(3862), + [anon_sym__Atomic] = ACTIONS(3862), + [anon_sym_unsigned] = ACTIONS(3862), + [anon_sym_long] = ACTIONS(3862), + [anon_sym_short] = ACTIONS(3862), + [sym_primitive_type] = ACTIONS(3862), + [anon_sym_enum] = ACTIONS(3862), + [anon_sym_struct] = ACTIONS(3862), + [anon_sym_union] = ACTIONS(3862), + [anon_sym_if] = ACTIONS(3862), + [anon_sym_else] = ACTIONS(3862), + [anon_sym_switch] = ACTIONS(3862), + [anon_sym_case] = ACTIONS(3862), + [anon_sym_default] = ACTIONS(3862), + [anon_sym_while] = ACTIONS(3862), + [anon_sym_do] = ACTIONS(3862), + [anon_sym_for] = ACTIONS(3862), + [anon_sym_return] = ACTIONS(3862), + [anon_sym_break] = ACTIONS(3862), + [anon_sym_continue] = ACTIONS(3862), + [anon_sym_goto] = ACTIONS(3862), + [anon_sym_AMP] = ACTIONS(3864), + [anon_sym_BANG] = ACTIONS(3864), + [anon_sym_TILDE] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3862), + [anon_sym_DASH] = ACTIONS(3862), + [anon_sym_DASH_DASH] = ACTIONS(3864), + [anon_sym_PLUS_PLUS] = ACTIONS(3864), + [anon_sym_sizeof] = ACTIONS(3862), + [sym_number_literal] = ACTIONS(3864), + [sym_char_literal] = ACTIONS(3864), + [sym_string_literal] = ACTIONS(3864), + [sym_true] = ACTIONS(3862), + [sym_false] = ACTIONS(3862), + [sym_null] = ACTIONS(3862), + [sym_identifier] = ACTIONS(3862), [sym_comment] = ACTIONS(39), }, [1364] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1384), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_compound_statement] = STATE(1388), + [sym_labeled_statement] = STATE(1388), + [sym_expression_statement] = STATE(1388), + [sym_if_statement] = STATE(1388), + [sym_switch_statement] = STATE(1388), + [sym_case_statement] = STATE(1388), + [sym_while_statement] = STATE(1388), + [sym_do_statement] = STATE(1388), + [sym_for_statement] = STATE(1388), + [sym_return_statement] = STATE(1388), + [sym_break_statement] = STATE(1388), + [sym_continue_statement] = STATE(1388), + [sym_goto_statement] = STATE(1388), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3556), [sym_comment] = ACTIONS(39), }, [1365] = { - [sym_compound_statement] = STATE(1200), - [sym_labeled_statement] = STATE(1200), - [sym_expression_statement] = STATE(1200), - [sym_if_statement] = STATE(1200), - [sym_switch_statement] = STATE(1200), - [sym_case_statement] = STATE(1200), - [sym_while_statement] = STATE(1200), - [sym_do_statement] = STATE(1200), - [sym_for_statement] = STATE(1200), - [sym_return_statement] = STATE(1200), - [sym_break_statement] = STATE(1200), - [sym_continue_statement] = STATE(1200), - [sym_goto_statement] = STATE(1200), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3322), + [sym_compound_statement] = STATE(1250), + [sym_labeled_statement] = STATE(1250), + [sym_expression_statement] = STATE(1250), + [sym_if_statement] = STATE(1250), + [sym_switch_statement] = STATE(1250), + [sym_case_statement] = STATE(1250), + [sym_while_statement] = STATE(1250), + [sym_do_statement] = STATE(1250), + [sym_for_statement] = STATE(1250), + [sym_return_statement] = STATE(1250), + [sym_break_statement] = STATE(1250), + [sym_continue_statement] = STATE(1250), + [sym_goto_statement] = STATE(1250), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3556), [sym_comment] = ACTIONS(39), }, [1366] = { - [sym_compound_statement] = STATE(1214), - [sym_labeled_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_case_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_goto_statement] = STATE(1214), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3322), + [sym_compound_statement] = STATE(1251), + [sym_labeled_statement] = STATE(1251), + [sym_expression_statement] = STATE(1251), + [sym_if_statement] = STATE(1251), + [sym_switch_statement] = STATE(1251), + [sym_case_statement] = STATE(1251), + [sym_while_statement] = STATE(1251), + [sym_do_statement] = STATE(1251), + [sym_for_statement] = STATE(1251), + [sym_return_statement] = STATE(1251), + [sym_break_statement] = STATE(1251), + [sym_continue_statement] = STATE(1251), + [sym_goto_statement] = STATE(1251), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3556), [sym_comment] = ACTIONS(39), }, [1367] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3871), + [sym__expression] = STATE(1390), + [sym_conditional_expression] = STATE(1390), + [sym_assignment_expression] = STATE(1390), + [sym_pointer_expression] = STATE(1390), + [sym_logical_expression] = STATE(1390), + [sym_bitwise_expression] = STATE(1390), + [sym_equality_expression] = STATE(1390), + [sym_relational_expression] = STATE(1390), + [sym_shift_expression] = STATE(1390), + [sym_math_expression] = STATE(1390), + [sym_cast_expression] = STATE(1390), + [sym_sizeof_expression] = STATE(1390), + [sym_subscript_expression] = STATE(1390), + [sym_call_expression] = STATE(1390), + [sym_field_expression] = STATE(1390), + [sym_compound_literal_expression] = STATE(1390), + [sym_parenthesized_expression] = STATE(1390), + [sym_concatenated_string] = STATE(1390), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3866), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3868), + [sym_char_literal] = ACTIONS(3868), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3870), + [sym_false] = ACTIONS(3870), + [sym_null] = ACTIONS(3870), + [sym_identifier] = ACTIONS(3870), [sym_comment] = ACTIONS(39), }, [1368] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1386), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3871), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1369] = { - [sym__expression] = STATE(1387), - [sym_conditional_expression] = STATE(1387), - [sym_assignment_expression] = STATE(1387), - [sym_pointer_expression] = STATE(1387), - [sym_logical_expression] = STATE(1387), - [sym_bitwise_expression] = STATE(1387), - [sym_equality_expression] = STATE(1387), - [sym_relational_expression] = STATE(1387), - [sym_shift_expression] = STATE(1387), - [sym_math_expression] = STATE(1387), - [sym_cast_expression] = STATE(1387), - [sym_sizeof_expression] = STATE(1387), - [sym_subscript_expression] = STATE(1387), - [sym_call_expression] = STATE(1387), - [sym_field_expression] = STATE(1387), - [sym_compound_literal_expression] = STATE(1387), - [sym_parenthesized_expression] = STATE(1387), - [sym_concatenated_string] = STATE(1387), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3871), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3873), - [sym_char_literal] = ACTIONS(3873), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3875), - [sym_false] = ACTIONS(3875), - [sym_null] = ACTIONS(3875), - [sym_identifier] = ACTIONS(3875), + [sym__expression] = STATE(1392), + [sym_conditional_expression] = STATE(1392), + [sym_assignment_expression] = STATE(1392), + [sym_pointer_expression] = STATE(1392), + [sym_logical_expression] = STATE(1392), + [sym_bitwise_expression] = STATE(1392), + [sym_equality_expression] = STATE(1392), + [sym_relational_expression] = STATE(1392), + [sym_shift_expression] = STATE(1392), + [sym_math_expression] = STATE(1392), + [sym_cast_expression] = STATE(1392), + [sym_sizeof_expression] = STATE(1392), + [sym_subscript_expression] = STATE(1392), + [sym_call_expression] = STATE(1392), + [sym_field_expression] = STATE(1392), + [sym_compound_literal_expression] = STATE(1392), + [sym_parenthesized_expression] = STATE(1392), + [sym_concatenated_string] = STATE(1392), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_AMP] = ACTIONS(817), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_TILDE] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_DASH_DASH] = ACTIONS(825), + [anon_sym_PLUS_PLUS] = ACTIONS(825), + [anon_sym_sizeof] = ACTIONS(827), + [sym_number_literal] = ACTIONS(3874), + [sym_char_literal] = ACTIONS(3874), + [sym_string_literal] = ACTIONS(831), + [sym_true] = ACTIONS(3876), + [sym_false] = ACTIONS(3876), + [sym_null] = ACTIONS(3876), + [sym_identifier] = ACTIONS(3876), [sym_comment] = ACTIONS(39), }, [1370] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3288), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3286), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3286), - [sym_preproc_directive] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_typedef] = ACTIONS(3286), - [anon_sym_extern] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_auto] = ACTIONS(3286), - [anon_sym_register] = ACTIONS(3286), - [anon_sym_inline] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_restrict] = ACTIONS(3286), - [anon_sym_volatile] = ACTIONS(3286), - [anon_sym__Atomic] = ACTIONS(3286), - [anon_sym_unsigned] = ACTIONS(3286), - [anon_sym_long] = ACTIONS(3286), - [anon_sym_short] = ACTIONS(3286), - [sym_primitive_type] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), - [anon_sym_struct] = ACTIONS(3286), - [anon_sym_union] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3877), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_goto] = ACTIONS(3286), - [anon_sym_AMP] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_sizeof] = ACTIONS(3286), - [sym_number_literal] = ACTIONS(3288), - [sym_char_literal] = ACTIONS(3288), - [sym_string_literal] = ACTIONS(3288), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3286), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3740), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3738), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3738), + [sym_preproc_directive] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym_typedef] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_auto] = ACTIONS(3738), + [anon_sym_register] = ACTIONS(3738), + [anon_sym_inline] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_restrict] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym__Atomic] = ACTIONS(3738), + [anon_sym_unsigned] = ACTIONS(3738), + [anon_sym_long] = ACTIONS(3738), + [anon_sym_short] = ACTIONS(3738), + [sym_primitive_type] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_union] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_else] = ACTIONS(3738), + [anon_sym_switch] = ACTIONS(3738), + [anon_sym_case] = ACTIONS(3738), + [anon_sym_default] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_break] = ACTIONS(3738), + [anon_sym_continue] = ACTIONS(3738), + [anon_sym_goto] = ACTIONS(3738), + [anon_sym_AMP] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_sizeof] = ACTIONS(3738), + [sym_number_literal] = ACTIONS(3740), + [sym_char_literal] = ACTIONS(3740), + [sym_string_literal] = ACTIONS(3740), + [sym_true] = ACTIONS(3738), + [sym_false] = ACTIONS(3738), + [sym_null] = ACTIONS(3738), + [sym_identifier] = ACTIONS(3738), [sym_comment] = ACTIONS(39), }, [1371] = { - [sym_compound_statement] = STATE(1281), - [sym_labeled_statement] = STATE(1281), - [sym_expression_statement] = STATE(1281), - [sym_if_statement] = STATE(1281), - [sym_switch_statement] = STATE(1281), - [sym_case_statement] = STATE(1281), - [sym_while_statement] = STATE(1281), - [sym_do_statement] = STATE(1281), - [sym_for_statement] = STATE(1281), - [sym_return_statement] = STATE(1281), - [sym_break_statement] = STATE(1281), - [sym_continue_statement] = STATE(1281), - [sym_goto_statement] = STATE(1281), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3535), + [sym_compound_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_expression_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_case_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_goto_statement] = STATE(1393), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3169), [sym_comment] = ACTIONS(39), }, [1372] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1390), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3878), [sym_comment] = ACTIONS(39), }, [1373] = { - [sym__expression] = STATE(1391), - [sym_conditional_expression] = STATE(1391), - [sym_assignment_expression] = STATE(1391), - [sym_pointer_expression] = STATE(1391), - [sym_logical_expression] = STATE(1391), - [sym_bitwise_expression] = STATE(1391), - [sym_equality_expression] = STATE(1391), - [sym_relational_expression] = STATE(1391), - [sym_shift_expression] = STATE(1391), - [sym_math_expression] = STATE(1391), - [sym_cast_expression] = STATE(1391), - [sym_sizeof_expression] = STATE(1391), - [sym_subscript_expression] = STATE(1391), - [sym_call_expression] = STATE(1391), - [sym_field_expression] = STATE(1391), - [sym_compound_literal_expression] = STATE(1391), - [sym_parenthesized_expression] = STATE(1391), - [sym_concatenated_string] = STATE(1391), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3881), - [sym_char_literal] = ACTIONS(3881), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3883), - [sym_false] = ACTIONS(3883), - [sym_null] = ACTIONS(3883), - [sym_identifier] = ACTIONS(3883), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3307), + [sym_preproc_directive] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_typedef] = ACTIONS(3307), + [anon_sym_extern] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_auto] = ACTIONS(3307), + [anon_sym_register] = ACTIONS(3307), + [anon_sym_inline] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_restrict] = ACTIONS(3307), + [anon_sym_volatile] = ACTIONS(3307), + [anon_sym__Atomic] = ACTIONS(3307), + [anon_sym_unsigned] = ACTIONS(3307), + [anon_sym_long] = ACTIONS(3307), + [anon_sym_short] = ACTIONS(3307), + [sym_primitive_type] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_union] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3880), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_case] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_goto] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3307), + [sym_number_literal] = ACTIONS(3309), + [sym_char_literal] = ACTIONS(3309), + [sym_string_literal] = ACTIONS(3309), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3307), [sym_comment] = ACTIONS(39), }, [1374] = { - [sym_argument_list] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(3885), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1404), - [anon_sym_STAR_EQ] = ACTIONS(1406), - [anon_sym_SLASH_EQ] = ACTIONS(1406), - [anon_sym_PERCENT_EQ] = ACTIONS(1406), - [anon_sym_PLUS_EQ] = ACTIONS(1406), - [anon_sym_DASH_EQ] = ACTIONS(1406), - [anon_sym_LT_LT_EQ] = ACTIONS(1406), - [anon_sym_GT_GT_EQ] = ACTIONS(1406), - [anon_sym_AMP_EQ] = ACTIONS(1406), - [anon_sym_CARET_EQ] = ACTIONS(1406), - [anon_sym_PIPE_EQ] = ACTIONS(1406), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1418), - [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_LT] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT_EQ] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_compound_statement] = STATE(1266), + [sym_labeled_statement] = STATE(1266), + [sym_expression_statement] = STATE(1266), + [sym_if_statement] = STATE(1266), + [sym_switch_statement] = STATE(1266), + [sym_case_statement] = STATE(1266), + [sym_while_statement] = STATE(1266), + [sym_do_statement] = STATE(1266), + [sym_for_statement] = STATE(1266), + [sym_return_statement] = STATE(1266), + [sym_break_statement] = STATE(1266), + [sym_continue_statement] = STATE(1266), + [sym_goto_statement] = STATE(1266), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3444), [sym_comment] = ACTIONS(39), }, [1375] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3791), - [anon_sym_LPAREN] = ACTIONS(3793), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3791), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3791), - [sym_preproc_directive] = ACTIONS(3791), - [anon_sym_SEMI] = ACTIONS(3793), - [anon_sym_typedef] = ACTIONS(3791), - [anon_sym_extern] = ACTIONS(3791), - [anon_sym_LBRACE] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_static] = ACTIONS(3791), - [anon_sym_auto] = ACTIONS(3791), - [anon_sym_register] = ACTIONS(3791), - [anon_sym_inline] = ACTIONS(3791), - [anon_sym_const] = ACTIONS(3791), - [anon_sym_restrict] = ACTIONS(3791), - [anon_sym_volatile] = ACTIONS(3791), - [anon_sym__Atomic] = ACTIONS(3791), - [anon_sym_unsigned] = ACTIONS(3791), - [anon_sym_long] = ACTIONS(3791), - [anon_sym_short] = ACTIONS(3791), - [sym_primitive_type] = ACTIONS(3791), - [anon_sym_enum] = ACTIONS(3791), - [anon_sym_struct] = ACTIONS(3791), - [anon_sym_union] = ACTIONS(3791), - [anon_sym_if] = ACTIONS(3791), - [anon_sym_else] = ACTIONS(3791), - [anon_sym_switch] = ACTIONS(3791), - [anon_sym_case] = ACTIONS(3791), - [anon_sym_default] = ACTIONS(3791), - [anon_sym_while] = ACTIONS(3791), - [anon_sym_do] = ACTIONS(3791), - [anon_sym_for] = ACTIONS(3791), - [anon_sym_return] = ACTIONS(3791), - [anon_sym_break] = ACTIONS(3791), - [anon_sym_continue] = ACTIONS(3791), - [anon_sym_goto] = ACTIONS(3791), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_BANG] = ACTIONS(3793), - [anon_sym_TILDE] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3791), - [anon_sym_DASH] = ACTIONS(3791), - [anon_sym_DASH_DASH] = ACTIONS(3793), - [anon_sym_PLUS_PLUS] = ACTIONS(3793), - [anon_sym_sizeof] = ACTIONS(3791), - [sym_number_literal] = ACTIONS(3793), - [sym_char_literal] = ACTIONS(3793), - [sym_string_literal] = ACTIONS(3793), - [sym_true] = ACTIONS(3791), - [sym_false] = ACTIONS(3791), - [sym_null] = ACTIONS(3791), - [sym_identifier] = ACTIONS(3791), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1397), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3882), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1376] = { - [sym_compound_statement] = STATE(1393), - [sym_labeled_statement] = STATE(1393), - [sym_expression_statement] = STATE(1393), - [sym_if_statement] = STATE(1393), - [sym_switch_statement] = STATE(1393), - [sym_case_statement] = STATE(1393), - [sym_while_statement] = STATE(1393), - [sym_do_statement] = STATE(1393), - [sym_for_statement] = STATE(1393), - [sym_return_statement] = STATE(1393), - [sym_break_statement] = STATE(1393), - [sym_continue_statement] = STATE(1393), - [sym_goto_statement] = STATE(1393), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_switch] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2312), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2316), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3148), + [sym__expression] = STATE(1398), + [sym_conditional_expression] = STATE(1398), + [sym_assignment_expression] = STATE(1398), + [sym_pointer_expression] = STATE(1398), + [sym_logical_expression] = STATE(1398), + [sym_bitwise_expression] = STATE(1398), + [sym_equality_expression] = STATE(1398), + [sym_relational_expression] = STATE(1398), + [sym_shift_expression] = STATE(1398), + [sym_math_expression] = STATE(1398), + [sym_cast_expression] = STATE(1398), + [sym_sizeof_expression] = STATE(1398), + [sym_subscript_expression] = STATE(1398), + [sym_call_expression] = STATE(1398), + [sym_field_expression] = STATE(1398), + [sym_compound_literal_expression] = STATE(1398), + [sym_parenthesized_expression] = STATE(1398), + [sym_concatenated_string] = STATE(1398), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3882), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3884), + [sym_char_literal] = ACTIONS(3884), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3886), + [sym_false] = ACTIONS(3886), + [sym_null] = ACTIONS(3886), + [sym_identifier] = ACTIONS(3886), [sym_comment] = ACTIONS(39), }, [1377] = { - [sym_compound_statement] = STATE(1293), - [sym_labeled_statement] = STATE(1293), - [sym_expression_statement] = STATE(1293), - [sym_if_statement] = STATE(1293), - [sym_switch_statement] = STATE(1293), - [sym_case_statement] = STATE(1293), - [sym_while_statement] = STATE(1293), - [sym_do_statement] = STATE(1293), - [sym_for_statement] = STATE(1293), - [sym_return_statement] = STATE(1293), - [sym_break_statement] = STATE(1293), - [sym_continue_statement] = STATE(1293), - [sym_goto_statement] = STATE(1293), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3423), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1378] = { - [sym_compound_statement] = STATE(1294), - [sym_labeled_statement] = STATE(1294), - [sym_expression_statement] = STATE(1294), - [sym_if_statement] = STATE(1294), - [sym_switch_statement] = STATE(1294), - [sym_case_statement] = STATE(1294), - [sym_while_statement] = STATE(1294), - [sym_do_statement] = STATE(1294), - [sym_for_statement] = STATE(1294), - [sym_return_statement] = STATE(1294), - [sym_break_statement] = STATE(1294), - [sym_continue_statement] = STATE(1294), - [sym_goto_statement] = STATE(1294), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3812), + [anon_sym_LPAREN] = ACTIONS(3814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3812), + [sym_preproc_directive] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3814), + [anon_sym_typedef] = ACTIONS(3812), + [anon_sym_extern] = ACTIONS(3812), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_STAR] = ACTIONS(3814), + [anon_sym_static] = ACTIONS(3812), + [anon_sym_auto] = ACTIONS(3812), + [anon_sym_register] = ACTIONS(3812), + [anon_sym_inline] = ACTIONS(3812), + [anon_sym_const] = ACTIONS(3812), + [anon_sym_restrict] = ACTIONS(3812), + [anon_sym_volatile] = ACTIONS(3812), + [anon_sym__Atomic] = ACTIONS(3812), + [anon_sym_unsigned] = ACTIONS(3812), + [anon_sym_long] = ACTIONS(3812), + [anon_sym_short] = ACTIONS(3812), + [sym_primitive_type] = ACTIONS(3812), + [anon_sym_enum] = ACTIONS(3812), + [anon_sym_struct] = ACTIONS(3812), + [anon_sym_union] = ACTIONS(3812), + [anon_sym_if] = ACTIONS(3812), + [anon_sym_else] = ACTIONS(3812), + [anon_sym_switch] = ACTIONS(3812), + [anon_sym_case] = ACTIONS(3812), + [anon_sym_default] = ACTIONS(3812), + [anon_sym_while] = ACTIONS(3812), + [anon_sym_do] = ACTIONS(3812), + [anon_sym_for] = ACTIONS(3812), + [anon_sym_return] = ACTIONS(3812), + [anon_sym_break] = ACTIONS(3812), + [anon_sym_continue] = ACTIONS(3812), + [anon_sym_goto] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_BANG] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3812), + [anon_sym_DASH] = ACTIONS(3812), + [anon_sym_DASH_DASH] = ACTIONS(3814), + [anon_sym_PLUS_PLUS] = ACTIONS(3814), + [anon_sym_sizeof] = ACTIONS(3812), + [sym_number_literal] = ACTIONS(3814), + [sym_char_literal] = ACTIONS(3814), + [sym_string_literal] = ACTIONS(3814), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_identifier] = ACTIONS(3812), [sym_comment] = ACTIONS(39), }, [1379] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3887), + [sym_compound_statement] = STATE(1400), + [sym_labeled_statement] = STATE(1400), + [sym_expression_statement] = STATE(1400), + [sym_if_statement] = STATE(1400), + [sym_switch_statement] = STATE(1400), + [sym_case_statement] = STATE(1400), + [sym_while_statement] = STATE(1400), + [sym_do_statement] = STATE(1400), + [sym_for_statement] = STATE(1400), + [sym_return_statement] = STATE(1400), + [sym_break_statement] = STATE(1400), + [sym_continue_statement] = STATE(1400), + [sym_goto_statement] = STATE(1400), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1551), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1555), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1559), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(2808), [sym_comment] = ACTIONS(39), }, [1380] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1395), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3887), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym_compound_statement] = STATE(1287), + [sym_labeled_statement] = STATE(1287), + [sym_expression_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym_case_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_break_statement] = STATE(1287), + [sym_continue_statement] = STATE(1287), + [sym_goto_statement] = STATE(1287), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2945), [sym_comment] = ACTIONS(39), }, [1381] = { - [sym__expression] = STATE(1396), - [sym_conditional_expression] = STATE(1396), - [sym_assignment_expression] = STATE(1396), - [sym_pointer_expression] = STATE(1396), - [sym_logical_expression] = STATE(1396), - [sym_bitwise_expression] = STATE(1396), - [sym_equality_expression] = STATE(1396), - [sym_relational_expression] = STATE(1396), - [sym_shift_expression] = STATE(1396), - [sym_math_expression] = STATE(1396), - [sym_cast_expression] = STATE(1396), - [sym_sizeof_expression] = STATE(1396), - [sym_subscript_expression] = STATE(1396), - [sym_call_expression] = STATE(1396), - [sym_field_expression] = STATE(1396), - [sym_compound_literal_expression] = STATE(1396), - [sym_parenthesized_expression] = STATE(1396), - [sym_concatenated_string] = STATE(1396), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3887), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3889), - [sym_char_literal] = ACTIONS(3889), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3891), - [sym_false] = ACTIONS(3891), - [sym_null] = ACTIONS(3891), - [sym_identifier] = ACTIONS(3891), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3890), [sym_comment] = ACTIONS(39), }, [1382] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3841), - [anon_sym_LPAREN] = ACTIONS(3843), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3841), - [sym_preproc_directive] = ACTIONS(3841), - [anon_sym_SEMI] = ACTIONS(3843), - [anon_sym_typedef] = ACTIONS(3841), - [anon_sym_extern] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_static] = ACTIONS(3841), - [anon_sym_auto] = ACTIONS(3841), - [anon_sym_register] = ACTIONS(3841), - [anon_sym_inline] = ACTIONS(3841), - [anon_sym_const] = ACTIONS(3841), - [anon_sym_restrict] = ACTIONS(3841), - [anon_sym_volatile] = ACTIONS(3841), - [anon_sym__Atomic] = ACTIONS(3841), - [anon_sym_unsigned] = ACTIONS(3841), - [anon_sym_long] = ACTIONS(3841), - [anon_sym_short] = ACTIONS(3841), - [sym_primitive_type] = ACTIONS(3841), - [anon_sym_enum] = ACTIONS(3841), - [anon_sym_struct] = ACTIONS(3841), - [anon_sym_union] = ACTIONS(3841), - [anon_sym_if] = ACTIONS(3841), - [anon_sym_else] = ACTIONS(3841), - [anon_sym_switch] = ACTIONS(3841), - [anon_sym_case] = ACTIONS(3841), - [anon_sym_default] = ACTIONS(3841), - [anon_sym_while] = ACTIONS(3841), - [anon_sym_do] = ACTIONS(3841), - [anon_sym_for] = ACTIONS(3841), - [anon_sym_return] = ACTIONS(3841), - [anon_sym_break] = ACTIONS(3841), - [anon_sym_continue] = ACTIONS(3841), - [anon_sym_goto] = ACTIONS(3841), - [anon_sym_AMP] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_TILDE] = ACTIONS(3843), - [anon_sym_PLUS] = ACTIONS(3841), - [anon_sym_DASH] = ACTIONS(3841), - [anon_sym_DASH_DASH] = ACTIONS(3843), - [anon_sym_PLUS_PLUS] = ACTIONS(3843), - [anon_sym_sizeof] = ACTIONS(3841), - [sym_number_literal] = ACTIONS(3843), - [sym_char_literal] = ACTIONS(3843), - [sym_string_literal] = ACTIONS(3843), - [sym_true] = ACTIONS(3841), - [sym_false] = ACTIONS(3841), - [sym_null] = ACTIONS(3841), - [sym_identifier] = ACTIONS(3841), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1402), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3890), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1383] = { - [sym_compound_statement] = STATE(1311), - [sym_labeled_statement] = STATE(1311), - [sym_expression_statement] = STATE(1311), - [sym_if_statement] = STATE(1311), - [sym_switch_statement] = STATE(1311), - [sym_case_statement] = STATE(1311), - [sym_while_statement] = STATE(1311), - [sym_do_statement] = STATE(1311), - [sym_for_statement] = STATE(1311), - [sym_return_statement] = STATE(1311), - [sym_break_statement] = STATE(1311), - [sym_continue_statement] = STATE(1311), - [sym_goto_statement] = STATE(1311), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), + [sym_compound_statement] = STATE(1218), + [sym_labeled_statement] = STATE(1218), + [sym_expression_statement] = STATE(1218), + [sym_if_statement] = STATE(1218), + [sym_switch_statement] = STATE(1218), + [sym_case_statement] = STATE(1218), + [sym_while_statement] = STATE(1218), + [sym_do_statement] = STATE(1218), + [sym_for_statement] = STATE(1218), + [sym_return_statement] = STATE(1218), + [sym_break_statement] = STATE(1218), + [sym_continue_statement] = STATE(1218), + [sym_goto_statement] = STATE(1218), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3343), [sym_comment] = ACTIONS(39), }, [1384] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3893), + [sym_compound_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1232), + [sym_expression_statement] = STATE(1232), + [sym_if_statement] = STATE(1232), + [sym_switch_statement] = STATE(1232), + [sym_case_statement] = STATE(1232), + [sym_while_statement] = STATE(1232), + [sym_do_statement] = STATE(1232), + [sym_for_statement] = STATE(1232), + [sym_return_statement] = STATE(1232), + [sym_break_statement] = STATE(1232), + [sym_continue_statement] = STATE(1232), + [sym_goto_statement] = STATE(1232), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3343), [sym_comment] = ACTIONS(39), }, [1385] = { - [sym_compound_statement] = STATE(1269), - [sym_labeled_statement] = STATE(1269), - [sym_expression_statement] = STATE(1269), - [sym_if_statement] = STATE(1269), - [sym_switch_statement] = STATE(1269), - [sym_case_statement] = STATE(1269), - [sym_while_statement] = STATE(1269), - [sym_do_statement] = STATE(1269), - [sym_for_statement] = STATE(1269), - [sym_return_statement] = STATE(1269), - [sym_break_statement] = STATE(1269), - [sym_continue_statement] = STATE(1269), - [sym_goto_statement] = STATE(1269), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3322), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3892), [sym_comment] = ACTIONS(39), }, [1386] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3895), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1404), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1387] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1399), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym__expression] = STATE(1405), + [sym_conditional_expression] = STATE(1405), + [sym_assignment_expression] = STATE(1405), + [sym_pointer_expression] = STATE(1405), + [sym_logical_expression] = STATE(1405), + [sym_bitwise_expression] = STATE(1405), + [sym_equality_expression] = STATE(1405), + [sym_relational_expression] = STATE(1405), + [sym_shift_expression] = STATE(1405), + [sym_math_expression] = STATE(1405), + [sym_cast_expression] = STATE(1405), + [sym_sizeof_expression] = STATE(1405), + [sym_subscript_expression] = STATE(1405), + [sym_call_expression] = STATE(1405), + [sym_field_expression] = STATE(1405), + [sym_compound_literal_expression] = STATE(1405), + [sym_parenthesized_expression] = STATE(1405), + [sym_concatenated_string] = STATE(1405), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3894), + [sym_char_literal] = ACTIONS(3894), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3896), + [sym_false] = ACTIONS(3896), + [sym_null] = ACTIONS(3896), + [sym_identifier] = ACTIONS(3896), [sym_comment] = ACTIONS(39), }, [1388] = { - [sym_compound_statement] = STATE(1320), - [sym_labeled_statement] = STATE(1320), - [sym_expression_statement] = STATE(1320), - [sym_if_statement] = STATE(1320), - [sym_switch_statement] = STATE(1320), - [sym_case_statement] = STATE(1320), - [sym_while_statement] = STATE(1320), - [sym_do_statement] = STATE(1320), - [sym_for_statement] = STATE(1320), - [sym_return_statement] = STATE(1320), - [sym_break_statement] = STATE(1320), - [sym_continue_statement] = STATE(1320), - [sym_goto_statement] = STATE(1320), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3535), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3307), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3307), + [sym_preproc_directive] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_typedef] = ACTIONS(3307), + [anon_sym_extern] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_auto] = ACTIONS(3307), + [anon_sym_register] = ACTIONS(3307), + [anon_sym_inline] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_restrict] = ACTIONS(3307), + [anon_sym_volatile] = ACTIONS(3307), + [anon_sym__Atomic] = ACTIONS(3307), + [anon_sym_unsigned] = ACTIONS(3307), + [anon_sym_long] = ACTIONS(3307), + [anon_sym_short] = ACTIONS(3307), + [sym_primitive_type] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_union] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3898), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_case] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_goto] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3307), + [sym_number_literal] = ACTIONS(3309), + [sym_char_literal] = ACTIONS(3309), + [sym_string_literal] = ACTIONS(3309), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_null] = ACTIONS(3307), + [sym_identifier] = ACTIONS(3307), [sym_comment] = ACTIONS(39), }, [1389] = { - [sym_compound_statement] = STATE(1321), - [sym_labeled_statement] = STATE(1321), - [sym_expression_statement] = STATE(1321), - [sym_if_statement] = STATE(1321), - [sym_switch_statement] = STATE(1321), - [sym_case_statement] = STATE(1321), - [sym_while_statement] = STATE(1321), - [sym_do_statement] = STATE(1321), - [sym_for_statement] = STATE(1321), - [sym_return_statement] = STATE(1321), - [sym_break_statement] = STATE(1321), - [sym_continue_statement] = STATE(1321), - [sym_goto_statement] = STATE(1321), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3535), + [sym_compound_statement] = STATE(1299), + [sym_labeled_statement] = STATE(1299), + [sym_expression_statement] = STATE(1299), + [sym_if_statement] = STATE(1299), + [sym_switch_statement] = STATE(1299), + [sym_case_statement] = STATE(1299), + [sym_while_statement] = STATE(1299), + [sym_do_statement] = STATE(1299), + [sym_for_statement] = STATE(1299), + [sym_return_statement] = STATE(1299), + [sym_break_statement] = STATE(1299), + [sym_continue_statement] = STATE(1299), + [sym_goto_statement] = STATE(1299), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3556), [sym_comment] = ACTIONS(39), }, [1390] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3897), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1408), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3900), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1391] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1401), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3897), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [sym__expression] = STATE(1409), + [sym_conditional_expression] = STATE(1409), + [sym_assignment_expression] = STATE(1409), + [sym_pointer_expression] = STATE(1409), + [sym_logical_expression] = STATE(1409), + [sym_bitwise_expression] = STATE(1409), + [sym_equality_expression] = STATE(1409), + [sym_relational_expression] = STATE(1409), + [sym_shift_expression] = STATE(1409), + [sym_math_expression] = STATE(1409), + [sym_cast_expression] = STATE(1409), + [sym_sizeof_expression] = STATE(1409), + [sym_subscript_expression] = STATE(1409), + [sym_call_expression] = STATE(1409), + [sym_field_expression] = STATE(1409), + [sym_compound_literal_expression] = STATE(1409), + [sym_parenthesized_expression] = STATE(1409), + [sym_concatenated_string] = STATE(1409), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3900), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3902), + [sym_char_literal] = ACTIONS(3902), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3904), + [sym_false] = ACTIONS(3904), + [sym_null] = ACTIONS(3904), + [sym_identifier] = ACTIONS(3904), [sym_comment] = ACTIONS(39), }, [1392] = { - [sym__expression] = STATE(1402), - [sym_conditional_expression] = STATE(1402), - [sym_assignment_expression] = STATE(1402), - [sym_pointer_expression] = STATE(1402), - [sym_logical_expression] = STATE(1402), - [sym_bitwise_expression] = STATE(1402), - [sym_equality_expression] = STATE(1402), - [sym_relational_expression] = STATE(1402), - [sym_shift_expression] = STATE(1402), - [sym_math_expression] = STATE(1402), - [sym_cast_expression] = STATE(1402), - [sym_sizeof_expression] = STATE(1402), - [sym_subscript_expression] = STATE(1402), - [sym_call_expression] = STATE(1402), - [sym_field_expression] = STATE(1402), - [sym_compound_literal_expression] = STATE(1402), - [sym_parenthesized_expression] = STATE(1402), - [sym_concatenated_string] = STATE(1402), - [anon_sym_LPAREN] = ACTIONS(930), - [anon_sym_RPAREN] = ACTIONS(3897), - [anon_sym_STAR] = ACTIONS(932), - [anon_sym_AMP] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_DASH_DASH] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(940), - [anon_sym_sizeof] = ACTIONS(942), - [sym_number_literal] = ACTIONS(3899), - [sym_char_literal] = ACTIONS(3899), - [sym_string_literal] = ACTIONS(946), - [sym_true] = ACTIONS(3901), - [sym_false] = ACTIONS(3901), - [sym_null] = ACTIONS(3901), - [sym_identifier] = ACTIONS(3901), + [sym_argument_list] = STATE(463), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(3906), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_AMP_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1432), + [anon_sym_BANG_EQ] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1436), + [anon_sym_LT_LT] = ACTIONS(1438), + [anon_sym_GT_GT] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1393] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3841), - [anon_sym_LPAREN] = ACTIONS(3843), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3841), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3841), - [sym_preproc_directive] = ACTIONS(3841), - [anon_sym_SEMI] = ACTIONS(3843), - [anon_sym_typedef] = ACTIONS(3841), - [anon_sym_extern] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3843), - [anon_sym_STAR] = ACTIONS(3843), - [anon_sym_static] = ACTIONS(3841), - [anon_sym_auto] = ACTIONS(3841), - [anon_sym_register] = ACTIONS(3841), - [anon_sym_inline] = ACTIONS(3841), - [anon_sym_const] = ACTIONS(3841), - [anon_sym_restrict] = ACTIONS(3841), - [anon_sym_volatile] = ACTIONS(3841), - [anon_sym__Atomic] = ACTIONS(3841), - [anon_sym_unsigned] = ACTIONS(3841), - [anon_sym_long] = ACTIONS(3841), - [anon_sym_short] = ACTIONS(3841), - [sym_primitive_type] = ACTIONS(3841), - [anon_sym_enum] = ACTIONS(3841), - [anon_sym_struct] = ACTIONS(3841), - [anon_sym_union] = ACTIONS(3841), - [anon_sym_if] = ACTIONS(3841), - [anon_sym_else] = ACTIONS(3841), - [anon_sym_switch] = ACTIONS(3841), - [anon_sym_case] = ACTIONS(3841), - [anon_sym_default] = ACTIONS(3841), - [anon_sym_while] = ACTIONS(3841), - [anon_sym_do] = ACTIONS(3841), - [anon_sym_for] = ACTIONS(3841), - [anon_sym_return] = ACTIONS(3841), - [anon_sym_break] = ACTIONS(3841), - [anon_sym_continue] = ACTIONS(3841), - [anon_sym_goto] = ACTIONS(3841), - [anon_sym_AMP] = ACTIONS(3843), - [anon_sym_BANG] = ACTIONS(3843), - [anon_sym_TILDE] = ACTIONS(3843), - [anon_sym_PLUS] = ACTIONS(3841), - [anon_sym_DASH] = ACTIONS(3841), - [anon_sym_DASH_DASH] = ACTIONS(3843), - [anon_sym_PLUS_PLUS] = ACTIONS(3843), - [anon_sym_sizeof] = ACTIONS(3841), - [sym_number_literal] = ACTIONS(3843), - [sym_char_literal] = ACTIONS(3843), - [sym_string_literal] = ACTIONS(3843), - [sym_true] = ACTIONS(3841), - [sym_false] = ACTIONS(3841), - [sym_null] = ACTIONS(3841), - [sym_identifier] = ACTIONS(3841), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3812), + [anon_sym_LPAREN] = ACTIONS(3814), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3812), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3812), + [sym_preproc_directive] = ACTIONS(3812), + [anon_sym_SEMI] = ACTIONS(3814), + [anon_sym_typedef] = ACTIONS(3812), + [anon_sym_extern] = ACTIONS(3812), + [anon_sym_LBRACE] = ACTIONS(3814), + [anon_sym_STAR] = ACTIONS(3814), + [anon_sym_static] = ACTIONS(3812), + [anon_sym_auto] = ACTIONS(3812), + [anon_sym_register] = ACTIONS(3812), + [anon_sym_inline] = ACTIONS(3812), + [anon_sym_const] = ACTIONS(3812), + [anon_sym_restrict] = ACTIONS(3812), + [anon_sym_volatile] = ACTIONS(3812), + [anon_sym__Atomic] = ACTIONS(3812), + [anon_sym_unsigned] = ACTIONS(3812), + [anon_sym_long] = ACTIONS(3812), + [anon_sym_short] = ACTIONS(3812), + [sym_primitive_type] = ACTIONS(3812), + [anon_sym_enum] = ACTIONS(3812), + [anon_sym_struct] = ACTIONS(3812), + [anon_sym_union] = ACTIONS(3812), + [anon_sym_if] = ACTIONS(3812), + [anon_sym_else] = ACTIONS(3812), + [anon_sym_switch] = ACTIONS(3812), + [anon_sym_case] = ACTIONS(3812), + [anon_sym_default] = ACTIONS(3812), + [anon_sym_while] = ACTIONS(3812), + [anon_sym_do] = ACTIONS(3812), + [anon_sym_for] = ACTIONS(3812), + [anon_sym_return] = ACTIONS(3812), + [anon_sym_break] = ACTIONS(3812), + [anon_sym_continue] = ACTIONS(3812), + [anon_sym_goto] = ACTIONS(3812), + [anon_sym_AMP] = ACTIONS(3814), + [anon_sym_BANG] = ACTIONS(3814), + [anon_sym_TILDE] = ACTIONS(3814), + [anon_sym_PLUS] = ACTIONS(3812), + [anon_sym_DASH] = ACTIONS(3812), + [anon_sym_DASH_DASH] = ACTIONS(3814), + [anon_sym_PLUS_PLUS] = ACTIONS(3814), + [anon_sym_sizeof] = ACTIONS(3812), + [sym_number_literal] = ACTIONS(3814), + [sym_char_literal] = ACTIONS(3814), + [sym_string_literal] = ACTIONS(3814), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_identifier] = ACTIONS(3812), [sym_comment] = ACTIONS(39), }, [1394] = { - [sym_compound_statement] = STATE(1331), - [sym_labeled_statement] = STATE(1331), - [sym_expression_statement] = STATE(1331), - [sym_if_statement] = STATE(1331), - [sym_switch_statement] = STATE(1331), - [sym_case_statement] = STATE(1331), - [sym_while_statement] = STATE(1331), - [sym_do_statement] = STATE(1331), - [sym_for_statement] = STATE(1331), - [sym_return_statement] = STATE(1331), - [sym_break_statement] = STATE(1331), - [sym_continue_statement] = STATE(1331), - [sym_goto_statement] = STATE(1331), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3423), + [sym_compound_statement] = STATE(1411), + [sym_labeled_statement] = STATE(1411), + [sym_expression_statement] = STATE(1411), + [sym_if_statement] = STATE(1411), + [sym_switch_statement] = STATE(1411), + [sym_case_statement] = STATE(1411), + [sym_while_statement] = STATE(1411), + [sym_do_statement] = STATE(1411), + [sym_for_statement] = STATE(1411), + [sym_return_statement] = STATE(1411), + [sym_break_statement] = STATE(1411), + [sym_continue_statement] = STATE(1411), + [sym_goto_statement] = STATE(1411), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2325), + [anon_sym_switch] = ACTIONS(2327), + [anon_sym_case] = ACTIONS(2329), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2333), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2337), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3169), [sym_comment] = ACTIONS(39), }, [1395] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3903), - [sym_comment] = ACTIONS(39), - }, - [1396] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1404), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3903), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), - [sym_comment] = ACTIONS(39), - }, - [1397] = { - [sym_compound_statement] = STATE(1345), - [sym_labeled_statement] = STATE(1345), - [sym_expression_statement] = STATE(1345), - [sym_if_statement] = STATE(1345), - [sym_switch_statement] = STATE(1345), - [sym_case_statement] = STATE(1345), - [sym_while_statement] = STATE(1345), - [sym_do_statement] = STATE(1345), - [sym_for_statement] = STATE(1345), - [sym_return_statement] = STATE(1345), - [sym_break_statement] = STATE(1345), - [sym_continue_statement] = STATE(1345), - [sym_goto_statement] = STATE(1345), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2914), - [anon_sym_case] = ACTIONS(2916), - [anon_sym_default] = ACTIONS(2918), - [anon_sym_while] = ACTIONS(2920), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(2922), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(2924), - [sym_comment] = ACTIONS(39), - }, - [1398] = { [sym_compound_statement] = STATE(1311), [sym_labeled_statement] = STATE(1311), [sym_expression_statement] = STATE(1311), @@ -56477,450 +55905,1232 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(1311), [sym_continue_statement] = STATE(1311), [sym_goto_statement] = STATE(1311), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3322), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3444), + [sym_comment] = ACTIONS(39), + }, + [1396] = { + [sym_compound_statement] = STATE(1312), + [sym_labeled_statement] = STATE(1312), + [sym_expression_statement] = STATE(1312), + [sym_if_statement] = STATE(1312), + [sym_switch_statement] = STATE(1312), + [sym_case_statement] = STATE(1312), + [sym_while_statement] = STATE(1312), + [sym_do_statement] = STATE(1312), + [sym_for_statement] = STATE(1312), + [sym_return_statement] = STATE(1312), + [sym_break_statement] = STATE(1312), + [sym_continue_statement] = STATE(1312), + [sym_goto_statement] = STATE(1312), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3444), + [sym_comment] = ACTIONS(39), + }, + [1397] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3908), + [sym_comment] = ACTIONS(39), + }, + [1398] = { + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1413), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1399] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3905), + [sym__expression] = STATE(1414), + [sym_conditional_expression] = STATE(1414), + [sym_assignment_expression] = STATE(1414), + [sym_pointer_expression] = STATE(1414), + [sym_logical_expression] = STATE(1414), + [sym_bitwise_expression] = STATE(1414), + [sym_equality_expression] = STATE(1414), + [sym_relational_expression] = STATE(1414), + [sym_shift_expression] = STATE(1414), + [sym_math_expression] = STATE(1414), + [sym_cast_expression] = STATE(1414), + [sym_sizeof_expression] = STATE(1414), + [sym_subscript_expression] = STATE(1414), + [sym_call_expression] = STATE(1414), + [sym_field_expression] = STATE(1414), + [sym_compound_literal_expression] = STATE(1414), + [sym_parenthesized_expression] = STATE(1414), + [sym_concatenated_string] = STATE(1414), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3908), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3910), + [sym_char_literal] = ACTIONS(3910), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3912), + [sym_false] = ACTIONS(3912), + [sym_null] = ACTIONS(3912), + [sym_identifier] = ACTIONS(3912), [sym_comment] = ACTIONS(39), }, [1400] = { - [sym_compound_statement] = STATE(1352), - [sym_labeled_statement] = STATE(1352), - [sym_expression_statement] = STATE(1352), - [sym_if_statement] = STATE(1352), - [sym_switch_statement] = STATE(1352), - [sym_case_statement] = STATE(1352), - [sym_while_statement] = STATE(1352), - [sym_do_statement] = STATE(1352), - [sym_for_statement] = STATE(1352), - [sym_return_statement] = STATE(1352), - [sym_break_statement] = STATE(1352), - [sym_continue_statement] = STATE(1352), - [sym_goto_statement] = STATE(1352), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3535), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3862), + [anon_sym_LPAREN] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3862), + [sym_preproc_directive] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_typedef] = ACTIONS(3862), + [anon_sym_extern] = ACTIONS(3862), + [anon_sym_LBRACE] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3864), + [anon_sym_static] = ACTIONS(3862), + [anon_sym_auto] = ACTIONS(3862), + [anon_sym_register] = ACTIONS(3862), + [anon_sym_inline] = ACTIONS(3862), + [anon_sym_const] = ACTIONS(3862), + [anon_sym_restrict] = ACTIONS(3862), + [anon_sym_volatile] = ACTIONS(3862), + [anon_sym__Atomic] = ACTIONS(3862), + [anon_sym_unsigned] = ACTIONS(3862), + [anon_sym_long] = ACTIONS(3862), + [anon_sym_short] = ACTIONS(3862), + [sym_primitive_type] = ACTIONS(3862), + [anon_sym_enum] = ACTIONS(3862), + [anon_sym_struct] = ACTIONS(3862), + [anon_sym_union] = ACTIONS(3862), + [anon_sym_if] = ACTIONS(3862), + [anon_sym_else] = ACTIONS(3862), + [anon_sym_switch] = ACTIONS(3862), + [anon_sym_case] = ACTIONS(3862), + [anon_sym_default] = ACTIONS(3862), + [anon_sym_while] = ACTIONS(3862), + [anon_sym_do] = ACTIONS(3862), + [anon_sym_for] = ACTIONS(3862), + [anon_sym_return] = ACTIONS(3862), + [anon_sym_break] = ACTIONS(3862), + [anon_sym_continue] = ACTIONS(3862), + [anon_sym_goto] = ACTIONS(3862), + [anon_sym_AMP] = ACTIONS(3864), + [anon_sym_BANG] = ACTIONS(3864), + [anon_sym_TILDE] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3862), + [anon_sym_DASH] = ACTIONS(3862), + [anon_sym_DASH_DASH] = ACTIONS(3864), + [anon_sym_PLUS_PLUS] = ACTIONS(3864), + [anon_sym_sizeof] = ACTIONS(3862), + [sym_number_literal] = ACTIONS(3864), + [sym_char_literal] = ACTIONS(3864), + [sym_string_literal] = ACTIONS(3864), + [sym_true] = ACTIONS(3862), + [sym_false] = ACTIONS(3862), + [sym_null] = ACTIONS(3862), + [sym_identifier] = ACTIONS(3862), [sym_comment] = ACTIONS(39), }, [1401] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3907), + [sym_compound_statement] = STATE(1329), + [sym_labeled_statement] = STATE(1329), + [sym_expression_statement] = STATE(1329), + [sym_if_statement] = STATE(1329), + [sym_switch_statement] = STATE(1329), + [sym_case_statement] = STATE(1329), + [sym_while_statement] = STATE(1329), + [sym_do_statement] = STATE(1329), + [sym_for_statement] = STATE(1329), + [sym_return_statement] = STATE(1329), + [sym_break_statement] = STATE(1329), + [sym_continue_statement] = STATE(1329), + [sym_goto_statement] = STATE(1329), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2945), [sym_comment] = ACTIONS(39), }, [1402] = { - [sym_argument_list] = STATE(453), - [aux_sym_for_statement_repeat1] = STATE(1407), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1080), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1495), - [anon_sym_SLASH_EQ] = ACTIONS(1495), - [anon_sym_PERCENT_EQ] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1495), - [anon_sym_DASH_EQ] = ACTIONS(1495), - [anon_sym_LT_LT_EQ] = ACTIONS(1495), - [anon_sym_GT_GT_EQ] = ACTIONS(1495), - [anon_sym_AMP_EQ] = ACTIONS(1495), - [anon_sym_CARET_EQ] = ACTIONS(1495), - [anon_sym_PIPE_EQ] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1507), - [anon_sym_BANG_EQ] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1511), - [anon_sym_LT_LT] = ACTIONS(1513), - [anon_sym_GT_GT] = ACTIONS(1513), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1108), - [anon_sym_PLUS_PLUS] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1110), - [anon_sym_DASH_GT] = ACTIONS(1110), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3914), [sym_comment] = ACTIONS(39), }, [1403] = { - [sym_compound_statement] = STATE(1360), - [sym_labeled_statement] = STATE(1360), - [sym_expression_statement] = STATE(1360), - [sym_if_statement] = STATE(1360), - [sym_switch_statement] = STATE(1360), - [sym_case_statement] = STATE(1360), - [sym_while_statement] = STATE(1360), - [sym_do_statement] = STATE(1360), - [sym_for_statement] = STATE(1360), - [sym_return_statement] = STATE(1360), - [sym_break_statement] = STATE(1360), - [sym_continue_statement] = STATE(1360), - [sym_goto_statement] = STATE(1360), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3423), + [sym_compound_statement] = STATE(1287), + [sym_labeled_statement] = STATE(1287), + [sym_expression_statement] = STATE(1287), + [sym_if_statement] = STATE(1287), + [sym_switch_statement] = STATE(1287), + [sym_case_statement] = STATE(1287), + [sym_while_statement] = STATE(1287), + [sym_do_statement] = STATE(1287), + [sym_for_statement] = STATE(1287), + [sym_return_statement] = STATE(1287), + [sym_break_statement] = STATE(1287), + [sym_continue_statement] = STATE(1287), + [sym_goto_statement] = STATE(1287), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3343), [sym_comment] = ACTIONS(39), }, [1404] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3909), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3916), [sym_comment] = ACTIONS(39), }, [1405] = { - [sym_compound_statement] = STATE(1345), - [sym_labeled_statement] = STATE(1345), - [sym_expression_statement] = STATE(1345), - [sym_if_statement] = STATE(1345), - [sym_switch_statement] = STATE(1345), - [sym_case_statement] = STATE(1345), - [sym_while_statement] = STATE(1345), - [sym_do_statement] = STATE(1345), - [sym_for_statement] = STATE(1345), - [sym_return_statement] = STATE(1345), - [sym_break_statement] = STATE(1345), - [sym_continue_statement] = STATE(1345), - [sym_goto_statement] = STATE(1345), - [sym__expression] = STATE(246), - [sym_comma_expression] = STATE(247), - [sym_conditional_expression] = STATE(246), - [sym_assignment_expression] = STATE(246), - [sym_pointer_expression] = STATE(246), - [sym_logical_expression] = STATE(246), - [sym_bitwise_expression] = STATE(246), - [sym_equality_expression] = STATE(246), - [sym_relational_expression] = STATE(246), - [sym_shift_expression] = STATE(246), - [sym_math_expression] = STATE(246), - [sym_cast_expression] = STATE(246), - [sym_sizeof_expression] = STATE(246), - [sym_subscript_expression] = STATE(246), - [sym_call_expression] = STATE(246), - [sym_field_expression] = STATE(246), - [sym_compound_literal_expression] = STATE(246), - [sym_parenthesized_expression] = STATE(246), - [sym_concatenated_string] = STATE(246), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(237), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_case] = ACTIONS(3314), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3318), - [anon_sym_do] = ACTIONS(552), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(556), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(560), - [anon_sym_goto] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(574), - [sym_char_literal] = ACTIONS(574), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(578), - [sym_false] = ACTIONS(578), - [sym_null] = ACTIONS(578), - [sym_identifier] = ACTIONS(3322), + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1417), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3916), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), [sym_comment] = ACTIONS(39), }, [1406] = { - [sym_compound_statement] = STATE(1375), - [sym_labeled_statement] = STATE(1375), - [sym_expression_statement] = STATE(1375), - [sym_if_statement] = STATE(1375), - [sym_switch_statement] = STATE(1375), - [sym_case_statement] = STATE(1375), - [sym_while_statement] = STATE(1375), - [sym_do_statement] = STATE(1375), - [sym_for_statement] = STATE(1375), - [sym_return_statement] = STATE(1375), - [sym_break_statement] = STATE(1375), - [sym_continue_statement] = STATE(1375), - [sym_goto_statement] = STATE(1375), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3535), + [sym_compound_statement] = STATE(1338), + [sym_labeled_statement] = STATE(1338), + [sym_expression_statement] = STATE(1338), + [sym_if_statement] = STATE(1338), + [sym_switch_statement] = STATE(1338), + [sym_case_statement] = STATE(1338), + [sym_while_statement] = STATE(1338), + [sym_do_statement] = STATE(1338), + [sym_for_statement] = STATE(1338), + [sym_return_statement] = STATE(1338), + [sym_break_statement] = STATE(1338), + [sym_continue_statement] = STATE(1338), + [sym_goto_statement] = STATE(1338), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3556), [sym_comment] = ACTIONS(39), }, [1407] = { - [aux_sym_for_statement_repeat1] = STATE(1061), - [anon_sym_COMMA] = ACTIONS(2543), - [anon_sym_RPAREN] = ACTIONS(3911), + [sym_compound_statement] = STATE(1339), + [sym_labeled_statement] = STATE(1339), + [sym_expression_statement] = STATE(1339), + [sym_if_statement] = STATE(1339), + [sym_switch_statement] = STATE(1339), + [sym_case_statement] = STATE(1339), + [sym_while_statement] = STATE(1339), + [sym_do_statement] = STATE(1339), + [sym_for_statement] = STATE(1339), + [sym_return_statement] = STATE(1339), + [sym_break_statement] = STATE(1339), + [sym_continue_statement] = STATE(1339), + [sym_goto_statement] = STATE(1339), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3556), [sym_comment] = ACTIONS(39), }, [1408] = { - [sym_compound_statement] = STATE(1382), - [sym_labeled_statement] = STATE(1382), - [sym_expression_statement] = STATE(1382), - [sym_if_statement] = STATE(1382), - [sym_switch_statement] = STATE(1382), - [sym_case_statement] = STATE(1382), - [sym_while_statement] = STATE(1382), - [sym_do_statement] = STATE(1382), - [sym_for_statement] = STATE(1382), - [sym_return_statement] = STATE(1382), - [sym_break_statement] = STATE(1382), - [sym_continue_statement] = STATE(1382), - [sym_goto_statement] = STATE(1382), - [sym__expression] = STATE(644), - [sym_comma_expression] = STATE(645), - [sym_conditional_expression] = STATE(644), - [sym_assignment_expression] = STATE(644), - [sym_pointer_expression] = STATE(644), - [sym_logical_expression] = STATE(644), - [sym_bitwise_expression] = STATE(644), - [sym_equality_expression] = STATE(644), - [sym_relational_expression] = STATE(644), - [sym_shift_expression] = STATE(644), - [sym_math_expression] = STATE(644), - [sym_cast_expression] = STATE(644), - [sym_sizeof_expression] = STATE(644), - [sym_subscript_expression] = STATE(644), - [sym_call_expression] = STATE(644), - [sym_field_expression] = STATE(644), - [sym_compound_literal_expression] = STATE(644), - [sym_parenthesized_expression] = STATE(644), - [sym_concatenated_string] = STATE(644), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(692), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1549), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_goto] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(1555), - [sym_char_literal] = ACTIONS(1555), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(1557), - [sym_false] = ACTIONS(1557), - [sym_null] = ACTIONS(1557), - [sym_identifier] = ACTIONS(3423), + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3918), [sym_comment] = ACTIONS(39), }, [1409] = { + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1419), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3918), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [1410] = { + [sym__expression] = STATE(1420), + [sym_conditional_expression] = STATE(1420), + [sym_assignment_expression] = STATE(1420), + [sym_pointer_expression] = STATE(1420), + [sym_logical_expression] = STATE(1420), + [sym_bitwise_expression] = STATE(1420), + [sym_equality_expression] = STATE(1420), + [sym_relational_expression] = STATE(1420), + [sym_shift_expression] = STATE(1420), + [sym_math_expression] = STATE(1420), + [sym_cast_expression] = STATE(1420), + [sym_sizeof_expression] = STATE(1420), + [sym_subscript_expression] = STATE(1420), + [sym_call_expression] = STATE(1420), + [sym_field_expression] = STATE(1420), + [sym_compound_literal_expression] = STATE(1420), + [sym_parenthesized_expression] = STATE(1420), + [sym_concatenated_string] = STATE(1420), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(3918), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_TILDE] = ACTIONS(948), + [anon_sym_PLUS] = ACTIONS(950), + [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DASH_DASH] = ACTIONS(952), + [anon_sym_PLUS_PLUS] = ACTIONS(952), + [anon_sym_sizeof] = ACTIONS(954), + [sym_number_literal] = ACTIONS(3920), + [sym_char_literal] = ACTIONS(3920), + [sym_string_literal] = ACTIONS(958), + [sym_true] = ACTIONS(3922), + [sym_false] = ACTIONS(3922), + [sym_null] = ACTIONS(3922), + [sym_identifier] = ACTIONS(3922), + [sym_comment] = ACTIONS(39), + }, + [1411] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3862), + [anon_sym_LPAREN] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3862), + [sym_preproc_directive] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym_typedef] = ACTIONS(3862), + [anon_sym_extern] = ACTIONS(3862), + [anon_sym_LBRACE] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3864), + [anon_sym_static] = ACTIONS(3862), + [anon_sym_auto] = ACTIONS(3862), + [anon_sym_register] = ACTIONS(3862), + [anon_sym_inline] = ACTIONS(3862), + [anon_sym_const] = ACTIONS(3862), + [anon_sym_restrict] = ACTIONS(3862), + [anon_sym_volatile] = ACTIONS(3862), + [anon_sym__Atomic] = ACTIONS(3862), + [anon_sym_unsigned] = ACTIONS(3862), + [anon_sym_long] = ACTIONS(3862), + [anon_sym_short] = ACTIONS(3862), + [sym_primitive_type] = ACTIONS(3862), + [anon_sym_enum] = ACTIONS(3862), + [anon_sym_struct] = ACTIONS(3862), + [anon_sym_union] = ACTIONS(3862), + [anon_sym_if] = ACTIONS(3862), + [anon_sym_else] = ACTIONS(3862), + [anon_sym_switch] = ACTIONS(3862), + [anon_sym_case] = ACTIONS(3862), + [anon_sym_default] = ACTIONS(3862), + [anon_sym_while] = ACTIONS(3862), + [anon_sym_do] = ACTIONS(3862), + [anon_sym_for] = ACTIONS(3862), + [anon_sym_return] = ACTIONS(3862), + [anon_sym_break] = ACTIONS(3862), + [anon_sym_continue] = ACTIONS(3862), + [anon_sym_goto] = ACTIONS(3862), + [anon_sym_AMP] = ACTIONS(3864), + [anon_sym_BANG] = ACTIONS(3864), + [anon_sym_TILDE] = ACTIONS(3864), + [anon_sym_PLUS] = ACTIONS(3862), + [anon_sym_DASH] = ACTIONS(3862), + [anon_sym_DASH_DASH] = ACTIONS(3864), + [anon_sym_PLUS_PLUS] = ACTIONS(3864), + [anon_sym_sizeof] = ACTIONS(3862), + [sym_number_literal] = ACTIONS(3864), + [sym_char_literal] = ACTIONS(3864), + [sym_string_literal] = ACTIONS(3864), + [sym_true] = ACTIONS(3862), + [sym_false] = ACTIONS(3862), + [sym_null] = ACTIONS(3862), + [sym_identifier] = ACTIONS(3862), + [sym_comment] = ACTIONS(39), + }, + [1412] = { + [sym_compound_statement] = STATE(1349), + [sym_labeled_statement] = STATE(1349), + [sym_expression_statement] = STATE(1349), + [sym_if_statement] = STATE(1349), + [sym_switch_statement] = STATE(1349), + [sym_case_statement] = STATE(1349), + [sym_while_statement] = STATE(1349), + [sym_do_statement] = STATE(1349), + [sym_for_statement] = STATE(1349), + [sym_return_statement] = STATE(1349), + [sym_break_statement] = STATE(1349), + [sym_continue_statement] = STATE(1349), + [sym_goto_statement] = STATE(1349), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3444), + [sym_comment] = ACTIONS(39), + }, + [1413] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3924), + [sym_comment] = ACTIONS(39), + }, + [1414] = { + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1422), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3924), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [1415] = { + [sym_compound_statement] = STATE(1363), + [sym_labeled_statement] = STATE(1363), + [sym_expression_statement] = STATE(1363), + [sym_if_statement] = STATE(1363), + [sym_switch_statement] = STATE(1363), + [sym_case_statement] = STATE(1363), + [sym_while_statement] = STATE(1363), + [sym_do_statement] = STATE(1363), + [sym_for_statement] = STATE(1363), + [sym_return_statement] = STATE(1363), + [sym_break_statement] = STATE(1363), + [sym_continue_statement] = STATE(1363), + [sym_goto_statement] = STATE(1363), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_switch] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(2945), + [sym_comment] = ACTIONS(39), + }, + [1416] = { + [sym_compound_statement] = STATE(1329), + [sym_labeled_statement] = STATE(1329), + [sym_expression_statement] = STATE(1329), + [sym_if_statement] = STATE(1329), + [sym_switch_statement] = STATE(1329), + [sym_case_statement] = STATE(1329), + [sym_while_statement] = STATE(1329), + [sym_do_statement] = STATE(1329), + [sym_for_statement] = STATE(1329), + [sym_return_statement] = STATE(1329), + [sym_break_statement] = STATE(1329), + [sym_continue_statement] = STATE(1329), + [sym_goto_statement] = STATE(1329), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3343), + [sym_comment] = ACTIONS(39), + }, + [1417] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3926), + [sym_comment] = ACTIONS(39), + }, + [1418] = { + [sym_compound_statement] = STATE(1370), + [sym_labeled_statement] = STATE(1370), + [sym_expression_statement] = STATE(1370), + [sym_if_statement] = STATE(1370), + [sym_switch_statement] = STATE(1370), + [sym_case_statement] = STATE(1370), + [sym_while_statement] = STATE(1370), + [sym_do_statement] = STATE(1370), + [sym_for_statement] = STATE(1370), + [sym_return_statement] = STATE(1370), + [sym_break_statement] = STATE(1370), + [sym_continue_statement] = STATE(1370), + [sym_goto_statement] = STATE(1370), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3556), + [sym_comment] = ACTIONS(39), + }, + [1419] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3928), + [sym_comment] = ACTIONS(39), + }, + [1420] = { + [sym_argument_list] = STATE(463), + [aux_sym_for_statement_repeat1] = STATE(1425), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1509), + [anon_sym_SLASH_EQ] = ACTIONS(1509), + [anon_sym_PERCENT_EQ] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1509), + [anon_sym_DASH_EQ] = ACTIONS(1509), + [anon_sym_LT_LT_EQ] = ACTIONS(1509), + [anon_sym_GT_GT_EQ] = ACTIONS(1509), + [anon_sym_AMP_EQ] = ACTIONS(1509), + [anon_sym_CARET_EQ] = ACTIONS(1509), + [anon_sym_PIPE_EQ] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_EQ_EQ] = ACTIONS(1521), + [anon_sym_BANG_EQ] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1120), + [anon_sym_PLUS_PLUS] = ACTIONS(1120), + [anon_sym_DOT] = ACTIONS(1122), + [anon_sym_DASH_GT] = ACTIONS(1122), + [sym_comment] = ACTIONS(39), + }, + [1421] = { + [sym_compound_statement] = STATE(1378), + [sym_labeled_statement] = STATE(1378), + [sym_expression_statement] = STATE(1378), + [sym_if_statement] = STATE(1378), + [sym_switch_statement] = STATE(1378), + [sym_case_statement] = STATE(1378), + [sym_while_statement] = STATE(1378), + [sym_do_statement] = STATE(1378), + [sym_for_statement] = STATE(1378), + [sym_return_statement] = STATE(1378), + [sym_break_statement] = STATE(1378), + [sym_continue_statement] = STATE(1378), + [sym_goto_statement] = STATE(1378), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3444), + [sym_comment] = ACTIONS(39), + }, + [1422] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3930), + [sym_comment] = ACTIONS(39), + }, + [1423] = { + [sym_compound_statement] = STATE(1363), + [sym_labeled_statement] = STATE(1363), + [sym_expression_statement] = STATE(1363), + [sym_if_statement] = STATE(1363), + [sym_switch_statement] = STATE(1363), + [sym_case_statement] = STATE(1363), + [sym_while_statement] = STATE(1363), + [sym_do_statement] = STATE(1363), + [sym_for_statement] = STATE(1363), + [sym_return_statement] = STATE(1363), + [sym_break_statement] = STATE(1363), + [sym_continue_statement] = STATE(1363), + [sym_goto_statement] = STATE(1363), + [sym__expression] = STATE(251), + [sym_comma_expression] = STATE(252), + [sym_conditional_expression] = STATE(251), + [sym_assignment_expression] = STATE(251), + [sym_pointer_expression] = STATE(251), + [sym_logical_expression] = STATE(251), + [sym_bitwise_expression] = STATE(251), + [sym_equality_expression] = STATE(251), + [sym_relational_expression] = STATE(251), + [sym_shift_expression] = STATE(251), + [sym_math_expression] = STATE(251), + [sym_cast_expression] = STATE(251), + [sym_sizeof_expression] = STATE(251), + [sym_subscript_expression] = STATE(251), + [sym_call_expression] = STATE(251), + [sym_field_expression] = STATE(251), + [sym_compound_literal_expression] = STATE(251), + [sym_parenthesized_expression] = STATE(251), + [sym_concatenated_string] = STATE(251), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3337), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(556), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(560), + [anon_sym_break] = ACTIONS(562), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_goto] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(582), + [sym_false] = ACTIONS(582), + [sym_null] = ACTIONS(582), + [sym_identifier] = ACTIONS(3343), + [sym_comment] = ACTIONS(39), + }, + [1424] = { [sym_compound_statement] = STATE(1393), [sym_labeled_statement] = STATE(1393), [sym_expression_statement] = STATE(1393), @@ -56934,55 +57144,191 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(1393), [sym_continue_statement] = STATE(1393), [sym_goto_statement] = STATE(1393), - [sym__expression] = STATE(853), - [sym_comma_expression] = STATE(854), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3525), - [anon_sym_case] = ACTIONS(3527), - [anon_sym_default] = ACTIONS(3529), - [anon_sym_while] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(3533), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_goto] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_DASH_DASH] = ACTIONS(570), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_sizeof] = ACTIONS(572), - [sym_number_literal] = ACTIONS(2326), - [sym_char_literal] = ACTIONS(2326), - [sym_string_literal] = ACTIONS(576), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_identifier] = ACTIONS(3535), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3556), + [sym_comment] = ACTIONS(39), + }, + [1425] = { + [aux_sym_for_statement_repeat1] = STATE(1079), + [anon_sym_COMMA] = ACTIONS(2564), + [anon_sym_RPAREN] = ACTIONS(3932), + [sym_comment] = ACTIONS(39), + }, + [1426] = { + [sym_compound_statement] = STATE(1400), + [sym_labeled_statement] = STATE(1400), + [sym_expression_statement] = STATE(1400), + [sym_if_statement] = STATE(1400), + [sym_switch_statement] = STATE(1400), + [sym_case_statement] = STATE(1400), + [sym_while_statement] = STATE(1400), + [sym_do_statement] = STATE(1400), + [sym_for_statement] = STATE(1400), + [sym_return_statement] = STATE(1400), + [sym_break_statement] = STATE(1400), + [sym_continue_statement] = STATE(1400), + [sym_goto_statement] = STATE(1400), + [sym__expression] = STATE(659), + [sym_comma_expression] = STATE(660), + [sym_conditional_expression] = STATE(659), + [sym_assignment_expression] = STATE(659), + [sym_pointer_expression] = STATE(659), + [sym_logical_expression] = STATE(659), + [sym_bitwise_expression] = STATE(659), + [sym_equality_expression] = STATE(659), + [sym_relational_expression] = STATE(659), + [sym_shift_expression] = STATE(659), + [sym_math_expression] = STATE(659), + [sym_cast_expression] = STATE(659), + [sym_sizeof_expression] = STATE(659), + [sym_subscript_expression] = STATE(659), + [sym_call_expression] = STATE(659), + [sym_field_expression] = STATE(659), + [sym_compound_literal_expression] = STATE(659), + [sym_parenthesized_expression] = STATE(659), + [sym_concatenated_string] = STATE(659), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3436), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1563), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_goto] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(1571), + [sym_false] = ACTIONS(1571), + [sym_null] = ACTIONS(1571), + [sym_identifier] = ACTIONS(3444), + [sym_comment] = ACTIONS(39), + }, + [1427] = { + [sym_compound_statement] = STATE(1411), + [sym_labeled_statement] = STATE(1411), + [sym_expression_statement] = STATE(1411), + [sym_if_statement] = STATE(1411), + [sym_switch_statement] = STATE(1411), + [sym_case_statement] = STATE(1411), + [sym_while_statement] = STATE(1411), + [sym_do_statement] = STATE(1411), + [sym_for_statement] = STATE(1411), + [sym_return_statement] = STATE(1411), + [sym_break_statement] = STATE(1411), + [sym_continue_statement] = STATE(1411), + [sym_goto_statement] = STATE(1411), + [sym__expression] = STATE(870), + [sym_comma_expression] = STATE(871), + [sym_conditional_expression] = STATE(870), + [sym_assignment_expression] = STATE(870), + [sym_pointer_expression] = STATE(870), + [sym_logical_expression] = STATE(870), + [sym_bitwise_expression] = STATE(870), + [sym_equality_expression] = STATE(870), + [sym_relational_expression] = STATE(870), + [sym_shift_expression] = STATE(870), + [sym_math_expression] = STATE(870), + [sym_cast_expression] = STATE(870), + [sym_sizeof_expression] = STATE(870), + [sym_subscript_expression] = STATE(870), + [sym_call_expression] = STATE(870), + [sym_field_expression] = STATE(870), + [sym_compound_literal_expression] = STATE(870), + [sym_parenthesized_expression] = STATE(870), + [sym_concatenated_string] = STATE(870), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(574), + [anon_sym_PLUS_PLUS] = ACTIONS(574), + [anon_sym_sizeof] = ACTIONS(576), + [sym_number_literal] = ACTIONS(2347), + [sym_char_literal] = ACTIONS(2347), + [sym_string_literal] = ACTIONS(580), + [sym_true] = ACTIONS(2349), + [sym_false] = ACTIONS(2349), + [sym_null] = ACTIONS(2349), + [sym_identifier] = ACTIONS(3556), [sym_comment] = ACTIONS(39), }, }; @@ -57102,13 +57448,13 @@ static TSParseActionEntry ts_parse_actions[] = { [223] = {.count = 1, .reusable = true}, SHIFT(118), [225] = {.count = 1, .reusable = true}, REDUCE(sym__empty_declaration, 2), [227] = {.count = 1, .reusable = false}, REDUCE(sym__empty_declaration, 2), - [229] = {.count = 1, .reusable = true}, SHIFT(119), - [231] = {.count = 1, .reusable = true}, SHIFT(120), - [233] = {.count = 1, .reusable = true}, SHIFT(121), - [235] = {.count = 1, .reusable = true}, SHIFT(122), - [237] = {.count = 1, .reusable = true}, SHIFT(123), - [239] = {.count = 1, .reusable = true}, SHIFT(124), - [241] = {.count = 1, .reusable = true}, SHIFT(125), + [229] = {.count = 1, .reusable = false}, SHIFT(119), + [231] = {.count = 1, .reusable = true}, SHIFT(121), + [233] = {.count = 1, .reusable = true}, SHIFT(122), + [235] = {.count = 1, .reusable = true}, SHIFT(123), + [237] = {.count = 1, .reusable = true}, SHIFT(124), + [239] = {.count = 1, .reusable = true}, SHIFT(125), + [241] = {.count = 1, .reusable = true}, SHIFT(126), [243] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 2), [245] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 2), [247] = {.count = 1, .reusable = true}, REDUCE(aux_sym_translation_unit_repeat1, 2), @@ -57138,1732 +57484,1742 @@ static TSParseActionEntry ts_parse_actions[] = { [313] = {.count = 1, .reusable = true}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), [315] = {.count = 1, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), [317] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(53), - [320] = {.count = 1, .reusable = false}, SHIFT(131), + [320] = {.count = 1, .reusable = false}, SHIFT(132), [322] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 3, .alias_sequence_id = 4), [324] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 3, .alias_sequence_id = 4), - [326] = {.count = 1, .reusable = true}, SHIFT(132), - [328] = {.count = 1, .reusable = true}, SHIFT(133), - [330] = {.count = 1, .reusable = false}, SHIFT(134), - [332] = {.count = 1, .reusable = false}, SHIFT(135), - [334] = {.count = 1, .reusable = true}, SHIFT(136), - [336] = {.count = 1, .reusable = true}, SHIFT(137), - [338] = {.count = 1, .reusable = false}, SHIFT(138), + [326] = {.count = 1, .reusable = true}, SHIFT(133), + [328] = {.count = 1, .reusable = true}, SHIFT(134), + [330] = {.count = 1, .reusable = false}, SHIFT(135), + [332] = {.count = 1, .reusable = false}, SHIFT(136), + [334] = {.count = 1, .reusable = true}, SHIFT(137), + [336] = {.count = 1, .reusable = true}, SHIFT(138), + [338] = {.count = 1, .reusable = false}, SHIFT(139), [340] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 3, .alias_sequence_id = 5), [342] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 3, .alias_sequence_id = 5), - [344] = {.count = 1, .reusable = true}, SHIFT(139), - [346] = {.count = 1, .reusable = true}, SHIFT(140), - [348] = {.count = 1, .reusable = false}, SHIFT(141), - [350] = {.count = 1, .reusable = false}, SHIFT(142), - [352] = {.count = 1, .reusable = false}, SHIFT(143), + [344] = {.count = 1, .reusable = true}, SHIFT(140), + [346] = {.count = 1, .reusable = true}, SHIFT(141), + [348] = {.count = 1, .reusable = false}, SHIFT(142), + [350] = {.count = 1, .reusable = false}, SHIFT(143), + [352] = {.count = 1, .reusable = false}, SHIFT(144), [354] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 1, .alias_sequence_id = 6), - [356] = {.count = 1, .reusable = false}, SHIFT(144), - [358] = {.count = 1, .reusable = false}, SHIFT(145), - [360] = {.count = 1, .reusable = false}, SHIFT(146), - [362] = {.count = 1, .reusable = false}, SHIFT(147), - [364] = {.count = 1, .reusable = false}, SHIFT(148), - [366] = {.count = 1, .reusable = false}, SHIFT(151), - [368] = {.count = 1, .reusable = false}, SHIFT(152), - [370] = {.count = 1, .reusable = false}, SHIFT(153), - [372] = {.count = 1, .reusable = false}, SHIFT(154), - [374] = {.count = 1, .reusable = true}, SHIFT(156), - [376] = {.count = 1, .reusable = true}, SHIFT(157), - [378] = {.count = 1, .reusable = true}, SHIFT(158), - [380] = {.count = 1, .reusable = true}, SHIFT(159), - [382] = {.count = 1, .reusable = false}, SHIFT(157), + [356] = {.count = 1, .reusable = false}, SHIFT(145), + [358] = {.count = 1, .reusable = false}, SHIFT(146), + [360] = {.count = 1, .reusable = false}, SHIFT(147), + [362] = {.count = 1, .reusable = false}, SHIFT(148), + [364] = {.count = 1, .reusable = false}, SHIFT(149), + [366] = {.count = 1, .reusable = false}, SHIFT(152), + [368] = {.count = 1, .reusable = false}, SHIFT(153), + [370] = {.count = 1, .reusable = false}, SHIFT(154), + [372] = {.count = 1, .reusable = false}, SHIFT(155), + [374] = {.count = 1, .reusable = true}, SHIFT(157), + [376] = {.count = 1, .reusable = true}, SHIFT(158), + [378] = {.count = 1, .reusable = true}, SHIFT(159), + [380] = {.count = 1, .reusable = true}, SHIFT(160), + [382] = {.count = 1, .reusable = false}, SHIFT(158), [384] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 7), [386] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 7), - [388] = {.count = 1, .reusable = true}, SHIFT(163), - [390] = {.count = 1, .reusable = false}, SHIFT(163), + [388] = {.count = 1, .reusable = true}, SHIFT(164), + [390] = {.count = 1, .reusable = false}, SHIFT(164), [392] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 8), [394] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 3, .alias_sequence_id = 8), - [396] = {.count = 1, .reusable = true}, SHIFT(165), - [398] = {.count = 1, .reusable = false}, SHIFT(165), - [400] = {.count = 1, .reusable = true}, SHIFT(167), - [402] = {.count = 1, .reusable = true}, SHIFT(168), - [404] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), - [406] = {.count = 1, .reusable = true}, SHIFT(171), - [408] = {.count = 1, .reusable = true}, SHIFT(172), - [410] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 9), - [412] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 10), - [414] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 11), - [416] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(11), - [419] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), - [421] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(88), - [424] = {.count = 1, .reusable = true}, SHIFT(175), - [426] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), - [428] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), - [430] = {.count = 1, .reusable = false}, SHIFT(178), - [432] = {.count = 1, .reusable = false}, SHIFT(179), - [434] = {.count = 1, .reusable = true}, SHIFT(180), - [436] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), - [438] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), - [440] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), - [442] = {.count = 1, .reusable = true}, SHIFT(181), - [444] = {.count = 1, .reusable = true}, SHIFT(182), - [446] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), - [448] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), - [450] = {.count = 1, .reusable = false}, SHIFT(184), - [452] = {.count = 1, .reusable = true}, SHIFT(185), - [454] = {.count = 1, .reusable = true}, SHIFT(186), - [456] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), - [458] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), - [460] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), - [462] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), - [464] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), - [466] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), - [468] = {.count = 1, .reusable = true}, SHIFT(187), - [470] = {.count = 1, .reusable = true}, SHIFT(188), - [472] = {.count = 1, .reusable = true}, SHIFT(189), - [474] = {.count = 1, .reusable = true}, SHIFT(190), - [476] = {.count = 1, .reusable = true}, SHIFT(191), - [478] = {.count = 1, .reusable = true}, SHIFT(197), - [480] = {.count = 1, .reusable = false}, SHIFT(199), - [482] = {.count = 1, .reusable = false}, SHIFT(200), - [484] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), - [486] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), - [488] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), - [490] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), - [492] = {.count = 1, .reusable = true}, SHIFT(201), - [494] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), - [496] = {.count = 1, .reusable = true}, SHIFT(202), - [498] = {.count = 1, .reusable = true}, SHIFT(203), - [500] = {.count = 1, .reusable = true}, SHIFT(206), - [502] = {.count = 1, .reusable = false}, SHIFT(207), - [504] = {.count = 1, .reusable = false}, SHIFT(208), - [506] = {.count = 1, .reusable = false}, SHIFT(52), - [508] = {.count = 1, .reusable = true}, SHIFT(209), - [510] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2), - [512] = {.count = 1, .reusable = true}, SHIFT(210), - [514] = {.count = 1, .reusable = true}, SHIFT(211), - [516] = {.count = 1, .reusable = false}, SHIFT(215), - [518] = {.count = 1, .reusable = false}, SHIFT(213), - [520] = {.count = 1, .reusable = true}, SHIFT(216), - [522] = {.count = 1, .reusable = true}, SHIFT(217), - [524] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), - [526] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), - [528] = {.count = 1, .reusable = true}, SHIFT(219), - [530] = {.count = 1, .reusable = false}, SHIFT(220), - [532] = {.count = 1, .reusable = false}, SHIFT(221), - [534] = {.count = 1, .reusable = false}, SHIFT(222), - [536] = {.count = 1, .reusable = true}, SHIFT(223), - [538] = {.count = 1, .reusable = true}, SHIFT(224), - [540] = {.count = 1, .reusable = true}, SHIFT(225), - [542] = {.count = 1, .reusable = false}, SHIFT(226), - [544] = {.count = 1, .reusable = false}, SHIFT(227), - [546] = {.count = 1, .reusable = false}, SHIFT(228), - [548] = {.count = 1, .reusable = false}, SHIFT(229), - [550] = {.count = 1, .reusable = false}, SHIFT(230), - [552] = {.count = 1, .reusable = false}, SHIFT(231), - [554] = {.count = 1, .reusable = false}, SHIFT(232), - [556] = {.count = 1, .reusable = false}, SHIFT(233), - [558] = {.count = 1, .reusable = false}, SHIFT(234), - [560] = {.count = 1, .reusable = false}, SHIFT(235), - [562] = {.count = 1, .reusable = false}, SHIFT(236), - [564] = {.count = 1, .reusable = true}, SHIFT(237), - [566] = {.count = 1, .reusable = true}, SHIFT(238), - [568] = {.count = 1, .reusable = false}, SHIFT(239), - [570] = {.count = 1, .reusable = true}, SHIFT(239), - [572] = {.count = 1, .reusable = false}, SHIFT(240), - [574] = {.count = 1, .reusable = true}, SHIFT(246), - [576] = {.count = 1, .reusable = true}, SHIFT(241), - [578] = {.count = 1, .reusable = false}, SHIFT(246), - [580] = {.count = 1, .reusable = false}, SHIFT(242), - [582] = {.count = 1, .reusable = true}, SHIFT(249), - [584] = {.count = 1, .reusable = true}, SHIFT(250), - [586] = {.count = 1, .reusable = true}, SHIFT(251), - [588] = {.count = 1, .reusable = false}, SHIFT(262), - [590] = {.count = 1, .reusable = false}, SHIFT(259), - [592] = {.count = 1, .reusable = true}, SHIFT(252), - [594] = {.count = 1, .reusable = true}, SHIFT(253), - [596] = {.count = 1, .reusable = false}, SHIFT(254), - [598] = {.count = 1, .reusable = true}, SHIFT(254), - [600] = {.count = 1, .reusable = false}, SHIFT(255), - [602] = {.count = 1, .reusable = true}, SHIFT(260), - [604] = {.count = 1, .reusable = true}, SHIFT(256), - [606] = {.count = 1, .reusable = false}, SHIFT(260), - [608] = {.count = 1, .reusable = false}, SHIFT(257), - [610] = {.count = 1, .reusable = true}, SHIFT(263), - [612] = {.count = 1, .reusable = true}, SHIFT(264), - [614] = {.count = 1, .reusable = false}, SHIFT(264), - [616] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), - [618] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), - [620] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), - [622] = {.count = 1, .reusable = true}, SHIFT(266), - [624] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [626] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), - [628] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), - [630] = {.count = 1, .reusable = true}, SHIFT(268), - [632] = {.count = 1, .reusable = true}, SHIFT(269), - [634] = {.count = 1, .reusable = true}, SHIFT(270), - [636] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [638] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), - [640] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), - [642] = {.count = 1, .reusable = true}, SHIFT(272), - [644] = {.count = 1, .reusable = false}, SHIFT(273), - [646] = {.count = 1, .reusable = false}, SHIFT(274), - [648] = {.count = 1, .reusable = false}, SHIFT(276), + [396] = {.count = 1, .reusable = true}, SHIFT(166), + [398] = {.count = 1, .reusable = false}, SHIFT(166), + [400] = {.count = 1, .reusable = true}, SHIFT(168), + [402] = {.count = 1, .reusable = true}, SHIFT(169), + [404] = {.count = 1, .reusable = false}, SHIFT(81), + [406] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 1), + [408] = {.count = 1, .reusable = true}, SHIFT(173), + [410] = {.count = 1, .reusable = true}, SHIFT(174), + [412] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 9), + [414] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 10), + [416] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 1, .alias_sequence_id = 11), + [418] = {.count = 2, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(11), + [421] = {.count = 1, .reusable = false}, REDUCE(aux_sym_type_definition_repeat1, 2), + [423] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(88), + [426] = {.count = 1, .reusable = true}, SHIFT(177), + [428] = {.count = 1, .reusable = true}, REDUCE(sym_linkage_specification, 3), + [430] = {.count = 1, .reusable = false}, REDUCE(sym_linkage_specification, 3), + [432] = {.count = 1, .reusable = false}, SHIFT(180), + [434] = {.count = 1, .reusable = false}, SHIFT(181), + [436] = {.count = 1, .reusable = true}, SHIFT(182), + [438] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 2), + [440] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 2), + [442] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 1), + [444] = {.count = 1, .reusable = true}, SHIFT(183), + [446] = {.count = 1, .reusable = true}, SHIFT(184), + [448] = {.count = 1, .reusable = true}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), + [450] = {.count = 1, .reusable = false}, REDUCE(sym_enum_specifier, 3, .alias_sequence_id = 3), + [452] = {.count = 1, .reusable = false}, SHIFT(186), + [454] = {.count = 1, .reusable = true}, SHIFT(187), + [456] = {.count = 1, .reusable = true}, SHIFT(188), + [458] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 2), + [460] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 2), + [462] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), + [464] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 12), + [466] = {.count = 1, .reusable = false}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), + [468] = {.count = 1, .reusable = true}, REDUCE(sym__field_declaration_list_item, 1, .alias_sequence_id = 13), + [470] = {.count = 1, .reusable = true}, SHIFT(189), + [472] = {.count = 1, .reusable = true}, SHIFT(190), + [474] = {.count = 1, .reusable = true}, SHIFT(191), + [476] = {.count = 1, .reusable = true}, SHIFT(192), + [478] = {.count = 1, .reusable = true}, SHIFT(193), + [480] = {.count = 1, .reusable = true}, SHIFT(199), + [482] = {.count = 1, .reusable = false}, SHIFT(201), + [484] = {.count = 1, .reusable = false}, SHIFT(202), + [486] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), + [488] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 3, .alias_sequence_id = 3), + [490] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), + [492] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 3, .alias_sequence_id = 3), + [494] = {.count = 1, .reusable = true}, SHIFT(203), + [496] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 1), + [498] = {.count = 1, .reusable = true}, SHIFT(204), + [500] = {.count = 1, .reusable = true}, SHIFT(205), + [502] = {.count = 1, .reusable = true}, SHIFT(208), + [504] = {.count = 1, .reusable = false}, SHIFT(209), + [506] = {.count = 1, .reusable = false}, SHIFT(210), + [508] = {.count = 1, .reusable = false}, SHIFT(52), + [510] = {.count = 1, .reusable = true}, SHIFT(212), + [512] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 2), + [514] = {.count = 1, .reusable = false}, SHIFT(213), + [516] = {.count = 1, .reusable = true}, SHIFT(215), + [518] = {.count = 1, .reusable = true}, SHIFT(216), + [520] = {.count = 1, .reusable = false}, SHIFT(220), + [522] = {.count = 1, .reusable = false}, SHIFT(218), + [524] = {.count = 1, .reusable = true}, SHIFT(221), + [526] = {.count = 1, .reusable = true}, SHIFT(222), + [528] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 3), + [530] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 3), + [532] = {.count = 1, .reusable = true}, SHIFT(224), + [534] = {.count = 1, .reusable = false}, SHIFT(225), + [536] = {.count = 1, .reusable = false}, SHIFT(226), + [538] = {.count = 1, .reusable = false}, SHIFT(227), + [540] = {.count = 1, .reusable = true}, SHIFT(228), + [542] = {.count = 1, .reusable = true}, SHIFT(229), + [544] = {.count = 1, .reusable = true}, SHIFT(230), + [546] = {.count = 1, .reusable = false}, SHIFT(231), + [548] = {.count = 1, .reusable = false}, SHIFT(232), + [550] = {.count = 1, .reusable = false}, SHIFT(233), + [552] = {.count = 1, .reusable = false}, SHIFT(234), + [554] = {.count = 1, .reusable = false}, SHIFT(235), + [556] = {.count = 1, .reusable = false}, SHIFT(236), + [558] = {.count = 1, .reusable = false}, SHIFT(237), + [560] = {.count = 1, .reusable = false}, SHIFT(238), + [562] = {.count = 1, .reusable = false}, SHIFT(239), + [564] = {.count = 1, .reusable = false}, SHIFT(240), + [566] = {.count = 1, .reusable = false}, SHIFT(241), + [568] = {.count = 1, .reusable = true}, SHIFT(242), + [570] = {.count = 1, .reusable = true}, SHIFT(243), + [572] = {.count = 1, .reusable = false}, SHIFT(244), + [574] = {.count = 1, .reusable = true}, SHIFT(244), + [576] = {.count = 1, .reusable = false}, SHIFT(245), + [578] = {.count = 1, .reusable = true}, SHIFT(251), + [580] = {.count = 1, .reusable = true}, SHIFT(246), + [582] = {.count = 1, .reusable = false}, SHIFT(251), + [584] = {.count = 1, .reusable = false}, SHIFT(247), + [586] = {.count = 1, .reusable = true}, SHIFT(254), + [588] = {.count = 1, .reusable = true}, SHIFT(255), + [590] = {.count = 1, .reusable = true}, SHIFT(256), + [592] = {.count = 1, .reusable = false}, SHIFT(267), + [594] = {.count = 1, .reusable = false}, SHIFT(264), + [596] = {.count = 1, .reusable = true}, SHIFT(257), + [598] = {.count = 1, .reusable = true}, SHIFT(258), + [600] = {.count = 1, .reusable = false}, SHIFT(259), + [602] = {.count = 1, .reusable = true}, SHIFT(259), + [604] = {.count = 1, .reusable = false}, SHIFT(260), + [606] = {.count = 1, .reusable = true}, SHIFT(265), + [608] = {.count = 1, .reusable = true}, SHIFT(261), + [610] = {.count = 1, .reusable = false}, SHIFT(265), + [612] = {.count = 1, .reusable = false}, SHIFT(262), + [614] = {.count = 1, .reusable = true}, SHIFT(268), + [616] = {.count = 1, .reusable = true}, SHIFT(269), + [618] = {.count = 1, .reusable = false}, SHIFT(269), + [620] = {.count = 1, .reusable = true}, REDUCE(sym_function_definition, 3), + [622] = {.count = 1, .reusable = false}, REDUCE(sym_function_definition, 3), + [624] = {.count = 1, .reusable = true}, REDUCE(sym_function_declarator, 2), + [626] = {.count = 1, .reusable = true}, SHIFT(271), + [628] = {.count = 1, .reusable = true}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [630] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), + [632] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), + [634] = {.count = 1, .reusable = true}, SHIFT(273), + [636] = {.count = 1, .reusable = true}, SHIFT(274), + [638] = {.count = 1, .reusable = true}, SHIFT(275), + [640] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [642] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), + [644] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 4), + [646] = {.count = 1, .reusable = true}, SHIFT(277), + [648] = {.count = 1, .reusable = false}, SHIFT(278), [650] = {.count = 1, .reusable = false}, SHIFT(279), - [652] = {.count = 1, .reusable = false}, SHIFT(282), - [654] = {.count = 1, .reusable = true}, SHIFT(285), - [656] = {.count = 1, .reusable = true}, SHIFT(286), - [658] = {.count = 1, .reusable = false}, SHIFT(287), - [660] = {.count = 1, .reusable = true}, SHIFT(288), - [662] = {.count = 1, .reusable = true}, SHIFT(289), - [664] = {.count = 1, .reusable = false}, SHIFT(290), - [666] = {.count = 1, .reusable = false}, SHIFT(291), - [668] = {.count = 1, .reusable = false}, SHIFT(292), - [670] = {.count = 1, .reusable = true}, SHIFT(294), - [672] = {.count = 1, .reusable = true}, SHIFT(295), - [674] = {.count = 1, .reusable = true}, SHIFT(296), - [676] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2, .alias_sequence_id = 6), - [678] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .alias_sequence_id = 14), - [680] = {.count = 1, .reusable = false}, SHIFT(301), - [682] = {.count = 1, .reusable = false}, SHIFT(303), - [684] = {.count = 1, .reusable = true}, SHIFT(304), - [686] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), - [688] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), - [690] = {.count = 1, .reusable = true}, SHIFT(307), - [692] = {.count = 1, .reusable = true}, SHIFT(308), - [694] = {.count = 1, .reusable = true}, SHIFT(311), - [696] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(58), - [699] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(59), - [702] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(60), - [705] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [707] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(62), - [710] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(63), - [713] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(66), - [716] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(67), - [719] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(68), - [722] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), - [724] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), - [726] = {.count = 1, .reusable = true}, SHIFT(312), - [728] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), - [730] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), - [732] = {.count = 1, .reusable = true}, SHIFT(313), - [734] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 4), - [736] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 4), - [738] = {.count = 1, .reusable = true}, SHIFT(314), - [740] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2), - [742] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), - [744] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), - [746] = {.count = 1, .reusable = true}, SHIFT(315), - [748] = {.count = 1, .reusable = true}, SHIFT(317), - [750] = {.count = 1, .reusable = false}, SHIFT(317), - [752] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), - [754] = {.count = 1, .reusable = true}, SHIFT(318), - [756] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), - [758] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), - [760] = {.count = 1, .reusable = true}, SHIFT(319), - [762] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(179), - [765] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [767] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [769] = {.count = 1, .reusable = true}, SHIFT(323), - [771] = {.count = 1, .reusable = true}, SHIFT(324), - [773] = {.count = 1, .reusable = true}, SHIFT(325), - [775] = {.count = 1, .reusable = true}, SHIFT(326), - [777] = {.count = 1, .reusable = false}, SHIFT(327), - [779] = {.count = 1, .reusable = true}, SHIFT(327), - [781] = {.count = 1, .reusable = false}, SHIFT(328), - [783] = {.count = 1, .reusable = true}, SHIFT(330), - [785] = {.count = 1, .reusable = true}, SHIFT(329), - [787] = {.count = 1, .reusable = false}, SHIFT(330), - [789] = {.count = 1, .reusable = true}, SHIFT(331), - [791] = {.count = 1, .reusable = true}, SHIFT(333), - [793] = {.count = 1, .reusable = true}, SHIFT(335), - [795] = {.count = 1, .reusable = true}, SHIFT(336), - [797] = {.count = 1, .reusable = true}, SHIFT(337), - [799] = {.count = 1, .reusable = true}, SHIFT(341), - [801] = {.count = 1, .reusable = true}, SHIFT(345), - [803] = {.count = 1, .reusable = true}, SHIFT(349), - [805] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), - [807] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), - [809] = {.count = 1, .reusable = true}, SHIFT(352), - [811] = {.count = 1, .reusable = true}, SHIFT(353), - [813] = {.count = 1, .reusable = true}, SHIFT(354), - [815] = {.count = 1, .reusable = true}, SHIFT(355), - [817] = {.count = 1, .reusable = false}, SHIFT(356), - [819] = {.count = 1, .reusable = true}, SHIFT(356), - [821] = {.count = 1, .reusable = false}, SHIFT(357), - [823] = {.count = 1, .reusable = true}, SHIFT(359), - [825] = {.count = 1, .reusable = true}, SHIFT(358), - [827] = {.count = 1, .reusable = false}, SHIFT(359), - [829] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 18), - [831] = {.count = 1, .reusable = true}, SHIFT(360), - [833] = {.count = 1, .reusable = true}, SHIFT(361), - [835] = {.count = 1, .reusable = true}, SHIFT(362), - [837] = {.count = 1, .reusable = true}, SHIFT(363), - [839] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 9), - [841] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 10), - [843] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 11), - [845] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [847] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(100), - [852] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(101), - [855] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(102), - [858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(10), - [861] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [863] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(11), - [866] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(110), - [869] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(107), - [872] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(12), - [875] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), - [878] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), - [881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), - [884] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(200), - [887] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1), - [889] = {.count = 1, .reusable = true}, SHIFT(370), - [891] = {.count = 1, .reusable = true}, SHIFT(372), - [893] = {.count = 1, .reusable = false}, SHIFT(372), - [895] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), - [897] = {.count = 1, .reusable = true}, SHIFT(373), - [899] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), - [901] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4), - [903] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4), - [905] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(208), - [908] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3), - [910] = {.count = 1, .reusable = true}, SHIFT(376), - [912] = {.count = 1, .reusable = true}, SHIFT(377), - [914] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2, .dynamic_precedence = 1), - [916] = {.count = 1, .reusable = true}, SHIFT(379), - [918] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), - [920] = {.count = 1, .reusable = true}, SHIFT(380), - [922] = {.count = 1, .reusable = true}, SHIFT(381), - [924] = {.count = 1, .reusable = false}, SHIFT(384), - [926] = {.count = 1, .reusable = false}, SHIFT(385), - [928] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), - [930] = {.count = 1, .reusable = true}, SHIFT(386), - [932] = {.count = 1, .reusable = true}, SHIFT(387), - [934] = {.count = 1, .reusable = true}, SHIFT(388), - [936] = {.count = 1, .reusable = true}, SHIFT(389), - [938] = {.count = 1, .reusable = false}, SHIFT(390), - [940] = {.count = 1, .reusable = true}, SHIFT(390), - [942] = {.count = 1, .reusable = false}, SHIFT(391), - [944] = {.count = 1, .reusable = true}, SHIFT(394), - [946] = {.count = 1, .reusable = true}, SHIFT(392), - [948] = {.count = 1, .reusable = false}, SHIFT(394), - [950] = {.count = 1, .reusable = false}, SHIFT(393), - [952] = {.count = 1, .reusable = false}, SHIFT(397), - [954] = {.count = 1, .reusable = true}, SHIFT(398), - [956] = {.count = 1, .reusable = true}, SHIFT(399), - [958] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), - [960] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), - [962] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), - [964] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), - [966] = {.count = 1, .reusable = true}, SHIFT(400), - [968] = {.count = 1, .reusable = false}, SHIFT(400), - [970] = {.count = 1, .reusable = true}, SHIFT(401), - [972] = {.count = 1, .reusable = true}, SHIFT(402), - [974] = {.count = 1, .reusable = true}, SHIFT(403), - [976] = {.count = 1, .reusable = true}, SHIFT(404), - [978] = {.count = 1, .reusable = true}, SHIFT(405), - [980] = {.count = 1, .reusable = true}, SHIFT(406), - [982] = {.count = 1, .reusable = false}, SHIFT(407), - [984] = {.count = 1, .reusable = true}, SHIFT(407), - [986] = {.count = 1, .reusable = false}, SHIFT(408), - [988] = {.count = 1, .reusable = true}, SHIFT(410), - [990] = {.count = 1, .reusable = true}, SHIFT(409), - [992] = {.count = 1, .reusable = false}, SHIFT(410), - [994] = {.count = 1, .reusable = true}, SHIFT(411), - [996] = {.count = 1, .reusable = true}, SHIFT(412), - [998] = {.count = 1, .reusable = false}, SHIFT(413), - [1000] = {.count = 1, .reusable = false}, SHIFT(414), - [1002] = {.count = 1, .reusable = false}, SHIFT(415), - [1004] = {.count = 1, .reusable = false}, SHIFT(416), - [1006] = {.count = 1, .reusable = false}, SHIFT(417), - [1008] = {.count = 1, .reusable = false}, SHIFT(418), - [1010] = {.count = 1, .reusable = false}, SHIFT(419), - [1012] = {.count = 1, .reusable = true}, SHIFT(421), - [1014] = {.count = 1, .reusable = true}, SHIFT(422), - [1016] = {.count = 1, .reusable = true}, SHIFT(423), - [1018] = {.count = 1, .reusable = false}, SHIFT(423), - [1020] = {.count = 1, .reusable = true}, SHIFT(424), - [1022] = {.count = 1, .reusable = true}, SHIFT(425), - [1024] = {.count = 1, .reusable = true}, SHIFT(426), - [1026] = {.count = 1, .reusable = true}, SHIFT(427), - [1028] = {.count = 1, .reusable = false}, SHIFT(427), - [1030] = {.count = 1, .reusable = true}, SHIFT(428), - [1032] = {.count = 1, .reusable = false}, SHIFT(428), - [1034] = {.count = 1, .reusable = true}, SHIFT(429), - [1036] = {.count = 1, .reusable = false}, SHIFT(429), - [1038] = {.count = 1, .reusable = true}, SHIFT(430), - [1040] = {.count = 1, .reusable = true}, SHIFT(431), - [1042] = {.count = 1, .reusable = false}, SHIFT(431), - [1044] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), - [1046] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), - [1048] = {.count = 1, .reusable = true}, SHIFT(432), - [1050] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(41), - [1054] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [1057] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), - [1060] = {.count = 1, .reusable = true}, SHIFT(433), - [1062] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), - [1064] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), - [1066] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), - [1068] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), - [1070] = {.count = 1, .reusable = true}, SHIFT(434), - [1072] = {.count = 1, .reusable = true}, SHIFT(435), - [1074] = {.count = 1, .reusable = true}, SHIFT(436), - [1076] = {.count = 1, .reusable = true}, SHIFT(437), - [1078] = {.count = 1, .reusable = false}, SHIFT(438), - [1080] = {.count = 1, .reusable = true}, SHIFT(439), - [1082] = {.count = 1, .reusable = false}, SHIFT(440), - [1084] = {.count = 1, .reusable = true}, SHIFT(441), - [1086] = {.count = 1, .reusable = true}, SHIFT(440), - [1088] = {.count = 1, .reusable = false}, SHIFT(442), - [1090] = {.count = 1, .reusable = true}, SHIFT(443), - [1092] = {.count = 1, .reusable = true}, SHIFT(444), - [1094] = {.count = 1, .reusable = false}, SHIFT(445), - [1096] = {.count = 1, .reusable = false}, SHIFT(446), - [1098] = {.count = 1, .reusable = true}, SHIFT(447), - [1100] = {.count = 1, .reusable = false}, SHIFT(448), - [1102] = {.count = 1, .reusable = true}, SHIFT(448), - [1104] = {.count = 1, .reusable = false}, SHIFT(449), - [1106] = {.count = 1, .reusable = false}, SHIFT(450), - [1108] = {.count = 1, .reusable = true}, SHIFT(451), - [1110] = {.count = 1, .reusable = true}, SHIFT(452), - [1112] = {.count = 1, .reusable = true}, SHIFT(454), - [1114] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), - [1116] = {.count = 1, .reusable = true}, SHIFT(457), - [1118] = {.count = 1, .reusable = true}, SHIFT(458), - [1120] = {.count = 1, .reusable = false}, SHIFT(458), - [1122] = {.count = 1, .reusable = true}, SHIFT(459), - [1124] = {.count = 1, .reusable = true}, SHIFT(460), - [1126] = {.count = 1, .reusable = true}, SHIFT(461), - [1128] = {.count = 1, .reusable = false}, SHIFT(461), - [1130] = {.count = 1, .reusable = false}, SHIFT(463), - [1132] = {.count = 1, .reusable = false}, SHIFT(464), - [1134] = {.count = 1, .reusable = true}, SHIFT(465), - [1136] = {.count = 1, .reusable = true}, SHIFT(464), - [1138] = {.count = 1, .reusable = false}, SHIFT(466), - [1140] = {.count = 1, .reusable = true}, SHIFT(467), - [1142] = {.count = 1, .reusable = true}, SHIFT(468), - [1144] = {.count = 1, .reusable = false}, SHIFT(469), - [1146] = {.count = 1, .reusable = false}, SHIFT(470), - [1148] = {.count = 1, .reusable = true}, SHIFT(471), - [1150] = {.count = 1, .reusable = false}, SHIFT(472), - [1152] = {.count = 1, .reusable = true}, SHIFT(472), - [1154] = {.count = 1, .reusable = false}, SHIFT(473), - [1156] = {.count = 1, .reusable = false}, SHIFT(474), - [1158] = {.count = 1, .reusable = false}, SHIFT(475), - [1160] = {.count = 1, .reusable = false}, SHIFT(476), - [1162] = {.count = 1, .reusable = true}, SHIFT(477), - [1164] = {.count = 1, .reusable = true}, SHIFT(478), - [1166] = {.count = 1, .reusable = true}, SHIFT(479), - [1168] = {.count = 1, .reusable = true}, SHIFT(480), - [1170] = {.count = 1, .reusable = true}, SHIFT(481), - [1172] = {.count = 1, .reusable = false}, SHIFT(481), - [1174] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), - [1176] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), - [1178] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), - [1180] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(121), - [1183] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 5, .alias_sequence_id = 4), - [1185] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 5, .alias_sequence_id = 4), - [1187] = {.count = 1, .reusable = true}, SHIFT(484), - [1189] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [1191] = {.count = 1, .reusable = true}, SHIFT(485), - [1193] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), - [1195] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), - [1197] = {.count = 1, .reusable = false}, SHIFT(487), - [1199] = {.count = 1, .reusable = false}, SHIFT(488), - [1201] = {.count = 1, .reusable = false}, SHIFT(489), - [1203] = {.count = 1, .reusable = true}, SHIFT(490), - [1205] = {.count = 1, .reusable = false}, SHIFT(490), - [1207] = {.count = 1, .reusable = true}, SHIFT(492), - [1209] = {.count = 1, .reusable = false}, SHIFT(492), - [1211] = {.count = 1, .reusable = true}, SHIFT(494), - [1213] = {.count = 1, .reusable = false}, SHIFT(494), - [1215] = {.count = 1, .reusable = false}, SHIFT(496), - [1217] = {.count = 1, .reusable = false}, SHIFT(497), - [1219] = {.count = 1, .reusable = false}, SHIFT(499), + [652] = {.count = 1, .reusable = false}, SHIFT(281), + [654] = {.count = 1, .reusable = false}, SHIFT(284), + [656] = {.count = 1, .reusable = false}, SHIFT(287), + [658] = {.count = 1, .reusable = true}, SHIFT(290), + [660] = {.count = 1, .reusable = true}, SHIFT(291), + [662] = {.count = 1, .reusable = false}, SHIFT(292), + [664] = {.count = 1, .reusable = true}, SHIFT(293), + [666] = {.count = 1, .reusable = true}, SHIFT(294), + [668] = {.count = 1, .reusable = false}, SHIFT(295), + [670] = {.count = 1, .reusable = false}, SHIFT(296), + [672] = {.count = 1, .reusable = false}, SHIFT(297), + [674] = {.count = 1, .reusable = true}, SHIFT(299), + [676] = {.count = 1, .reusable = true}, SHIFT(300), + [678] = {.count = 1, .reusable = true}, SHIFT(301), + [680] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2, .alias_sequence_id = 6), + [682] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .alias_sequence_id = 14), + [684] = {.count = 1, .reusable = false}, SHIFT(306), + [686] = {.count = 1, .reusable = false}, SHIFT(308), + [688] = {.count = 1, .reusable = true}, SHIFT(309), + [690] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), + [692] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 15), + [694] = {.count = 1, .reusable = true}, SHIFT(312), + [696] = {.count = 1, .reusable = true}, SHIFT(313), + [698] = {.count = 1, .reusable = true}, SHIFT(316), + [700] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(58), + [703] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(59), + [706] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(60), + [709] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [711] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(62), + [714] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(63), + [717] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(66), + [720] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(67), + [723] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(68), + [726] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), + [728] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 16), + [730] = {.count = 1, .reusable = true}, SHIFT(317), + [732] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), + [734] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 17), + [736] = {.count = 1, .reusable = true}, SHIFT(318), + [738] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 4), + [740] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 4), + [742] = {.count = 1, .reusable = true}, SHIFT(320), + [744] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2), + [746] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), + [748] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), + [750] = {.count = 1, .reusable = true}, SHIFT(322), + [752] = {.count = 1, .reusable = true}, SHIFT(324), + [754] = {.count = 1, .reusable = false}, SHIFT(324), + [756] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), + [758] = {.count = 1, .reusable = true}, SHIFT(325), + [760] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 2), + [762] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 2), + [764] = {.count = 1, .reusable = true}, SHIFT(326), + [766] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(181), + [769] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [771] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [773] = {.count = 1, .reusable = true}, SHIFT(330), + [775] = {.count = 1, .reusable = true}, SHIFT(331), + [777] = {.count = 1, .reusable = true}, SHIFT(332), + [779] = {.count = 1, .reusable = true}, SHIFT(333), + [781] = {.count = 1, .reusable = false}, SHIFT(334), + [783] = {.count = 1, .reusable = true}, SHIFT(334), + [785] = {.count = 1, .reusable = false}, SHIFT(335), + [787] = {.count = 1, .reusable = true}, SHIFT(337), + [789] = {.count = 1, .reusable = true}, SHIFT(336), + [791] = {.count = 1, .reusable = false}, SHIFT(337), + [793] = {.count = 1, .reusable = true}, SHIFT(338), + [795] = {.count = 1, .reusable = true}, SHIFT(340), + [797] = {.count = 1, .reusable = true}, SHIFT(342), + [799] = {.count = 1, .reusable = true}, SHIFT(343), + [801] = {.count = 1, .reusable = true}, SHIFT(344), + [803] = {.count = 1, .reusable = true}, SHIFT(348), + [805] = {.count = 1, .reusable = true}, SHIFT(352), + [807] = {.count = 1, .reusable = true}, SHIFT(356), + [809] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), + [811] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), + [813] = {.count = 1, .reusable = false}, SHIFT(193), + [815] = {.count = 1, .reusable = true}, SHIFT(360), + [817] = {.count = 1, .reusable = true}, SHIFT(361), + [819] = {.count = 1, .reusable = true}, SHIFT(362), + [821] = {.count = 1, .reusable = true}, SHIFT(363), + [823] = {.count = 1, .reusable = false}, SHIFT(364), + [825] = {.count = 1, .reusable = true}, SHIFT(364), + [827] = {.count = 1, .reusable = false}, SHIFT(365), + [829] = {.count = 1, .reusable = true}, SHIFT(367), + [831] = {.count = 1, .reusable = true}, SHIFT(366), + [833] = {.count = 1, .reusable = false}, SHIFT(367), + [835] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 18), + [837] = {.count = 1, .reusable = true}, SHIFT(368), + [839] = {.count = 1, .reusable = true}, SHIFT(369), + [841] = {.count = 1, .reusable = true}, SHIFT(370), + [843] = {.count = 1, .reusable = true}, SHIFT(371), + [845] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 9), + [847] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 10), + [849] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 11), + [851] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [853] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [855] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(100), + [858] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(101), + [861] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(102), + [864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(10), + [867] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [869] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(11), + [872] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(110), + [875] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(107), + [878] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(12), + [881] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), + [884] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), + [887] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(15), + [890] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(202), + [893] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1), + [895] = {.count = 1, .reusable = true}, SHIFT(11), + [897] = {.count = 1, .reusable = true}, SHIFT(379), + [899] = {.count = 1, .reusable = true}, SHIFT(381), + [901] = {.count = 1, .reusable = false}, SHIFT(381), + [903] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), + [905] = {.count = 1, .reusable = true}, SHIFT(382), + [907] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), + [909] = {.count = 1, .reusable = true}, REDUCE(sym_macro_type_specifier, 4), + [911] = {.count = 1, .reusable = false}, REDUCE(sym_macro_type_specifier, 4), + [913] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(210), + [916] = {.count = 1, .reusable = true}, REDUCE(sym__declarator, 3), + [918] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_declarator, 3), + [920] = {.count = 1, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), + [922] = {.count = 1, .reusable = true}, SHIFT(385), + [924] = {.count = 1, .reusable = true}, SHIFT(386), + [926] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 2, .dynamic_precedence = 1), + [928] = {.count = 1, .reusable = true}, SHIFT(388), + [930] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 1), + [932] = {.count = 1, .reusable = true}, SHIFT(389), + [934] = {.count = 1, .reusable = true}, SHIFT(390), + [936] = {.count = 1, .reusable = false}, SHIFT(393), + [938] = {.count = 1, .reusable = false}, SHIFT(394), + [940] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), + [942] = {.count = 1, .reusable = true}, SHIFT(396), + [944] = {.count = 1, .reusable = true}, SHIFT(397), + [946] = {.count = 1, .reusable = true}, SHIFT(398), + [948] = {.count = 1, .reusable = true}, SHIFT(399), + [950] = {.count = 1, .reusable = false}, SHIFT(400), + [952] = {.count = 1, .reusable = true}, SHIFT(400), + [954] = {.count = 1, .reusable = false}, SHIFT(401), + [956] = {.count = 1, .reusable = true}, SHIFT(404), + [958] = {.count = 1, .reusable = true}, SHIFT(402), + [960] = {.count = 1, .reusable = false}, SHIFT(404), + [962] = {.count = 1, .reusable = false}, SHIFT(403), + [964] = {.count = 1, .reusable = false}, SHIFT(407), + [966] = {.count = 1, .reusable = true}, SHIFT(408), + [968] = {.count = 1, .reusable = true}, SHIFT(409), + [970] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 1), + [972] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 1), + [974] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 2), + [976] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), + [978] = {.count = 1, .reusable = true}, SHIFT(410), + [980] = {.count = 1, .reusable = false}, SHIFT(410), + [982] = {.count = 1, .reusable = true}, SHIFT(411), + [984] = {.count = 1, .reusable = true}, SHIFT(412), + [986] = {.count = 1, .reusable = true}, SHIFT(413), + [988] = {.count = 1, .reusable = true}, SHIFT(414), + [990] = {.count = 1, .reusable = true}, SHIFT(415), + [992] = {.count = 1, .reusable = true}, SHIFT(416), + [994] = {.count = 1, .reusable = false}, SHIFT(417), + [996] = {.count = 1, .reusable = true}, SHIFT(417), + [998] = {.count = 1, .reusable = false}, SHIFT(418), + [1000] = {.count = 1, .reusable = true}, SHIFT(420), + [1002] = {.count = 1, .reusable = true}, SHIFT(419), + [1004] = {.count = 1, .reusable = false}, SHIFT(420), + [1006] = {.count = 1, .reusable = true}, SHIFT(421), + [1008] = {.count = 1, .reusable = true}, SHIFT(422), + [1010] = {.count = 1, .reusable = false}, SHIFT(423), + [1012] = {.count = 1, .reusable = false}, SHIFT(424), + [1014] = {.count = 1, .reusable = false}, SHIFT(425), + [1016] = {.count = 1, .reusable = false}, SHIFT(426), + [1018] = {.count = 1, .reusable = false}, SHIFT(427), + [1020] = {.count = 1, .reusable = false}, SHIFT(428), + [1022] = {.count = 1, .reusable = false}, SHIFT(429), + [1024] = {.count = 1, .reusable = true}, SHIFT(431), + [1026] = {.count = 1, .reusable = true}, SHIFT(432), + [1028] = {.count = 1, .reusable = true}, SHIFT(433), + [1030] = {.count = 1, .reusable = false}, SHIFT(433), + [1032] = {.count = 1, .reusable = true}, SHIFT(434), + [1034] = {.count = 1, .reusable = true}, SHIFT(435), + [1036] = {.count = 1, .reusable = true}, SHIFT(436), + [1038] = {.count = 1, .reusable = true}, SHIFT(437), + [1040] = {.count = 1, .reusable = false}, SHIFT(437), + [1042] = {.count = 1, .reusable = true}, SHIFT(438), + [1044] = {.count = 1, .reusable = false}, SHIFT(438), + [1046] = {.count = 1, .reusable = true}, SHIFT(439), + [1048] = {.count = 1, .reusable = false}, SHIFT(439), + [1050] = {.count = 1, .reusable = true}, SHIFT(440), + [1052] = {.count = 1, .reusable = true}, SHIFT(441), + [1054] = {.count = 1, .reusable = false}, SHIFT(441), + [1056] = {.count = 1, .reusable = true}, REDUCE(sym__expression, 1), + [1058] = {.count = 1, .reusable = false}, REDUCE(sym__expression, 1), + [1060] = {.count = 1, .reusable = true}, SHIFT(442), + [1062] = {.count = 3, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), SHIFT(41), + [1066] = {.count = 2, .reusable = true}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [1069] = {.count = 2, .reusable = false}, REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), REDUCE(sym__expression, 1), + [1072] = {.count = 1, .reusable = true}, SHIFT(443), + [1074] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), + [1076] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 12), + [1078] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), + [1080] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 13), + [1082] = {.count = 1, .reusable = true}, SHIFT(444), + [1084] = {.count = 1, .reusable = true}, SHIFT(445), + [1086] = {.count = 1, .reusable = true}, SHIFT(446), + [1088] = {.count = 1, .reusable = true}, SHIFT(447), + [1090] = {.count = 1, .reusable = false}, SHIFT(448), + [1092] = {.count = 1, .reusable = true}, SHIFT(449), + [1094] = {.count = 1, .reusable = false}, SHIFT(450), + [1096] = {.count = 1, .reusable = true}, SHIFT(451), + [1098] = {.count = 1, .reusable = true}, SHIFT(450), + [1100] = {.count = 1, .reusable = false}, SHIFT(452), + [1102] = {.count = 1, .reusable = true}, SHIFT(453), + [1104] = {.count = 1, .reusable = true}, SHIFT(454), + [1106] = {.count = 1, .reusable = false}, SHIFT(455), + [1108] = {.count = 1, .reusable = false}, SHIFT(456), + [1110] = {.count = 1, .reusable = true}, SHIFT(457), + [1112] = {.count = 1, .reusable = false}, SHIFT(458), + [1114] = {.count = 1, .reusable = true}, SHIFT(458), + [1116] = {.count = 1, .reusable = false}, SHIFT(459), + [1118] = {.count = 1, .reusable = false}, SHIFT(460), + [1120] = {.count = 1, .reusable = true}, SHIFT(461), + [1122] = {.count = 1, .reusable = true}, SHIFT(462), + [1124] = {.count = 1, .reusable = true}, SHIFT(464), + [1126] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 3), + [1128] = {.count = 1, .reusable = true}, SHIFT(467), + [1130] = {.count = 1, .reusable = true}, SHIFT(468), + [1132] = {.count = 1, .reusable = false}, SHIFT(468), + [1134] = {.count = 1, .reusable = true}, SHIFT(469), + [1136] = {.count = 1, .reusable = true}, SHIFT(470), + [1138] = {.count = 1, .reusable = true}, SHIFT(471), + [1140] = {.count = 1, .reusable = false}, SHIFT(471), + [1142] = {.count = 1, .reusable = false}, SHIFT(473), + [1144] = {.count = 1, .reusable = false}, SHIFT(474), + [1146] = {.count = 1, .reusable = true}, SHIFT(475), + [1148] = {.count = 1, .reusable = true}, SHIFT(474), + [1150] = {.count = 1, .reusable = false}, SHIFT(476), + [1152] = {.count = 1, .reusable = true}, SHIFT(477), + [1154] = {.count = 1, .reusable = true}, SHIFT(478), + [1156] = {.count = 1, .reusable = false}, SHIFT(479), + [1158] = {.count = 1, .reusable = false}, SHIFT(480), + [1160] = {.count = 1, .reusable = true}, SHIFT(481), + [1162] = {.count = 1, .reusable = false}, SHIFT(482), + [1164] = {.count = 1, .reusable = true}, SHIFT(482), + [1166] = {.count = 1, .reusable = false}, SHIFT(483), + [1168] = {.count = 1, .reusable = false}, SHIFT(484), + [1170] = {.count = 1, .reusable = false}, SHIFT(485), + [1172] = {.count = 1, .reusable = false}, SHIFT(486), + [1174] = {.count = 1, .reusable = true}, SHIFT(487), + [1176] = {.count = 1, .reusable = true}, SHIFT(488), + [1178] = {.count = 1, .reusable = true}, SHIFT(489), + [1180] = {.count = 1, .reusable = true}, SHIFT(490), + [1182] = {.count = 1, .reusable = true}, SHIFT(491), + [1184] = {.count = 1, .reusable = false}, SHIFT(491), + [1186] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), + [1188] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), + [1190] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), + [1192] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(122), + [1195] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 5, .alias_sequence_id = 4), + [1197] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 5, .alias_sequence_id = 4), + [1199] = {.count = 1, .reusable = true}, SHIFT(494), + [1201] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [1203] = {.count = 1, .reusable = true}, SHIFT(495), + [1205] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), + [1207] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 4), + [1209] = {.count = 1, .reusable = false}, SHIFT(497), + [1211] = {.count = 1, .reusable = false}, SHIFT(498), + [1213] = {.count = 1, .reusable = false}, SHIFT(499), + [1215] = {.count = 1, .reusable = true}, SHIFT(500), + [1217] = {.count = 1, .reusable = false}, SHIFT(500), + [1219] = {.count = 1, .reusable = true}, SHIFT(502), [1221] = {.count = 1, .reusable = false}, SHIFT(502), - [1223] = {.count = 1, .reusable = false}, SHIFT(505), - [1225] = {.count = 1, .reusable = false}, SHIFT(508), - [1227] = {.count = 1, .reusable = false}, SHIFT(510), - [1229] = {.count = 1, .reusable = true}, SHIFT(511), - [1231] = {.count = 1, .reusable = true}, SHIFT(514), - [1233] = {.count = 1, .reusable = true}, SHIFT(515), - [1235] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(141), - [1238] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(142), - [1241] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(143), - [1244] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(144), - [1247] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(145), - [1250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(146), - [1253] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(147), - [1256] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(148), - [1259] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), - [1261] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), - [1263] = {.count = 1, .reusable = true}, SHIFT(519), - [1265] = {.count = 1, .reusable = true}, SHIFT(520), - [1267] = {.count = 1, .reusable = true}, SHIFT(522), - [1269] = {.count = 1, .reusable = true}, SHIFT(524), - [1271] = {.count = 1, .reusable = true}, SHIFT(526), - [1273] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), - [1275] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), - [1277] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), - [1279] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), - [1281] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), - [1283] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), - [1285] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3), - [1287] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), - [1289] = {.count = 1, .reusable = true}, SHIFT(527), - [1291] = {.count = 1, .reusable = true}, SHIFT(528), - [1293] = {.count = 1, .reusable = false}, SHIFT(528), - [1295] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), - [1297] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), - [1299] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [1301] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [1303] = {.count = 1, .reusable = true}, SHIFT(530), - [1305] = {.count = 1, .reusable = true}, SHIFT(531), - [1307] = {.count = 1, .reusable = false}, SHIFT(531), - [1309] = {.count = 1, .reusable = true}, SHIFT(532), - [1311] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), - [1313] = {.count = 1, .reusable = false}, SHIFT(533), - [1315] = {.count = 1, .reusable = false}, SHIFT(534), - [1317] = {.count = 1, .reusable = true}, SHIFT(535), - [1319] = {.count = 1, .reusable = true}, SHIFT(534), - [1321] = {.count = 1, .reusable = false}, SHIFT(536), - [1323] = {.count = 1, .reusable = true}, SHIFT(537), - [1325] = {.count = 1, .reusable = true}, SHIFT(538), - [1327] = {.count = 1, .reusable = false}, SHIFT(539), - [1329] = {.count = 1, .reusable = false}, SHIFT(540), - [1331] = {.count = 1, .reusable = true}, SHIFT(541), - [1333] = {.count = 1, .reusable = false}, SHIFT(542), - [1335] = {.count = 1, .reusable = true}, SHIFT(542), - [1337] = {.count = 1, .reusable = false}, SHIFT(543), - [1339] = {.count = 1, .reusable = false}, SHIFT(544), - [1341] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [1343] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [1345] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [1347] = {.count = 1, .reusable = true}, SHIFT(545), - [1349] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(546), - [1352] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), - [1354] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), - [1356] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, .alias_sequence_id = 6), - [1358] = {.count = 1, .reusable = false}, SHIFT(548), - [1360] = {.count = 1, .reusable = true}, SHIFT(549), - [1362] = {.count = 1, .reusable = true}, SHIFT(550), - [1364] = {.count = 1, .reusable = true}, SHIFT(551), - [1366] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), - [1368] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), - [1370] = {.count = 1, .reusable = true}, SHIFT(555), - [1372] = {.count = 1, .reusable = true}, SHIFT(556), - [1374] = {.count = 1, .reusable = true}, SHIFT(557), - [1376] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), - [1378] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), - [1380] = {.count = 1, .reusable = true}, SHIFT(560), - [1382] = {.count = 1, .reusable = true}, SHIFT(561), - [1384] = {.count = 1, .reusable = true}, SHIFT(562), - [1386] = {.count = 1, .reusable = true}, SHIFT(565), - [1388] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2), - [1390] = {.count = 1, .reusable = true}, SHIFT(567), - [1392] = {.count = 1, .reusable = true}, SHIFT(568), - [1394] = {.count = 1, .reusable = false}, SHIFT(568), - [1396] = {.count = 1, .reusable = true}, SHIFT(569), - [1398] = {.count = 1, .reusable = true}, SHIFT(570), - [1400] = {.count = 1, .reusable = false}, SHIFT(571), - [1402] = {.count = 1, .reusable = false}, SHIFT(572), - [1404] = {.count = 1, .reusable = true}, SHIFT(573), - [1406] = {.count = 1, .reusable = true}, SHIFT(572), - [1408] = {.count = 1, .reusable = false}, SHIFT(574), - [1410] = {.count = 1, .reusable = true}, SHIFT(575), - [1412] = {.count = 1, .reusable = true}, SHIFT(576), - [1414] = {.count = 1, .reusable = false}, SHIFT(577), - [1416] = {.count = 1, .reusable = false}, SHIFT(578), - [1418] = {.count = 1, .reusable = true}, SHIFT(579), - [1420] = {.count = 1, .reusable = false}, SHIFT(580), - [1422] = {.count = 1, .reusable = true}, SHIFT(580), - [1424] = {.count = 1, .reusable = false}, SHIFT(581), - [1426] = {.count = 1, .reusable = false}, SHIFT(582), - [1428] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), - [1430] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), - [1432] = {.count = 1, .reusable = true}, SHIFT(584), - [1434] = {.count = 1, .reusable = true}, SHIFT(586), - [1436] = {.count = 1, .reusable = false}, SHIFT(586), - [1438] = {.count = 1, .reusable = true}, SHIFT(587), - [1440] = {.count = 1, .reusable = false}, SHIFT(587), - [1442] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), - [1444] = {.count = 1, .reusable = true}, SHIFT(588), - [1446] = {.count = 1, .reusable = true}, SHIFT(590), - [1448] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2), - [1450] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [1452] = {.count = 1, .reusable = true}, SHIFT(591), - [1454] = {.count = 1, .reusable = true}, SHIFT(592), - [1456] = {.count = 1, .reusable = false}, SHIFT(592), - [1458] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), - [1460] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), - [1462] = {.count = 1, .reusable = true}, SHIFT(594), - [1464] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3, .dynamic_precedence = 1), - [1466] = {.count = 1, .reusable = true}, SHIFT(595), - [1468] = {.count = 1, .reusable = true}, SHIFT(597), - [1470] = {.count = 1, .reusable = false}, SHIFT(598), - [1472] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), - [1474] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(385), - [1477] = {.count = 1, .reusable = true}, SHIFT(602), - [1479] = {.count = 1, .reusable = true}, SHIFT(603), - [1481] = {.count = 1, .reusable = false}, SHIFT(603), - [1483] = {.count = 1, .reusable = true}, SHIFT(604), - [1485] = {.count = 1, .reusable = true}, SHIFT(605), - [1487] = {.count = 1, .reusable = true}, SHIFT(606), - [1489] = {.count = 1, .reusable = false}, SHIFT(607), - [1491] = {.count = 1, .reusable = false}, SHIFT(608), - [1493] = {.count = 1, .reusable = true}, SHIFT(609), - [1495] = {.count = 1, .reusable = true}, SHIFT(608), - [1497] = {.count = 1, .reusable = false}, SHIFT(610), - [1499] = {.count = 1, .reusable = true}, SHIFT(611), - [1501] = {.count = 1, .reusable = true}, SHIFT(612), - [1503] = {.count = 1, .reusable = false}, SHIFT(613), - [1505] = {.count = 1, .reusable = false}, SHIFT(614), - [1507] = {.count = 1, .reusable = true}, SHIFT(615), - [1509] = {.count = 1, .reusable = false}, SHIFT(616), - [1511] = {.count = 1, .reusable = true}, SHIFT(616), - [1513] = {.count = 1, .reusable = false}, SHIFT(617), - [1515] = {.count = 1, .reusable = false}, SHIFT(618), - [1517] = {.count = 1, .reusable = true}, SHIFT(619), - [1519] = {.count = 1, .reusable = false}, SHIFT(620), - [1521] = {.count = 1, .reusable = false}, SHIFT(621), - [1523] = {.count = 1, .reusable = false}, SHIFT(622), - [1525] = {.count = 1, .reusable = false}, SHIFT(623), - [1527] = {.count = 1, .reusable = false}, SHIFT(624), - [1529] = {.count = 1, .reusable = false}, SHIFT(625), - [1531] = {.count = 1, .reusable = true}, SHIFT(626), - [1533] = {.count = 1, .reusable = false}, SHIFT(627), - [1535] = {.count = 1, .reusable = false}, SHIFT(628), - [1537] = {.count = 1, .reusable = false}, SHIFT(629), - [1539] = {.count = 1, .reusable = false}, SHIFT(630), - [1541] = {.count = 1, .reusable = false}, SHIFT(631), - [1543] = {.count = 1, .reusable = false}, SHIFT(632), - [1545] = {.count = 1, .reusable = false}, SHIFT(633), - [1547] = {.count = 1, .reusable = false}, SHIFT(634), - [1549] = {.count = 1, .reusable = false}, SHIFT(635), - [1551] = {.count = 1, .reusable = false}, SHIFT(636), - [1553] = {.count = 1, .reusable = false}, SHIFT(637), - [1555] = {.count = 1, .reusable = true}, SHIFT(644), - [1557] = {.count = 1, .reusable = false}, SHIFT(644), - [1559] = {.count = 1, .reusable = false}, SHIFT(638), - [1561] = {.count = 1, .reusable = false}, SHIFT(647), - [1563] = {.count = 1, .reusable = false}, SHIFT(651), - [1565] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), - [1567] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), - [1569] = {.count = 1, .reusable = true}, SHIFT(655), - [1571] = {.count = 1, .reusable = true}, SHIFT(656), - [1573] = {.count = 1, .reusable = true}, SHIFT(657), - [1575] = {.count = 1, .reusable = true}, SHIFT(658), - [1577] = {.count = 1, .reusable = false}, SHIFT(659), - [1579] = {.count = 1, .reusable = true}, SHIFT(659), - [1581] = {.count = 1, .reusable = false}, SHIFT(660), - [1583] = {.count = 1, .reusable = true}, SHIFT(662), - [1585] = {.count = 1, .reusable = true}, SHIFT(661), - [1587] = {.count = 1, .reusable = false}, SHIFT(662), - [1589] = {.count = 1, .reusable = true}, SHIFT(663), - [1591] = {.count = 1, .reusable = false}, SHIFT(663), - [1593] = {.count = 1, .reusable = true}, SHIFT(665), - [1595] = {.count = 1, .reusable = true}, SHIFT(666), - [1597] = {.count = 1, .reusable = false}, SHIFT(666), - [1599] = {.count = 1, .reusable = true}, SHIFT(667), - [1601] = {.count = 1, .reusable = false}, SHIFT(668), - [1603] = {.count = 1, .reusable = false}, SHIFT(669), - [1605] = {.count = 1, .reusable = true}, SHIFT(670), - [1607] = {.count = 1, .reusable = true}, SHIFT(671), - [1609] = {.count = 1, .reusable = true}, SHIFT(669), - [1611] = {.count = 1, .reusable = false}, SHIFT(672), - [1613] = {.count = 1, .reusable = true}, SHIFT(673), - [1615] = {.count = 1, .reusable = true}, SHIFT(674), - [1617] = {.count = 1, .reusable = false}, SHIFT(675), - [1619] = {.count = 1, .reusable = false}, SHIFT(676), - [1621] = {.count = 1, .reusable = true}, SHIFT(677), - [1623] = {.count = 1, .reusable = false}, SHIFT(678), - [1625] = {.count = 1, .reusable = true}, SHIFT(678), - [1627] = {.count = 1, .reusable = false}, SHIFT(679), - [1629] = {.count = 1, .reusable = false}, SHIFT(680), - [1631] = {.count = 1, .reusable = false}, SHIFT(681), - [1633] = {.count = 1, .reusable = true}, SHIFT(684), - [1635] = {.count = 1, .reusable = false}, SHIFT(684), - [1637] = {.count = 1, .reusable = true}, SHIFT(685), - [1639] = {.count = 1, .reusable = true}, SHIFT(686), - [1641] = {.count = 1, .reusable = true}, SHIFT(687), - [1643] = {.count = 1, .reusable = false}, SHIFT(687), - [1645] = {.count = 1, .reusable = true}, SHIFT(688), - [1647] = {.count = 1, .reusable = true}, SHIFT(689), - [1649] = {.count = 1, .reusable = true}, SHIFT(690), - [1651] = {.count = 1, .reusable = true}, SHIFT(691), - [1653] = {.count = 1, .reusable = true}, SHIFT(692), - [1655] = {.count = 1, .reusable = true}, SHIFT(693), - [1657] = {.count = 1, .reusable = true}, SHIFT(695), - [1659] = {.count = 1, .reusable = false}, SHIFT(695), - [1661] = {.count = 1, .reusable = false}, SHIFT(694), - [1663] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [1665] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [1667] = {.count = 1, .reusable = true}, SHIFT(696), - [1669] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [1671] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [1673] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [1675] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [1677] = {.count = 1, .reusable = true}, SHIFT(697), - [1679] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), - [1681] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), - [1683] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), - [1685] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), - [1687] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), - [1689] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), - [1691] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), - [1693] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), - [1695] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [1697] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [1699] = {.count = 1, .reusable = true}, SHIFT(699), - [1701] = {.count = 1, .reusable = false}, SHIFT(700), - [1703] = {.count = 1, .reusable = true}, SHIFT(702), - [1705] = {.count = 1, .reusable = true}, SHIFT(703), - [1707] = {.count = 1, .reusable = false}, SHIFT(703), - [1709] = {.count = 1, .reusable = true}, SHIFT(704), - [1711] = {.count = 1, .reusable = false}, SHIFT(704), - [1713] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [1715] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [1717] = {.count = 1, .reusable = true}, SHIFT(706), - [1719] = {.count = 1, .reusable = false}, SHIFT(706), - [1721] = {.count = 1, .reusable = true}, SHIFT(707), - [1723] = {.count = 1, .reusable = false}, SHIFT(707), - [1725] = {.count = 1, .reusable = true}, SHIFT(708), - [1727] = {.count = 1, .reusable = false}, SHIFT(708), - [1729] = {.count = 1, .reusable = true}, SHIFT(709), - [1731] = {.count = 1, .reusable = false}, SHIFT(709), - [1733] = {.count = 1, .reusable = true}, SHIFT(710), - [1735] = {.count = 1, .reusable = false}, SHIFT(710), - [1737] = {.count = 1, .reusable = true}, SHIFT(711), - [1739] = {.count = 1, .reusable = false}, SHIFT(711), - [1741] = {.count = 1, .reusable = true}, SHIFT(712), - [1743] = {.count = 1, .reusable = false}, SHIFT(712), - [1745] = {.count = 1, .reusable = true}, SHIFT(713), - [1747] = {.count = 1, .reusable = false}, SHIFT(713), - [1749] = {.count = 1, .reusable = true}, SHIFT(714), - [1751] = {.count = 1, .reusable = false}, SHIFT(714), - [1753] = {.count = 1, .reusable = true}, SHIFT(715), - [1755] = {.count = 1, .reusable = false}, SHIFT(715), - [1757] = {.count = 1, .reusable = true}, SHIFT(716), - [1759] = {.count = 1, .reusable = false}, SHIFT(716), - [1761] = {.count = 1, .reusable = true}, SHIFT(717), - [1763] = {.count = 1, .reusable = false}, SHIFT(717), - [1765] = {.count = 1, .reusable = true}, SHIFT(718), - [1767] = {.count = 1, .reusable = false}, SHIFT(718), - [1769] = {.count = 1, .reusable = true}, SHIFT(719), - [1771] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), - [1773] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), - [1775] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [1777] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [1779] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(2), - [1782] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(3), - [1785] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(219), - [1788] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(220), - [1791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(221), - [1794] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(222), - [1797] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(7), - [1800] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(223), - [1803] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(8), - [1806] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(10), - [1809] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(123), - [1812] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [1814] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(225), - [1817] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(11), - [1820] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(21), - [1823] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(18), - [1826] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(12), - [1829] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(13), - [1832] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(14), - [1835] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(226), - [1838] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(227), - [1841] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(228), - [1844] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(229), - [1847] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(230), - [1850] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(231), - [1853] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(232), - [1856] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(233), - [1859] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(234), - [1862] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(235), - [1865] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(236), - [1868] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(237), - [1871] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(238), - [1874] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(239), - [1877] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(239), - [1880] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(240), - [1883] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(246), - [1886] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(241), - [1889] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(246), - [1892] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(242), - [1895] = {.count = 1, .reusable = true}, SHIFT(720), - [1897] = {.count = 1, .reusable = true}, SHIFT(722), - [1899] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), - [1901] = {.count = 1, .reusable = true}, SHIFT(723), - [1903] = {.count = 1, .reusable = true}, SHIFT(725), - [1905] = {.count = 1, .reusable = false}, SHIFT(725), - [1907] = {.count = 1, .reusable = true}, SHIFT(726), - [1909] = {.count = 1, .reusable = false}, SHIFT(726), - [1911] = {.count = 1, .reusable = true}, SHIFT(727), - [1913] = {.count = 1, .reusable = false}, SHIFT(727), - [1915] = {.count = 1, .reusable = true}, SHIFT(728), - [1917] = {.count = 1, .reusable = false}, SHIFT(728), - [1919] = {.count = 1, .reusable = true}, SHIFT(729), - [1921] = {.count = 1, .reusable = false}, SHIFT(729), - [1923] = {.count = 1, .reusable = true}, SHIFT(730), - [1925] = {.count = 1, .reusable = false}, SHIFT(730), - [1927] = {.count = 1, .reusable = true}, SHIFT(731), - [1929] = {.count = 1, .reusable = false}, SHIFT(731), - [1931] = {.count = 1, .reusable = true}, SHIFT(732), - [1933] = {.count = 1, .reusable = false}, SHIFT(732), - [1935] = {.count = 1, .reusable = true}, SHIFT(733), - [1937] = {.count = 1, .reusable = false}, SHIFT(733), - [1939] = {.count = 1, .reusable = true}, SHIFT(734), - [1941] = {.count = 1, .reusable = false}, SHIFT(734), - [1943] = {.count = 1, .reusable = true}, SHIFT(735), - [1945] = {.count = 1, .reusable = false}, SHIFT(735), - [1947] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(476), - [1950] = {.count = 1, .reusable = true}, SHIFT(737), - [1952] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [1954] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [1956] = {.count = 1, .reusable = true}, SHIFT(738), - [1958] = {.count = 1, .reusable = false}, SHIFT(738), - [1960] = {.count = 1, .reusable = true}, SHIFT(739), - [1962] = {.count = 1, .reusable = true}, SHIFT(740), - [1964] = {.count = 1, .reusable = true}, SHIFT(742), - [1966] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [1968] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [1970] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(269), - [1973] = {.count = 1, .reusable = true}, SHIFT(744), - [1975] = {.count = 1, .reusable = true}, SHIFT(745), - [1977] = {.count = 1, .reusable = true}, SHIFT(746), - [1979] = {.count = 1, .reusable = true}, SHIFT(747), - [1981] = {.count = 1, .reusable = true}, SHIFT(748), - [1983] = {.count = 1, .reusable = false}, SHIFT(749), - [1985] = {.count = 1, .reusable = false}, SHIFT(750), - [1987] = {.count = 1, .reusable = false}, SHIFT(751), - [1989] = {.count = 1, .reusable = true}, SHIFT(752), - [1991] = {.count = 1, .reusable = false}, SHIFT(752), - [1993] = {.count = 1, .reusable = true}, SHIFT(754), - [1995] = {.count = 1, .reusable = false}, SHIFT(754), - [1997] = {.count = 1, .reusable = true}, SHIFT(756), - [1999] = {.count = 1, .reusable = false}, SHIFT(756), - [2001] = {.count = 1, .reusable = true}, SHIFT(758), - [2003] = {.count = 1, .reusable = true}, SHIFT(759), - [2005] = {.count = 1, .reusable = true}, SHIFT(761), - [2007] = {.count = 1, .reusable = true}, SHIFT(763), - [2009] = {.count = 1, .reusable = true}, SHIFT(765), - [2011] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .alias_sequence_id = 14), - [2013] = {.count = 1, .reusable = true}, SHIFT(766), - [2015] = {.count = 1, .reusable = true}, SHIFT(767), - [2017] = {.count = 1, .reusable = true}, SHIFT(768), - [2019] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), - [2021] = {.count = 1, .reusable = true}, SHIFT(769), - [2023] = {.count = 1, .reusable = true}, SHIFT(770), - [2025] = {.count = 1, .reusable = true}, SHIFT(772), - [2027] = {.count = 1, .reusable = true}, SHIFT(773), - [2029] = {.count = 1, .reusable = false}, SHIFT(773), - [2031] = {.count = 1, .reusable = true}, SHIFT(774), - [2033] = {.count = 1, .reusable = false}, SHIFT(774), - [2035] = {.count = 1, .reusable = true}, SHIFT(775), - [2037] = {.count = 1, .reusable = false}, SHIFT(775), - [2039] = {.count = 1, .reusable = true}, SHIFT(776), - [2041] = {.count = 1, .reusable = false}, SHIFT(776), - [2043] = {.count = 1, .reusable = true}, SHIFT(777), - [2045] = {.count = 1, .reusable = false}, SHIFT(777), - [2047] = {.count = 1, .reusable = true}, SHIFT(778), - [2049] = {.count = 1, .reusable = false}, SHIFT(778), - [2051] = {.count = 1, .reusable = true}, SHIFT(779), - [2053] = {.count = 1, .reusable = false}, SHIFT(779), - [2055] = {.count = 1, .reusable = true}, SHIFT(780), - [2057] = {.count = 1, .reusable = false}, SHIFT(780), - [2059] = {.count = 1, .reusable = true}, SHIFT(781), - [2061] = {.count = 1, .reusable = false}, SHIFT(781), - [2063] = {.count = 1, .reusable = true}, SHIFT(782), - [2065] = {.count = 1, .reusable = false}, SHIFT(782), - [2067] = {.count = 1, .reusable = true}, SHIFT(783), - [2069] = {.count = 1, .reusable = false}, SHIFT(783), - [2071] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [2073] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [2075] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, .alias_sequence_id = 6), - [2077] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .alias_sequence_id = 14), - [2079] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), - [2081] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), - [2083] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), - [2085] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), - [2087] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), - [2089] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), - [2091] = {.count = 1, .reusable = true}, SHIFT(788), - [2093] = {.count = 1, .reusable = true}, SHIFT(789), - [2095] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), - [2097] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), - [2099] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), - [2101] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), - [2103] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), - [2105] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), - [2107] = {.count = 1, .reusable = true}, SHIFT(790), - [2109] = {.count = 1, .reusable = true}, SHIFT(791), - [2111] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), - [2113] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), - [2115] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), - [2117] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), - [2119] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), - [2121] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), - [2123] = {.count = 1, .reusable = true}, SHIFT(792), - [2125] = {.count = 1, .reusable = true}, SHIFT(793), - [2127] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3), - [2129] = {.count = 1, .reusable = true}, SHIFT(794), - [2131] = {.count = 1, .reusable = true}, SHIFT(796), - [2133] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), - [2135] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), - [2137] = {.count = 1, .reusable = true}, SHIFT(797), - [2139] = {.count = 1, .reusable = false}, SHIFT(797), - [2141] = {.count = 1, .reusable = true}, SHIFT(798), - [2143] = {.count = 1, .reusable = false}, SHIFT(798), - [2145] = {.count = 1, .reusable = true}, SHIFT(799), - [2147] = {.count = 1, .reusable = false}, SHIFT(799), - [2149] = {.count = 1, .reusable = true}, SHIFT(800), - [2151] = {.count = 1, .reusable = false}, SHIFT(800), - [2153] = {.count = 1, .reusable = true}, SHIFT(801), - [2155] = {.count = 1, .reusable = false}, SHIFT(801), - [2157] = {.count = 1, .reusable = true}, SHIFT(802), - [2159] = {.count = 1, .reusable = false}, SHIFT(802), - [2161] = {.count = 1, .reusable = true}, SHIFT(803), - [2163] = {.count = 1, .reusable = false}, SHIFT(803), - [2165] = {.count = 1, .reusable = true}, SHIFT(804), - [2167] = {.count = 1, .reusable = false}, SHIFT(804), - [2169] = {.count = 1, .reusable = true}, SHIFT(805), - [2171] = {.count = 1, .reusable = false}, SHIFT(805), - [2173] = {.count = 1, .reusable = true}, SHIFT(806), - [2175] = {.count = 1, .reusable = false}, SHIFT(806), - [2177] = {.count = 1, .reusable = true}, SHIFT(807), - [2179] = {.count = 1, .reusable = false}, SHIFT(807), - [2181] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), - [2183] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), - [2185] = {.count = 1, .reusable = true}, SHIFT(808), - [2187] = {.count = 1, .reusable = true}, SHIFT(809), - [2189] = {.count = 1, .reusable = false}, SHIFT(809), - [2191] = {.count = 1, .reusable = true}, SHIFT(810), - [2193] = {.count = 1, .reusable = true}, SHIFT(811), - [2195] = {.count = 1, .reusable = false}, SHIFT(811), - [2197] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(360), - [2200] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), - [2202] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [2204] = {.count = 1, .reusable = true}, SHIFT(812), - [2206] = {.count = 1, .reusable = true}, SHIFT(813), - [2208] = {.count = 1, .reusable = false}, SHIFT(813), - [2210] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [2212] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4, .dynamic_precedence = 1), - [2214] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(376), - [2217] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(41), - [2221] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), - [2224] = {.count = 1, .reusable = true}, SHIFT(814), - [2226] = {.count = 1, .reusable = true}, SHIFT(816), - [2228] = {.count = 1, .reusable = true}, SHIFT(817), - [2230] = {.count = 1, .reusable = false}, SHIFT(817), - [2232] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [2234] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [2236] = {.count = 1, .reusable = true}, SHIFT(818), - [2238] = {.count = 1, .reusable = false}, SHIFT(818), - [2240] = {.count = 1, .reusable = true}, SHIFT(819), - [2242] = {.count = 1, .reusable = false}, SHIFT(819), - [2244] = {.count = 1, .reusable = true}, SHIFT(820), - [2246] = {.count = 1, .reusable = false}, SHIFT(820), - [2248] = {.count = 1, .reusable = true}, SHIFT(821), - [2250] = {.count = 1, .reusable = false}, SHIFT(821), - [2252] = {.count = 1, .reusable = true}, SHIFT(822), - [2254] = {.count = 1, .reusable = false}, SHIFT(822), - [2256] = {.count = 1, .reusable = true}, SHIFT(823), - [2258] = {.count = 1, .reusable = false}, SHIFT(823), - [2260] = {.count = 1, .reusable = true}, SHIFT(824), - [2262] = {.count = 1, .reusable = false}, SHIFT(824), - [2264] = {.count = 1, .reusable = true}, SHIFT(825), - [2266] = {.count = 1, .reusable = false}, SHIFT(825), - [2268] = {.count = 1, .reusable = true}, SHIFT(826), - [2270] = {.count = 1, .reusable = false}, SHIFT(826), - [2272] = {.count = 1, .reusable = true}, SHIFT(827), - [2274] = {.count = 1, .reusable = false}, SHIFT(827), - [2276] = {.count = 1, .reusable = true}, SHIFT(828), - [2278] = {.count = 1, .reusable = false}, SHIFT(828), - [2280] = {.count = 1, .reusable = true}, SHIFT(829), - [2282] = {.count = 1, .reusable = false}, SHIFT(829), - [2284] = {.count = 1, .reusable = false}, SHIFT(831), - [2286] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), - [2288] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), - [2290] = {.count = 1, .reusable = true}, SHIFT(832), - [2292] = {.count = 1, .reusable = true}, SHIFT(833), - [2294] = {.count = 1, .reusable = false}, SHIFT(834), - [2296] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1, .alias_sequence_id = 6), - [2298] = {.count = 1, .reusable = false}, SHIFT(835), - [2300] = {.count = 1, .reusable = false}, SHIFT(836), - [2302] = {.count = 1, .reusable = true}, SHIFT(837), - [2304] = {.count = 1, .reusable = false}, SHIFT(838), - [2306] = {.count = 1, .reusable = false}, SHIFT(839), - [2308] = {.count = 1, .reusable = false}, SHIFT(840), - [2310] = {.count = 1, .reusable = false}, SHIFT(841), - [2312] = {.count = 1, .reusable = false}, SHIFT(842), - [2314] = {.count = 1, .reusable = false}, SHIFT(843), - [2316] = {.count = 1, .reusable = false}, SHIFT(844), - [2318] = {.count = 1, .reusable = false}, SHIFT(845), - [2320] = {.count = 1, .reusable = false}, SHIFT(846), - [2322] = {.count = 1, .reusable = false}, SHIFT(847), - [2324] = {.count = 1, .reusable = false}, SHIFT(848), - [2326] = {.count = 1, .reusable = true}, SHIFT(853), - [2328] = {.count = 1, .reusable = false}, SHIFT(853), - [2330] = {.count = 1, .reusable = false}, SHIFT(849), - [2332] = {.count = 1, .reusable = false}, SHIFT(856), - [2334] = {.count = 1, .reusable = true}, SHIFT(857), - [2336] = {.count = 1, .reusable = true}, SHIFT(858), - [2338] = {.count = 1, .reusable = true}, SHIFT(859), - [2340] = {.count = 1, .reusable = false}, SHIFT(859), - [2342] = {.count = 1, .reusable = true}, SHIFT(860), - [2344] = {.count = 1, .reusable = true}, SHIFT(861), - [2346] = {.count = 1, .reusable = true}, SHIFT(863), - [2348] = {.count = 1, .reusable = true}, SHIFT(864), - [2350] = {.count = 1, .reusable = true}, SHIFT(865), - [2352] = {.count = 1, .reusable = false}, SHIFT(865), - [2354] = {.count = 1, .reusable = true}, SHIFT(866), - [2356] = {.count = 1, .reusable = true}, SHIFT(867), - [2358] = {.count = 1, .reusable = true}, SHIFT(868), - [2360] = {.count = 1, .reusable = true}, SHIFT(869), - [2362] = {.count = 1, .reusable = true}, SHIFT(870), - [2364] = {.count = 1, .reusable = true}, SHIFT(871), - [2366] = {.count = 1, .reusable = true}, SHIFT(872), - [2368] = {.count = 1, .reusable = true}, SHIFT(873), - [2370] = {.count = 1, .reusable = false}, SHIFT(874), - [2372] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), - [2374] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), - [2376] = {.count = 1, .reusable = true}, SHIFT(878), - [2378] = {.count = 1, .reusable = true}, SHIFT(879), - [2380] = {.count = 1, .reusable = false}, SHIFT(880), - [2382] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), - [2384] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), - [2386] = {.count = 1, .reusable = true}, SHIFT(883), - [2388] = {.count = 1, .reusable = true}, SHIFT(884), - [2390] = {.count = 1, .reusable = false}, SHIFT(885), - [2392] = {.count = 1, .reusable = true}, SHIFT(889), - [2394] = {.count = 1, .reusable = true}, SHIFT(890), - [2396] = {.count = 1, .reusable = false}, SHIFT(890), - [2398] = {.count = 1, .reusable = true}, SHIFT(891), - [2400] = {.count = 1, .reusable = true}, SHIFT(892), - [2402] = {.count = 1, .reusable = false}, SHIFT(893), - [2404] = {.count = 1, .reusable = false}, SHIFT(894), - [2406] = {.count = 1, .reusable = true}, SHIFT(895), - [2408] = {.count = 1, .reusable = true}, SHIFT(894), - [2410] = {.count = 1, .reusable = false}, SHIFT(896), - [2412] = {.count = 1, .reusable = true}, SHIFT(897), - [2414] = {.count = 1, .reusable = true}, SHIFT(898), - [2416] = {.count = 1, .reusable = false}, SHIFT(899), - [2418] = {.count = 1, .reusable = false}, SHIFT(900), - [2420] = {.count = 1, .reusable = true}, SHIFT(901), - [2422] = {.count = 1, .reusable = false}, SHIFT(902), - [2424] = {.count = 1, .reusable = true}, SHIFT(902), - [2426] = {.count = 1, .reusable = false}, SHIFT(903), - [2428] = {.count = 1, .reusable = false}, SHIFT(904), - [2430] = {.count = 1, .reusable = true}, SHIFT(905), - [2432] = {.count = 1, .reusable = true}, SHIFT(906), - [2434] = {.count = 1, .reusable = true}, SHIFT(908), - [2436] = {.count = 1, .reusable = true}, SHIFT(909), - [2438] = {.count = 1, .reusable = false}, SHIFT(909), - [2440] = {.count = 1, .reusable = true}, SHIFT(911), - [2442] = {.count = 1, .reusable = false}, SHIFT(911), - [2444] = {.count = 1, .reusable = true}, SHIFT(912), - [2446] = {.count = 1, .reusable = false}, SHIFT(912), - [2448] = {.count = 1, .reusable = true}, SHIFT(913), - [2450] = {.count = 1, .reusable = false}, SHIFT(913), - [2452] = {.count = 1, .reusable = true}, SHIFT(914), - [2454] = {.count = 1, .reusable = false}, SHIFT(914), - [2456] = {.count = 1, .reusable = true}, SHIFT(915), - [2458] = {.count = 1, .reusable = false}, SHIFT(915), - [2460] = {.count = 1, .reusable = true}, SHIFT(916), - [2462] = {.count = 1, .reusable = false}, SHIFT(916), - [2464] = {.count = 1, .reusable = true}, SHIFT(917), - [2466] = {.count = 1, .reusable = false}, SHIFT(917), - [2468] = {.count = 1, .reusable = true}, SHIFT(918), - [2470] = {.count = 1, .reusable = false}, SHIFT(918), - [2472] = {.count = 1, .reusable = true}, SHIFT(919), - [2474] = {.count = 1, .reusable = false}, SHIFT(919), - [2476] = {.count = 1, .reusable = true}, SHIFT(920), - [2478] = {.count = 1, .reusable = false}, SHIFT(920), - [2480] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [2482] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [2484] = {.count = 1, .reusable = true}, SHIFT(921), - [2486] = {.count = 1, .reusable = true}, SHIFT(922), - [2488] = {.count = 1, .reusable = false}, SHIFT(922), - [2490] = {.count = 1, .reusable = true}, SHIFT(923), - [2492] = {.count = 1, .reusable = false}, SHIFT(923), - [2494] = {.count = 1, .reusable = true}, SHIFT(924), - [2496] = {.count = 1, .reusable = false}, SHIFT(925), - [2498] = {.count = 1, .reusable = true}, SHIFT(926), - [2500] = {.count = 1, .reusable = false}, SHIFT(926), - [2502] = {.count = 1, .reusable = true}, SHIFT(927), - [2504] = {.count = 1, .reusable = true}, SHIFT(928), - [2506] = {.count = 1, .reusable = false}, SHIFT(928), - [2508] = {.count = 1, .reusable = true}, SHIFT(929), - [2510] = {.count = 1, .reusable = true}, SHIFT(930), - [2512] = {.count = 1, .reusable = true}, SHIFT(931), - [2514] = {.count = 1, .reusable = false}, SHIFT(931), - [2516] = {.count = 1, .reusable = true}, SHIFT(932), - [2518] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [2520] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [2522] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), - [2524] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), - [2526] = {.count = 1, .reusable = true}, SHIFT(933), - [2528] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2530] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2532] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(699), - [2535] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), - [2537] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), - [2539] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), - [2541] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), - [2543] = {.count = 1, .reusable = true}, SHIFT(934), - [2545] = {.count = 1, .reusable = true}, SHIFT(935), - [2547] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), - [2549] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), - [2551] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), - [2553] = {.count = 1, .reusable = true}, SHIFT(937), - [2555] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), - [2557] = {.count = 1, .reusable = true}, SHIFT(938), - [2559] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), - [2561] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), - [2563] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), - [2565] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), - [2567] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), - [2569] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), - [2571] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), - [2573] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), - [2575] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), - [2577] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), - [2579] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), - [2581] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), - [2583] = {.count = 1, .reusable = true}, SHIFT(939), - [2585] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(722), - [2588] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), - [2590] = {.count = 1, .reusable = true}, SHIFT(940), - [2592] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [2594] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [2596] = {.count = 1, .reusable = true}, SHIFT(941), - [2598] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 31), - [2600] = {.count = 1, .reusable = true}, SHIFT(942), - [2602] = {.count = 1, .reusable = true}, SHIFT(943), - [2604] = {.count = 1, .reusable = false}, SHIFT(943), - [2606] = {.count = 1, .reusable = true}, SHIFT(945), - [2608] = {.count = 1, .reusable = true}, SHIFT(947), - [2610] = {.count = 1, .reusable = false}, SHIFT(947), - [2612] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(479), - [2615] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [2617] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(480), - [2620] = {.count = 1, .reusable = true}, SHIFT(949), - [2622] = {.count = 1, .reusable = true}, SHIFT(950), - [2624] = {.count = 1, .reusable = true}, SHIFT(951), - [2626] = {.count = 1, .reusable = true}, SHIFT(952), - [2628] = {.count = 1, .reusable = true}, SHIFT(953), - [2630] = {.count = 1, .reusable = true}, SHIFT(954), - [2632] = {.count = 1, .reusable = true}, SHIFT(955), - [2634] = {.count = 1, .reusable = true}, SHIFT(956), - [2636] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), - [2638] = {.count = 1, .reusable = true}, SHIFT(957), - [2640] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(772), - [2643] = {.count = 1, .reusable = true}, SHIFT(958), - [2645] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 32), - [2647] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 33), - [2649] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 14), - [2651] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), - [2653] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), - [2655] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), - [2657] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), - [2659] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), - [2661] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), - [2663] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), - [2665] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), - [2667] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), - [2669] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), - [2671] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), - [2673] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), - [2675] = {.count = 1, .reusable = true}, SHIFT(961), - [2677] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(796), - [2680] = {.count = 1, .reusable = true}, SHIFT(962), - [2682] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), - [2684] = {.count = 1, .reusable = true}, SHIFT(963), - [2686] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), - [2688] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), - [2690] = {.count = 1, .reusable = true}, SHIFT(964), - [2692] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), - [2694] = {.count = 1, .reusable = true}, SHIFT(965), - [2696] = {.count = 1, .reusable = true}, SHIFT(966), - [2698] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(816), - [2701] = {.count = 1, .reusable = true}, SHIFT(967), - [2703] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), - [2705] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), - [2707] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), - [2709] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), - [2711] = {.count = 1, .reusable = false}, SHIFT(968), - [2713] = {.count = 1, .reusable = false}, SHIFT(972), - [2715] = {.count = 1, .reusable = false}, SHIFT(976), - [2717] = {.count = 1, .reusable = false}, SHIFT(980), - [2719] = {.count = 1, .reusable = true}, SHIFT(981), - [2721] = {.count = 1, .reusable = true}, SHIFT(982), - [2723] = {.count = 1, .reusable = true}, SHIFT(983), - [2725] = {.count = 1, .reusable = true}, SHIFT(984), - [2727] = {.count = 1, .reusable = true}, SHIFT(985), - [2729] = {.count = 1, .reusable = false}, SHIFT(985), - [2731] = {.count = 1, .reusable = true}, SHIFT(986), - [2733] = {.count = 1, .reusable = true}, SHIFT(987), - [2735] = {.count = 1, .reusable = true}, SHIFT(989), - [2737] = {.count = 1, .reusable = true}, SHIFT(990), - [2739] = {.count = 1, .reusable = true}, SHIFT(991), - [2741] = {.count = 1, .reusable = false}, SHIFT(991), - [2743] = {.count = 1, .reusable = true}, SHIFT(992), - [2745] = {.count = 1, .reusable = true}, SHIFT(993), - [2747] = {.count = 1, .reusable = true}, SHIFT(994), - [2749] = {.count = 1, .reusable = true}, SHIFT(995), - [2751] = {.count = 1, .reusable = true}, SHIFT(996), - [2753] = {.count = 1, .reusable = true}, SHIFT(997), - [2755] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2, .alias_sequence_id = 6), - [2757] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2, .alias_sequence_id = 14), - [2759] = {.count = 1, .reusable = true}, SHIFT(1002), - [2761] = {.count = 1, .reusable = false}, SHIFT(1002), - [2763] = {.count = 1, .reusable = true}, SHIFT(1003), - [2765] = {.count = 1, .reusable = false}, SHIFT(1003), - [2767] = {.count = 1, .reusable = true}, SHIFT(1004), - [2769] = {.count = 1, .reusable = false}, SHIFT(1005), - [2771] = {.count = 1, .reusable = true}, SHIFT(1008), - [2773] = {.count = 1, .reusable = false}, SHIFT(1008), - [2775] = {.count = 1, .reusable = true}, SHIFT(1009), - [2777] = {.count = 1, .reusable = true}, SHIFT(1010), - [2779] = {.count = 1, .reusable = true}, SHIFT(1011), - [2781] = {.count = 1, .reusable = false}, SHIFT(1011), - [2783] = {.count = 1, .reusable = true}, SHIFT(1012), - [2785] = {.count = 1, .reusable = true}, SHIFT(1013), - [2787] = {.count = 1, .reusable = false}, SHIFT(1014), - [2789] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), - [2791] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), - [2793] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), - [2795] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), - [2797] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), - [2799] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), - [2801] = {.count = 1, .reusable = true}, SHIFT(1016), - [2803] = {.count = 1, .reusable = true}, SHIFT(1017), - [2805] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(58), - [2808] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(59), - [2811] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(620), - [2814] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [2816] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(622), - [2819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(623), - [2822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(66), - [2825] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(626), - [2828] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(67), - [2831] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(308), - [2834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(627), - [2837] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(628), - [2840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(629), - [2843] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(630), - [2846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(631), - [2849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(632), - [2852] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(633), - [2855] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(634), - [2858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(635), - [2861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(636), - [2864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(637), - [2867] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(644), - [2870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(644), - [2873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(638), - [2876] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), - [2878] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), - [2880] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), - [2882] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), - [2884] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), - [2886] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), - [2888] = {.count = 1, .reusable = true}, SHIFT(1018), - [2890] = {.count = 1, .reusable = true}, SHIFT(1019), - [2892] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), - [2894] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), - [2896] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), - [2898] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), - [2900] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), - [2902] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), - [2904] = {.count = 1, .reusable = true}, SHIFT(1020), - [2906] = {.count = 1, .reusable = true}, SHIFT(1021), - [2908] = {.count = 1, .reusable = true}, SHIFT(1022), - [2910] = {.count = 1, .reusable = true}, SHIFT(1024), - [2912] = {.count = 1, .reusable = false}, SHIFT(1025), - [2914] = {.count = 1, .reusable = false}, SHIFT(1026), - [2916] = {.count = 1, .reusable = false}, SHIFT(1027), - [2918] = {.count = 1, .reusable = false}, SHIFT(1028), - [2920] = {.count = 1, .reusable = false}, SHIFT(1029), - [2922] = {.count = 1, .reusable = false}, SHIFT(1030), - [2924] = {.count = 1, .reusable = false}, SHIFT(1031), - [2926] = {.count = 1, .reusable = true}, SHIFT(1033), - [2928] = {.count = 1, .reusable = false}, SHIFT(1033), - [2930] = {.count = 1, .reusable = true}, SHIFT(1034), - [2932] = {.count = 1, .reusable = false}, SHIFT(1034), - [2934] = {.count = 1, .reusable = true}, SHIFT(1035), - [2936] = {.count = 1, .reusable = false}, SHIFT(1035), - [2938] = {.count = 1, .reusable = true}, SHIFT(1036), - [2940] = {.count = 1, .reusable = false}, SHIFT(1036), - [2942] = {.count = 1, .reusable = true}, SHIFT(1037), - [2944] = {.count = 1, .reusable = false}, SHIFT(1037), - [2946] = {.count = 1, .reusable = true}, SHIFT(1038), - [2948] = {.count = 1, .reusable = false}, SHIFT(1038), - [2950] = {.count = 1, .reusable = true}, SHIFT(1039), - [2952] = {.count = 1, .reusable = false}, SHIFT(1039), - [2954] = {.count = 1, .reusable = true}, SHIFT(1040), - [2956] = {.count = 1, .reusable = false}, SHIFT(1040), - [2958] = {.count = 1, .reusable = true}, SHIFT(1041), - [2960] = {.count = 1, .reusable = false}, SHIFT(1041), - [2962] = {.count = 1, .reusable = true}, SHIFT(1042), - [2964] = {.count = 1, .reusable = false}, SHIFT(1042), - [2966] = {.count = 1, .reusable = true}, SHIFT(1043), - [2968] = {.count = 1, .reusable = false}, SHIFT(1043), - [2970] = {.count = 1, .reusable = true}, SHIFT(1045), - [2972] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(908), - [2975] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), - [2977] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), - [2979] = {.count = 1, .reusable = true}, SHIFT(1046), - [2981] = {.count = 1, .reusable = true}, SHIFT(1048), - [2983] = {.count = 1, .reusable = true}, SHIFT(1049), - [2985] = {.count = 1, .reusable = true}, SHIFT(1050), - [2987] = {.count = 1, .reusable = true}, SHIFT(1051), - [2989] = {.count = 1, .reusable = true}, SHIFT(1052), - [2991] = {.count = 1, .reusable = false}, SHIFT(1052), - [2993] = {.count = 1, .reusable = true}, SHIFT(1053), - [2995] = {.count = 1, .reusable = true}, SHIFT(1054), - [2997] = {.count = 1, .reusable = false}, SHIFT(1054), - [2999] = {.count = 1, .reusable = true}, SHIFT(1055), - [3001] = {.count = 1, .reusable = true}, SHIFT(1056), - [3003] = {.count = 1, .reusable = false}, SHIFT(1056), - [3005] = {.count = 1, .reusable = true}, SHIFT(1057), - [3007] = {.count = 1, .reusable = true}, SHIFT(1058), - [3009] = {.count = 1, .reusable = false}, SHIFT(1058), - [3011] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), - [3013] = {.count = 1, .reusable = false}, SHIFT(225), - [3015] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), - [3017] = {.count = 1, .reusable = false}, SHIFT(237), - [3019] = {.count = 1, .reusable = true}, SHIFT(1059), - [3021] = {.count = 1, .reusable = false}, SHIFT(1059), - [3023] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), - [3025] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), - [3027] = {.count = 1, .reusable = true}, SHIFT(1060), - [3029] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), - [3031] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), - [3033] = {.count = 1, .reusable = true}, SHIFT(1062), - [3035] = {.count = 1, .reusable = false}, SHIFT(1062), - [3037] = {.count = 1, .reusable = false}, SHIFT(250), - [3039] = {.count = 1, .reusable = false}, SHIFT(252), - [3041] = {.count = 1, .reusable = true}, SHIFT(1063), - [3043] = {.count = 1, .reusable = false}, SHIFT(1063), - [3045] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [3047] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [3049] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [3051] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3053] = {.count = 1, .reusable = true}, SHIFT(1064), - [3055] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1065), - [3058] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), - [3060] = {.count = 1, .reusable = false}, SHIFT(324), - [3062] = {.count = 1, .reusable = false}, SHIFT(325), - [3064] = {.count = 1, .reusable = true}, SHIFT(1066), - [3066] = {.count = 1, .reusable = false}, SHIFT(1066), - [3068] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 40), - [3070] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 41), - [3072] = {.count = 1, .reusable = false}, SHIFT(353), - [3074] = {.count = 1, .reusable = false}, SHIFT(354), - [3076] = {.count = 1, .reusable = true}, SHIFT(1067), - [3078] = {.count = 1, .reusable = false}, SHIFT(1067), - [3080] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), - [3082] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), - [3084] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), - [3086] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), - [3088] = {.count = 1, .reusable = false}, SHIFT(387), - [3090] = {.count = 1, .reusable = false}, SHIFT(388), - [3092] = {.count = 1, .reusable = true}, SHIFT(1068), - [3094] = {.count = 1, .reusable = false}, SHIFT(1068), - [3096] = {.count = 1, .reusable = true}, SHIFT(1069), - [3098] = {.count = 1, .reusable = true}, SHIFT(1070), - [3100] = {.count = 1, .reusable = false}, SHIFT(1071), - [3102] = {.count = 1, .reusable = true}, SHIFT(1074), - [3104] = {.count = 1, .reusable = true}, SHIFT(1075), - [3106] = {.count = 1, .reusable = false}, SHIFT(1076), - [3108] = {.count = 1, .reusable = true}, SHIFT(1079), - [3110] = {.count = 1, .reusable = true}, SHIFT(1080), - [3112] = {.count = 1, .reusable = false}, SHIFT(1081), - [3114] = {.count = 1, .reusable = false}, SHIFT(1084), - [3116] = {.count = 1, .reusable = false}, SHIFT(1088), - [3118] = {.count = 1, .reusable = false}, SHIFT(1092), - [3120] = {.count = 1, .reusable = true}, SHIFT(1096), - [3122] = {.count = 1, .reusable = false}, SHIFT(1096), - [3124] = {.count = 1, .reusable = true}, SHIFT(1097), - [3126] = {.count = 1, .reusable = false}, SHIFT(1097), - [3128] = {.count = 1, .reusable = true}, SHIFT(1098), - [3130] = {.count = 1, .reusable = false}, SHIFT(1099), - [3132] = {.count = 1, .reusable = true}, SHIFT(1102), - [3134] = {.count = 1, .reusable = false}, SHIFT(1102), - [3136] = {.count = 1, .reusable = true}, SHIFT(1103), - [3138] = {.count = 1, .reusable = true}, SHIFT(1104), - [3140] = {.count = 1, .reusable = true}, SHIFT(1105), - [3142] = {.count = 1, .reusable = false}, SHIFT(1105), - [3144] = {.count = 1, .reusable = true}, SHIFT(1106), - [3146] = {.count = 1, .reusable = true}, SHIFT(1107), - [3148] = {.count = 1, .reusable = false}, SHIFT(1108), - [3150] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(141), - [3153] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(142), - [3156] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(834), - [3159] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(835), - [3162] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(836), - [3165] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(146), - [3168] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(837), - [3171] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(147), - [3174] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(515), - [3177] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(838), - [3180] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(839), - [3183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(840), - [3186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(841), - [3189] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(842), - [3192] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(843), - [3195] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(844), - [3198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(845), - [3201] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(846), - [3204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(847), - [3207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(848), - [3210] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(853), - [3213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(853), - [3216] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(849), - [3219] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 32), - [3221] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 33), - [3223] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 14), - [3225] = {.count = 1, .reusable = true}, SHIFT(1112), - [3227] = {.count = 1, .reusable = true}, SHIFT(1113), - [3229] = {.count = 1, .reusable = true}, SHIFT(1115), - [3231] = {.count = 1, .reusable = true}, SHIFT(1116), - [3233] = {.count = 1, .reusable = true}, SHIFT(1117), - [3235] = {.count = 1, .reusable = true}, SHIFT(1118), - [3237] = {.count = 1, .reusable = false}, SHIFT(1118), - [3239] = {.count = 1, .reusable = true}, SHIFT(1119), - [3241] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), - [3243] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), - [3245] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), - [3247] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), - [3249] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), - [3251] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), - [3253] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), - [3255] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), - [3257] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), - [3259] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), - [3261] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), - [3263] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), - [3265] = {.count = 1, .reusable = true}, SHIFT(1120), - [3267] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1024), - [3270] = {.count = 1, .reusable = true}, SHIFT(1121), - [3272] = {.count = 1, .reusable = true}, SHIFT(1122), - [3274] = {.count = 1, .reusable = true}, SHIFT(1123), - [3276] = {.count = 1, .reusable = false}, SHIFT(1123), - [3278] = {.count = 1, .reusable = true}, SHIFT(1124), - [3280] = {.count = 1, .reusable = true}, SHIFT(1125), - [3282] = {.count = 1, .reusable = true}, SHIFT(1126), - [3284] = {.count = 1, .reusable = true}, SHIFT(1127), - [3286] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [3288] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [3290] = {.count = 1, .reusable = false}, SHIFT(1128), - [3292] = {.count = 1, .reusable = true}, SHIFT(1129), - [3294] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 5), - [3296] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 5), - [3298] = {.count = 1, .reusable = false}, SHIFT(404), - [3300] = {.count = 1, .reusable = false}, SHIFT(405), - [3302] = {.count = 1, .reusable = true}, SHIFT(1130), - [3304] = {.count = 1, .reusable = false}, SHIFT(1130), - [3306] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), - [3308] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), - [3310] = {.count = 1, .reusable = false}, SHIFT(1131), - [3312] = {.count = 1, .reusable = false}, SHIFT(1132), - [3314] = {.count = 1, .reusable = false}, SHIFT(1133), - [3316] = {.count = 1, .reusable = false}, SHIFT(1134), - [3318] = {.count = 1, .reusable = false}, SHIFT(1135), - [3320] = {.count = 1, .reusable = false}, SHIFT(1136), - [3322] = {.count = 1, .reusable = false}, SHIFT(1137), - [3324] = {.count = 1, .reusable = true}, SHIFT(1139), - [3326] = {.count = 1, .reusable = true}, SHIFT(1140), - [3328] = {.count = 1, .reusable = false}, SHIFT(1140), - [3330] = {.count = 1, .reusable = true}, SHIFT(1141), - [3332] = {.count = 1, .reusable = true}, SHIFT(1142), - [3334] = {.count = 1, .reusable = false}, SHIFT(1142), - [3336] = {.count = 1, .reusable = true}, SHIFT(1143), - [3338] = {.count = 1, .reusable = true}, SHIFT(1145), - [3340] = {.count = 1, .reusable = true}, SHIFT(1147), - [3342] = {.count = 1, .reusable = false}, SHIFT(1147), - [3344] = {.count = 1, .reusable = true}, SHIFT(1148), - [3346] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3348] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), - [3350] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), - [3352] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(934), - [3355] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), - [3357] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [3359] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [3361] = {.count = 1, .reusable = true}, SHIFT(1149), - [3363] = {.count = 1, .reusable = true}, SHIFT(1150), - [3365] = {.count = 1, .reusable = true}, SHIFT(1151), - [3367] = {.count = 1, .reusable = true}, SHIFT(1152), - [3369] = {.count = 1, .reusable = true}, SHIFT(1153), - [3371] = {.count = 1, .reusable = true}, SHIFT(1154), - [3373] = {.count = 1, .reusable = true}, SHIFT(1155), - [3375] = {.count = 1, .reusable = true}, SHIFT(1156), - [3377] = {.count = 1, .reusable = false}, SHIFT(1157), - [3379] = {.count = 1, .reusable = true}, SHIFT(1160), - [3381] = {.count = 1, .reusable = true}, SHIFT(1161), - [3383] = {.count = 1, .reusable = false}, SHIFT(1162), - [3385] = {.count = 1, .reusable = true}, SHIFT(1165), - [3387] = {.count = 1, .reusable = true}, SHIFT(1166), - [3389] = {.count = 1, .reusable = false}, SHIFT(1167), - [3391] = {.count = 1, .reusable = true}, SHIFT(1170), - [3393] = {.count = 1, .reusable = true}, SHIFT(1171), - [3395] = {.count = 1, .reusable = true}, SHIFT(1173), - [3397] = {.count = 1, .reusable = true}, SHIFT(1174), - [3399] = {.count = 1, .reusable = true}, SHIFT(1175), - [3401] = {.count = 1, .reusable = true}, SHIFT(1176), - [3403] = {.count = 1, .reusable = false}, SHIFT(1176), - [3405] = {.count = 1, .reusable = true}, SHIFT(1177), - [3407] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 40), - [3409] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 41), - [3411] = {.count = 1, .reusable = false}, SHIFT(1178), - [3413] = {.count = 1, .reusable = false}, SHIFT(1179), - [3415] = {.count = 1, .reusable = false}, SHIFT(1180), - [3417] = {.count = 1, .reusable = false}, SHIFT(1181), - [3419] = {.count = 1, .reusable = false}, SHIFT(1182), - [3421] = {.count = 1, .reusable = false}, SHIFT(1183), - [3423] = {.count = 1, .reusable = false}, SHIFT(1184), - [3425] = {.count = 1, .reusable = true}, SHIFT(1188), - [3427] = {.count = 1, .reusable = false}, SHIFT(1188), - [3429] = {.count = 1, .reusable = true}, SHIFT(1189), - [3431] = {.count = 1, .reusable = true}, SHIFT(1190), - [3433] = {.count = 1, .reusable = false}, SHIFT(1190), - [3435] = {.count = 1, .reusable = true}, SHIFT(1191), - [3437] = {.count = 1, .reusable = true}, SHIFT(1192), - [3439] = {.count = 1, .reusable = false}, SHIFT(1192), - [3441] = {.count = 1, .reusable = false}, SHIFT(656), - [3443] = {.count = 1, .reusable = false}, SHIFT(657), - [3445] = {.count = 1, .reusable = true}, SHIFT(1193), - [3447] = {.count = 1, .reusable = false}, SHIFT(1193), - [3449] = {.count = 1, .reusable = true}, SHIFT(1194), - [3451] = {.count = 1, .reusable = false}, SHIFT(1194), - [3453] = {.count = 1, .reusable = true}, SHIFT(1195), - [3455] = {.count = 1, .reusable = false}, SHIFT(1196), - [3457] = {.count = 1, .reusable = true}, SHIFT(1197), - [3459] = {.count = 1, .reusable = false}, SHIFT(1197), - [3461] = {.count = 1, .reusable = true}, SHIFT(1198), - [3463] = {.count = 1, .reusable = true}, SHIFT(1199), - [3465] = {.count = 1, .reusable = false}, SHIFT(1199), - [3467] = {.count = 1, .reusable = true}, SHIFT(1201), - [3469] = {.count = 1, .reusable = false}, SHIFT(1201), - [3471] = {.count = 1, .reusable = true}, SHIFT(1202), - [3473] = {.count = 1, .reusable = true}, SHIFT(1203), - [3475] = {.count = 1, .reusable = true}, SHIFT(1204), - [3477] = {.count = 1, .reusable = false}, SHIFT(1204), - [3479] = {.count = 1, .reusable = true}, SHIFT(1205), - [3481] = {.count = 1, .reusable = true}, SHIFT(1206), - [3483] = {.count = 1, .reusable = true}, SHIFT(1207), - [3485] = {.count = 1, .reusable = true}, SHIFT(1208), - [3487] = {.count = 1, .reusable = true}, SHIFT(1209), - [3489] = {.count = 1, .reusable = true}, SHIFT(1210), - [3491] = {.count = 1, .reusable = true}, SHIFT(1212), - [3493] = {.count = 1, .reusable = false}, SHIFT(1212), - [3495] = {.count = 1, .reusable = true}, SHIFT(1213), - [3497] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 6), - [3499] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 6), - [3501] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [3503] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [3505] = {.count = 1, .reusable = true}, SHIFT(1215), - [3507] = {.count = 1, .reusable = true}, SHIFT(1217), - [3509] = {.count = 1, .reusable = false}, SHIFT(1217), - [3511] = {.count = 1, .reusable = true}, SHIFT(1218), - [3513] = {.count = 1, .reusable = true}, SHIFT(1219), - [3515] = {.count = 1, .reusable = true}, SHIFT(1220), - [3517] = {.count = 1, .reusable = true}, SHIFT(1221), - [3519] = {.count = 1, .reusable = true}, SHIFT(1222), - [3521] = {.count = 1, .reusable = true}, SHIFT(1223), - [3523] = {.count = 1, .reusable = false}, SHIFT(1224), - [3525] = {.count = 1, .reusable = false}, SHIFT(1225), - [3527] = {.count = 1, .reusable = false}, SHIFT(1226), - [3529] = {.count = 1, .reusable = false}, SHIFT(1227), - [3531] = {.count = 1, .reusable = false}, SHIFT(1228), - [3533] = {.count = 1, .reusable = false}, SHIFT(1229), - [3535] = {.count = 1, .reusable = false}, SHIFT(1230), - [3537] = {.count = 1, .reusable = true}, SHIFT(1234), - [3539] = {.count = 1, .reusable = false}, SHIFT(1234), - [3541] = {.count = 1, .reusable = true}, SHIFT(1235), - [3543] = {.count = 1, .reusable = true}, SHIFT(1236), - [3545] = {.count = 1, .reusable = false}, SHIFT(1236), - [3547] = {.count = 1, .reusable = true}, SHIFT(1237), - [3549] = {.count = 1, .reusable = true}, SHIFT(1238), - [3551] = {.count = 1, .reusable = false}, SHIFT(1238), - [3553] = {.count = 1, .reusable = true}, SHIFT(1239), - [3555] = {.count = 1, .reusable = true}, SHIFT(1240), - [3557] = {.count = 1, .reusable = true}, SHIFT(1241), - [3559] = {.count = 1, .reusable = false}, SHIFT(1241), - [3561] = {.count = 1, .reusable = true}, SHIFT(1242), - [3563] = {.count = 1, .reusable = true}, SHIFT(1243), - [3565] = {.count = 1, .reusable = true}, SHIFT(1244), - [3567] = {.count = 1, .reusable = true}, SHIFT(1245), - [3569] = {.count = 1, .reusable = false}, SHIFT(1246), - [3571] = {.count = 1, .reusable = true}, SHIFT(1247), - [3573] = {.count = 1, .reusable = true}, SHIFT(1249), - [3575] = {.count = 1, .reusable = true}, SHIFT(1251), - [3577] = {.count = 1, .reusable = false}, SHIFT(1251), - [3579] = {.count = 1, .reusable = true}, SHIFT(1252), - [3581] = {.count = 1, .reusable = true}, SHIFT(1253), - [3583] = {.count = 1, .reusable = true}, SHIFT(1254), - [3585] = {.count = 1, .reusable = true}, SHIFT(1255), - [3587] = {.count = 1, .reusable = true}, SHIFT(1256), - [3589] = {.count = 1, .reusable = true}, SHIFT(1257), - [3591] = {.count = 1, .reusable = false}, SHIFT(1257), - [3593] = {.count = 1, .reusable = true}, SHIFT(1258), - [3595] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [3597] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [3599] = {.count = 1, .reusable = true}, SHIFT(1259), - [3601] = {.count = 1, .reusable = false}, SHIFT(1259), - [3603] = {.count = 1, .reusable = true}, SHIFT(1260), - [3605] = {.count = 1, .reusable = false}, SHIFT(1260), - [3607] = {.count = 1, .reusable = true}, SHIFT(1261), - [3609] = {.count = 1, .reusable = false}, SHIFT(1262), - [3611] = {.count = 1, .reusable = true}, SHIFT(1263), - [3613] = {.count = 1, .reusable = false}, SHIFT(1263), - [3615] = {.count = 1, .reusable = true}, SHIFT(1264), - [3617] = {.count = 1, .reusable = true}, SHIFT(1265), - [3619] = {.count = 1, .reusable = false}, SHIFT(1265), - [3621] = {.count = 1, .reusable = true}, SHIFT(1266), - [3623] = {.count = 1, .reusable = true}, SHIFT(1268), - [3625] = {.count = 1, .reusable = false}, SHIFT(1268), - [3627] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), - [3629] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), - [3631] = {.count = 1, .reusable = true}, SHIFT(1270), - [3633] = {.count = 1, .reusable = true}, SHIFT(1272), - [3635] = {.count = 1, .reusable = true}, SHIFT(1273), - [3637] = {.count = 1, .reusable = true}, SHIFT(1274), - [3639] = {.count = 1, .reusable = false}, SHIFT(1274), - [3641] = {.count = 1, .reusable = true}, SHIFT(1275), - [3643] = {.count = 1, .reusable = true}, SHIFT(1276), - [3645] = {.count = 1, .reusable = true}, SHIFT(1277), - [3647] = {.count = 1, .reusable = true}, SHIFT(1278), - [3649] = {.count = 1, .reusable = false}, SHIFT(1279), - [3651] = {.count = 1, .reusable = true}, SHIFT(1280), - [3653] = {.count = 1, .reusable = true}, SHIFT(1282), - [3655] = {.count = 1, .reusable = true}, SHIFT(1284), - [3657] = {.count = 1, .reusable = false}, SHIFT(1284), - [3659] = {.count = 1, .reusable = true}, SHIFT(1285), - [3661] = {.count = 1, .reusable = true}, SHIFT(1286), - [3663] = {.count = 1, .reusable = false}, SHIFT(1286), - [3665] = {.count = 1, .reusable = true}, SHIFT(1287), - [3667] = {.count = 1, .reusable = false}, SHIFT(1287), - [3669] = {.count = 1, .reusable = true}, SHIFT(1288), - [3671] = {.count = 1, .reusable = false}, SHIFT(1289), - [3673] = {.count = 1, .reusable = true}, SHIFT(1290), - [3675] = {.count = 1, .reusable = false}, SHIFT(1290), - [3677] = {.count = 1, .reusable = true}, SHIFT(1291), - [3679] = {.count = 1, .reusable = true}, SHIFT(1292), - [3681] = {.count = 1, .reusable = false}, SHIFT(1292), - [3683] = {.count = 1, .reusable = true}, SHIFT(1295), - [3685] = {.count = 1, .reusable = true}, SHIFT(1297), - [3687] = {.count = 1, .reusable = false}, SHIFT(1297), - [3689] = {.count = 1, .reusable = true}, SHIFT(1299), - [3691] = {.count = 1, .reusable = true}, SHIFT(1300), - [3693] = {.count = 1, .reusable = false}, SHIFT(1300), - [3695] = {.count = 1, .reusable = true}, SHIFT(1301), - [3697] = {.count = 1, .reusable = true}, SHIFT(1302), - [3699] = {.count = 1, .reusable = false}, SHIFT(1302), - [3701] = {.count = 1, .reusable = true}, SHIFT(1303), - [3703] = {.count = 1, .reusable = true}, SHIFT(1304), - [3705] = {.count = 1, .reusable = true}, SHIFT(1305), - [3707] = {.count = 1, .reusable = true}, SHIFT(1306), - [3709] = {.count = 1, .reusable = true}, SHIFT(1307), - [3711] = {.count = 1, .reusable = false}, SHIFT(1307), - [3713] = {.count = 1, .reusable = true}, SHIFT(1308), - [3715] = {.count = 1, .reusable = true}, SHIFT(1309), - [3717] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), - [3719] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), - [3721] = {.count = 1, .reusable = true}, SHIFT(1312), - [3723] = {.count = 1, .reusable = true}, SHIFT(1313), - [3725] = {.count = 1, .reusable = false}, SHIFT(1313), - [3727] = {.count = 1, .reusable = true}, SHIFT(1314), - [3729] = {.count = 1, .reusable = false}, SHIFT(1314), - [3731] = {.count = 1, .reusable = true}, SHIFT(1315), - [3733] = {.count = 1, .reusable = false}, SHIFT(1316), - [3735] = {.count = 1, .reusable = true}, SHIFT(1317), - [3737] = {.count = 1, .reusable = false}, SHIFT(1317), - [3739] = {.count = 1, .reusable = true}, SHIFT(1318), - [3741] = {.count = 1, .reusable = true}, SHIFT(1319), - [3743] = {.count = 1, .reusable = false}, SHIFT(1319), - [3745] = {.count = 1, .reusable = true}, SHIFT(1322), - [3747] = {.count = 1, .reusable = true}, SHIFT(1324), - [3749] = {.count = 1, .reusable = false}, SHIFT(1324), - [3751] = {.count = 1, .reusable = true}, SHIFT(1325), - [3753] = {.count = 1, .reusable = true}, SHIFT(1326), - [3755] = {.count = 1, .reusable = true}, SHIFT(1327), - [3757] = {.count = 1, .reusable = true}, SHIFT(1328), - [3759] = {.count = 1, .reusable = true}, SHIFT(1329), - [3761] = {.count = 1, .reusable = false}, SHIFT(1329), - [3763] = {.count = 1, .reusable = true}, SHIFT(1330), - [3765] = {.count = 1, .reusable = true}, SHIFT(1332), - [3767] = {.count = 1, .reusable = false}, SHIFT(1334), - [3769] = {.count = 1, .reusable = true}, SHIFT(1335), - [3771] = {.count = 1, .reusable = true}, SHIFT(1337), - [3773] = {.count = 1, .reusable = false}, SHIFT(1337), - [3775] = {.count = 1, .reusable = true}, SHIFT(1338), - [3777] = {.count = 1, .reusable = true}, SHIFT(1340), - [3779] = {.count = 1, .reusable = true}, SHIFT(1341), - [3781] = {.count = 1, .reusable = false}, SHIFT(1341), - [3783] = {.count = 1, .reusable = true}, SHIFT(1342), - [3785] = {.count = 1, .reusable = true}, SHIFT(1343), - [3787] = {.count = 1, .reusable = false}, SHIFT(1343), - [3789] = {.count = 1, .reusable = true}, SHIFT(1344), - [3791] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), - [3793] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), - [3795] = {.count = 1, .reusable = true}, SHIFT(1346), - [3797] = {.count = 1, .reusable = true}, SHIFT(1347), - [3799] = {.count = 1, .reusable = true}, SHIFT(1348), - [3801] = {.count = 1, .reusable = true}, SHIFT(1349), - [3803] = {.count = 1, .reusable = true}, SHIFT(1350), - [3805] = {.count = 1, .reusable = false}, SHIFT(1350), - [3807] = {.count = 1, .reusable = true}, SHIFT(1351), - [3809] = {.count = 1, .reusable = true}, SHIFT(1353), - [3811] = {.count = 1, .reusable = true}, SHIFT(1356), - [3813] = {.count = 1, .reusable = true}, SHIFT(1357), - [3815] = {.count = 1, .reusable = false}, SHIFT(1357), - [3817] = {.count = 1, .reusable = true}, SHIFT(1358), - [3819] = {.count = 1, .reusable = true}, SHIFT(1359), - [3821] = {.count = 1, .reusable = false}, SHIFT(1359), - [3823] = {.count = 1, .reusable = true}, SHIFT(1361), - [3825] = {.count = 1, .reusable = true}, SHIFT(1362), - [3827] = {.count = 1, .reusable = true}, SHIFT(1364), - [3829] = {.count = 1, .reusable = false}, SHIFT(1364), - [3831] = {.count = 1, .reusable = true}, SHIFT(1365), - [3833] = {.count = 1, .reusable = true}, SHIFT(1366), - [3835] = {.count = 1, .reusable = true}, SHIFT(1368), - [3837] = {.count = 1, .reusable = false}, SHIFT(1368), - [3839] = {.count = 1, .reusable = true}, SHIFT(1369), - [3841] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), - [3843] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), - [3845] = {.count = 1, .reusable = true}, SHIFT(1371), - [3847] = {.count = 1, .reusable = true}, SHIFT(1372), - [3849] = {.count = 1, .reusable = false}, SHIFT(1372), - [3851] = {.count = 1, .reusable = true}, SHIFT(1373), - [3853] = {.count = 1, .reusable = true}, SHIFT(1374), - [3855] = {.count = 1, .reusable = false}, SHIFT(1374), - [3857] = {.count = 1, .reusable = true}, SHIFT(1376), - [3859] = {.count = 1, .reusable = false}, SHIFT(1377), - [3861] = {.count = 1, .reusable = true}, SHIFT(1378), - [3863] = {.count = 1, .reusable = true}, SHIFT(1380), - [3865] = {.count = 1, .reusable = false}, SHIFT(1380), - [3867] = {.count = 1, .reusable = true}, SHIFT(1381), - [3869] = {.count = 1, .reusable = true}, SHIFT(1383), - [3871] = {.count = 1, .reusable = true}, SHIFT(1385), - [3873] = {.count = 1, .reusable = true}, SHIFT(1387), - [3875] = {.count = 1, .reusable = false}, SHIFT(1387), - [3877] = {.count = 1, .reusable = false}, SHIFT(1388), - [3879] = {.count = 1, .reusable = true}, SHIFT(1389), - [3881] = {.count = 1, .reusable = true}, SHIFT(1391), - [3883] = {.count = 1, .reusable = false}, SHIFT(1391), - [3885] = {.count = 1, .reusable = true}, SHIFT(1392), - [3887] = {.count = 1, .reusable = true}, SHIFT(1394), - [3889] = {.count = 1, .reusable = true}, SHIFT(1396), - [3891] = {.count = 1, .reusable = false}, SHIFT(1396), - [3893] = {.count = 1, .reusable = true}, SHIFT(1397), - [3895] = {.count = 1, .reusable = true}, SHIFT(1398), - [3897] = {.count = 1, .reusable = true}, SHIFT(1400), - [3899] = {.count = 1, .reusable = true}, SHIFT(1402), - [3901] = {.count = 1, .reusable = false}, SHIFT(1402), - [3903] = {.count = 1, .reusable = true}, SHIFT(1403), - [3905] = {.count = 1, .reusable = true}, SHIFT(1405), - [3907] = {.count = 1, .reusable = true}, SHIFT(1406), - [3909] = {.count = 1, .reusable = true}, SHIFT(1408), - [3911] = {.count = 1, .reusable = true}, SHIFT(1409), + [1223] = {.count = 1, .reusable = true}, SHIFT(504), + [1225] = {.count = 1, .reusable = false}, SHIFT(504), + [1227] = {.count = 1, .reusable = false}, SHIFT(506), + [1229] = {.count = 1, .reusable = false}, SHIFT(507), + [1231] = {.count = 1, .reusable = false}, SHIFT(509), + [1233] = {.count = 1, .reusable = false}, SHIFT(512), + [1235] = {.count = 1, .reusable = false}, SHIFT(515), + [1237] = {.count = 1, .reusable = false}, SHIFT(518), + [1239] = {.count = 1, .reusable = false}, SHIFT(520), + [1241] = {.count = 1, .reusable = true}, SHIFT(521), + [1243] = {.count = 1, .reusable = true}, SHIFT(524), + [1245] = {.count = 1, .reusable = true}, SHIFT(525), + [1247] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(142), + [1250] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(143), + [1253] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(144), + [1256] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(145), + [1259] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(146), + [1262] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(147), + [1265] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(148), + [1268] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(149), + [1271] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), + [1273] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 14), + [1275] = {.count = 1, .reusable = true}, SHIFT(529), + [1277] = {.count = 1, .reusable = true}, SHIFT(530), + [1279] = {.count = 1, .reusable = true}, SHIFT(532), + [1281] = {.count = 1, .reusable = true}, SHIFT(534), + [1283] = {.count = 1, .reusable = true}, SHIFT(536), + [1285] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), + [1287] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 19), + [1289] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), + [1291] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 20), + [1293] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), + [1295] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 21), + [1297] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3), + [1299] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 3), + [1301] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), + [1303] = {.count = 1, .reusable = true}, SHIFT(537), + [1305] = {.count = 1, .reusable = true}, SHIFT(538), + [1307] = {.count = 1, .reusable = false}, SHIFT(538), + [1309] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), + [1311] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), + [1313] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [1315] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [1317] = {.count = 1, .reusable = true}, SHIFT(540), + [1319] = {.count = 1, .reusable = true}, SHIFT(541), + [1321] = {.count = 1, .reusable = false}, SHIFT(541), + [1323] = {.count = 1, .reusable = true}, SHIFT(542), + [1325] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), + [1327] = {.count = 1, .reusable = false}, SHIFT(543), + [1329] = {.count = 1, .reusable = false}, SHIFT(544), + [1331] = {.count = 1, .reusable = true}, SHIFT(545), + [1333] = {.count = 1, .reusable = true}, SHIFT(544), + [1335] = {.count = 1, .reusable = false}, SHIFT(546), + [1337] = {.count = 1, .reusable = true}, SHIFT(547), + [1339] = {.count = 1, .reusable = true}, SHIFT(548), + [1341] = {.count = 1, .reusable = false}, SHIFT(549), + [1343] = {.count = 1, .reusable = false}, SHIFT(550), + [1345] = {.count = 1, .reusable = true}, SHIFT(551), + [1347] = {.count = 1, .reusable = false}, SHIFT(552), + [1349] = {.count = 1, .reusable = true}, SHIFT(552), + [1351] = {.count = 1, .reusable = false}, SHIFT(553), + [1353] = {.count = 1, .reusable = false}, SHIFT(554), + [1355] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [1357] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [1359] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [1361] = {.count = 1, .reusable = true}, SHIFT(555), + [1363] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(556), + [1366] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), + [1368] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 5), + [1370] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, .alias_sequence_id = 6), + [1372] = {.count = 1, .reusable = false}, SHIFT(558), + [1374] = {.count = 1, .reusable = true}, SHIFT(559), + [1376] = {.count = 1, .reusable = true}, SHIFT(560), + [1378] = {.count = 1, .reusable = true}, SHIFT(561), + [1380] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), + [1382] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 7), + [1384] = {.count = 1, .reusable = true}, SHIFT(565), + [1386] = {.count = 1, .reusable = true}, SHIFT(566), + [1388] = {.count = 1, .reusable = true}, SHIFT(567), + [1390] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), + [1392] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 8), + [1394] = {.count = 1, .reusable = true}, SHIFT(570), + [1396] = {.count = 1, .reusable = true}, SHIFT(571), + [1398] = {.count = 1, .reusable = true}, SHIFT(572), + [1400] = {.count = 1, .reusable = true}, SHIFT(576), + [1402] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2), + [1404] = {.count = 1, .reusable = true}, SHIFT(579), + [1406] = {.count = 1, .reusable = true}, SHIFT(580), + [1408] = {.count = 1, .reusable = false}, SHIFT(580), + [1410] = {.count = 1, .reusable = true}, SHIFT(581), + [1412] = {.count = 1, .reusable = true}, SHIFT(582), + [1414] = {.count = 1, .reusable = false}, SHIFT(583), + [1416] = {.count = 1, .reusable = false}, SHIFT(584), + [1418] = {.count = 1, .reusable = true}, SHIFT(585), + [1420] = {.count = 1, .reusable = true}, SHIFT(584), + [1422] = {.count = 1, .reusable = false}, SHIFT(586), + [1424] = {.count = 1, .reusable = true}, SHIFT(587), + [1426] = {.count = 1, .reusable = true}, SHIFT(588), + [1428] = {.count = 1, .reusable = false}, SHIFT(589), + [1430] = {.count = 1, .reusable = false}, SHIFT(590), + [1432] = {.count = 1, .reusable = true}, SHIFT(591), + [1434] = {.count = 1, .reusable = false}, SHIFT(592), + [1436] = {.count = 1, .reusable = true}, SHIFT(592), + [1438] = {.count = 1, .reusable = false}, SHIFT(593), + [1440] = {.count = 1, .reusable = false}, SHIFT(594), + [1442] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), + [1444] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), + [1446] = {.count = 1, .reusable = true}, SHIFT(596), + [1448] = {.count = 1, .reusable = true}, SHIFT(598), + [1450] = {.count = 1, .reusable = false}, SHIFT(598), + [1452] = {.count = 1, .reusable = true}, SHIFT(599), + [1454] = {.count = 1, .reusable = false}, SHIFT(599), + [1456] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), + [1458] = {.count = 1, .reusable = true}, SHIFT(600), + [1460] = {.count = 1, .reusable = true}, SHIFT(602), + [1462] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2), + [1464] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [1466] = {.count = 1, .reusable = true}, SHIFT(605), + [1468] = {.count = 1, .reusable = true}, SHIFT(606), + [1470] = {.count = 1, .reusable = false}, SHIFT(606), + [1472] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), + [1474] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), + [1476] = {.count = 1, .reusable = true}, SHIFT(608), + [1478] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3, .dynamic_precedence = 1), + [1480] = {.count = 1, .reusable = true}, SHIFT(609), + [1482] = {.count = 1, .reusable = true}, SHIFT(611), + [1484] = {.count = 1, .reusable = false}, SHIFT(612), + [1486] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), + [1488] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(394), + [1491] = {.count = 1, .reusable = true}, SHIFT(617), + [1493] = {.count = 1, .reusable = true}, SHIFT(618), + [1495] = {.count = 1, .reusable = false}, SHIFT(618), + [1497] = {.count = 1, .reusable = true}, SHIFT(619), + [1499] = {.count = 1, .reusable = true}, SHIFT(620), + [1501] = {.count = 1, .reusable = true}, SHIFT(621), + [1503] = {.count = 1, .reusable = false}, SHIFT(622), + [1505] = {.count = 1, .reusable = false}, SHIFT(623), + [1507] = {.count = 1, .reusable = true}, SHIFT(624), + [1509] = {.count = 1, .reusable = true}, SHIFT(623), + [1511] = {.count = 1, .reusable = false}, SHIFT(625), + [1513] = {.count = 1, .reusable = true}, SHIFT(626), + [1515] = {.count = 1, .reusable = true}, SHIFT(627), + [1517] = {.count = 1, .reusable = false}, SHIFT(628), + [1519] = {.count = 1, .reusable = false}, SHIFT(629), + [1521] = {.count = 1, .reusable = true}, SHIFT(630), + [1523] = {.count = 1, .reusable = false}, SHIFT(631), + [1525] = {.count = 1, .reusable = true}, SHIFT(631), + [1527] = {.count = 1, .reusable = false}, SHIFT(632), + [1529] = {.count = 1, .reusable = false}, SHIFT(633), + [1531] = {.count = 1, .reusable = true}, SHIFT(634), + [1533] = {.count = 1, .reusable = false}, SHIFT(635), + [1535] = {.count = 1, .reusable = false}, SHIFT(636), + [1537] = {.count = 1, .reusable = false}, SHIFT(637), + [1539] = {.count = 1, .reusable = false}, SHIFT(638), + [1541] = {.count = 1, .reusable = false}, SHIFT(639), + [1543] = {.count = 1, .reusable = false}, SHIFT(640), + [1545] = {.count = 1, .reusable = true}, SHIFT(641), + [1547] = {.count = 1, .reusable = false}, SHIFT(642), + [1549] = {.count = 1, .reusable = false}, SHIFT(643), + [1551] = {.count = 1, .reusable = false}, SHIFT(644), + [1553] = {.count = 1, .reusable = false}, SHIFT(645), + [1555] = {.count = 1, .reusable = false}, SHIFT(646), + [1557] = {.count = 1, .reusable = false}, SHIFT(647), + [1559] = {.count = 1, .reusable = false}, SHIFT(648), + [1561] = {.count = 1, .reusable = false}, SHIFT(649), + [1563] = {.count = 1, .reusable = false}, SHIFT(650), + [1565] = {.count = 1, .reusable = false}, SHIFT(651), + [1567] = {.count = 1, .reusable = false}, SHIFT(652), + [1569] = {.count = 1, .reusable = true}, SHIFT(659), + [1571] = {.count = 1, .reusable = false}, SHIFT(659), + [1573] = {.count = 1, .reusable = false}, SHIFT(653), + [1575] = {.count = 1, .reusable = false}, SHIFT(662), + [1577] = {.count = 1, .reusable = false}, SHIFT(666), + [1579] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), + [1581] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), + [1583] = {.count = 1, .reusable = true}, SHIFT(670), + [1585] = {.count = 1, .reusable = true}, SHIFT(671), + [1587] = {.count = 1, .reusable = true}, SHIFT(672), + [1589] = {.count = 1, .reusable = true}, SHIFT(673), + [1591] = {.count = 1, .reusable = false}, SHIFT(674), + [1593] = {.count = 1, .reusable = true}, SHIFT(674), + [1595] = {.count = 1, .reusable = false}, SHIFT(675), + [1597] = {.count = 1, .reusable = true}, SHIFT(677), + [1599] = {.count = 1, .reusable = true}, SHIFT(676), + [1601] = {.count = 1, .reusable = false}, SHIFT(677), + [1603] = {.count = 1, .reusable = true}, SHIFT(678), + [1605] = {.count = 1, .reusable = false}, SHIFT(678), + [1607] = {.count = 1, .reusable = true}, SHIFT(680), + [1609] = {.count = 1, .reusable = true}, SHIFT(681), + [1611] = {.count = 1, .reusable = false}, SHIFT(681), + [1613] = {.count = 1, .reusable = true}, SHIFT(682), + [1615] = {.count = 1, .reusable = false}, SHIFT(683), + [1617] = {.count = 1, .reusable = false}, SHIFT(684), + [1619] = {.count = 1, .reusable = true}, SHIFT(685), + [1621] = {.count = 1, .reusable = true}, SHIFT(686), + [1623] = {.count = 1, .reusable = true}, SHIFT(684), + [1625] = {.count = 1, .reusable = false}, SHIFT(687), + [1627] = {.count = 1, .reusable = true}, SHIFT(688), + [1629] = {.count = 1, .reusable = true}, SHIFT(689), + [1631] = {.count = 1, .reusable = false}, SHIFT(690), + [1633] = {.count = 1, .reusable = false}, SHIFT(691), + [1635] = {.count = 1, .reusable = true}, SHIFT(692), + [1637] = {.count = 1, .reusable = false}, SHIFT(693), + [1639] = {.count = 1, .reusable = true}, SHIFT(693), + [1641] = {.count = 1, .reusable = false}, SHIFT(694), + [1643] = {.count = 1, .reusable = false}, SHIFT(695), + [1645] = {.count = 1, .reusable = false}, SHIFT(696), + [1647] = {.count = 1, .reusable = true}, SHIFT(699), + [1649] = {.count = 1, .reusable = false}, SHIFT(699), + [1651] = {.count = 1, .reusable = true}, SHIFT(700), + [1653] = {.count = 1, .reusable = true}, SHIFT(701), + [1655] = {.count = 1, .reusable = true}, SHIFT(702), + [1657] = {.count = 1, .reusable = false}, SHIFT(702), + [1659] = {.count = 1, .reusable = true}, SHIFT(703), + [1661] = {.count = 1, .reusable = true}, SHIFT(704), + [1663] = {.count = 1, .reusable = true}, SHIFT(705), + [1665] = {.count = 1, .reusable = true}, SHIFT(706), + [1667] = {.count = 1, .reusable = true}, SHIFT(707), + [1669] = {.count = 1, .reusable = true}, SHIFT(708), + [1671] = {.count = 1, .reusable = true}, SHIFT(710), + [1673] = {.count = 1, .reusable = false}, SHIFT(710), + [1675] = {.count = 1, .reusable = false}, SHIFT(709), + [1677] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [1679] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [1681] = {.count = 1, .reusable = true}, SHIFT(711), + [1683] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [1685] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [1687] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [1689] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [1691] = {.count = 1, .reusable = true}, SHIFT(712), + [1693] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), + [1695] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), + [1697] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), + [1699] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), + [1701] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), + [1703] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), + [1705] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), + [1707] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), + [1709] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [1711] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), + [1713] = {.count = 1, .reusable = true}, SHIFT(714), + [1715] = {.count = 1, .reusable = false}, SHIFT(715), + [1717] = {.count = 1, .reusable = true}, SHIFT(717), + [1719] = {.count = 1, .reusable = true}, SHIFT(718), + [1721] = {.count = 1, .reusable = false}, SHIFT(718), + [1723] = {.count = 1, .reusable = true}, SHIFT(719), + [1725] = {.count = 1, .reusable = false}, SHIFT(719), + [1727] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [1729] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [1731] = {.count = 1, .reusable = true}, SHIFT(721), + [1733] = {.count = 1, .reusable = false}, SHIFT(721), + [1735] = {.count = 1, .reusable = true}, SHIFT(722), + [1737] = {.count = 1, .reusable = false}, SHIFT(722), + [1739] = {.count = 1, .reusable = true}, SHIFT(723), + [1741] = {.count = 1, .reusable = false}, SHIFT(723), + [1743] = {.count = 1, .reusable = true}, SHIFT(724), + [1745] = {.count = 1, .reusable = false}, SHIFT(724), + [1747] = {.count = 1, .reusable = true}, SHIFT(725), + [1749] = {.count = 1, .reusable = false}, SHIFT(725), + [1751] = {.count = 1, .reusable = true}, SHIFT(726), + [1753] = {.count = 1, .reusable = false}, SHIFT(726), + [1755] = {.count = 1, .reusable = true}, SHIFT(727), + [1757] = {.count = 1, .reusable = false}, SHIFT(727), + [1759] = {.count = 1, .reusable = true}, SHIFT(728), + [1761] = {.count = 1, .reusable = false}, SHIFT(728), + [1763] = {.count = 1, .reusable = true}, SHIFT(729), + [1765] = {.count = 1, .reusable = false}, SHIFT(729), + [1767] = {.count = 1, .reusable = true}, SHIFT(730), + [1769] = {.count = 1, .reusable = false}, SHIFT(730), + [1771] = {.count = 1, .reusable = true}, SHIFT(731), + [1773] = {.count = 1, .reusable = false}, SHIFT(731), + [1775] = {.count = 1, .reusable = true}, SHIFT(732), + [1777] = {.count = 1, .reusable = false}, SHIFT(732), + [1779] = {.count = 1, .reusable = true}, SHIFT(733), + [1781] = {.count = 1, .reusable = false}, SHIFT(733), + [1783] = {.count = 1, .reusable = true}, SHIFT(734), + [1785] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), + [1787] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), + [1789] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [1791] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [1793] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(2), + [1796] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(3), + [1799] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(224), + [1802] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(225), + [1805] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(226), + [1808] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(227), + [1811] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(7), + [1814] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(228), + [1817] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(8), + [1820] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(10), + [1823] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(124), + [1826] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [1828] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(230), + [1831] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(11), + [1834] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(21), + [1837] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(18), + [1840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(12), + [1843] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(13), + [1846] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(14), + [1849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(231), + [1852] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(232), + [1855] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(233), + [1858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(234), + [1861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(235), + [1864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(236), + [1867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(237), + [1870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(238), + [1873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(239), + [1876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(240), + [1879] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(241), + [1882] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(242), + [1885] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(243), + [1888] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(244), + [1891] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(244), + [1894] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(245), + [1897] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(251), + [1900] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(246), + [1903] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(251), + [1906] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(247), + [1909] = {.count = 1, .reusable = true}, SHIFT(735), + [1911] = {.count = 1, .reusable = true}, SHIFT(737), + [1913] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), + [1915] = {.count = 1, .reusable = true}, SHIFT(738), + [1917] = {.count = 1, .reusable = true}, SHIFT(740), + [1919] = {.count = 1, .reusable = false}, SHIFT(740), + [1921] = {.count = 1, .reusable = true}, SHIFT(741), + [1923] = {.count = 1, .reusable = false}, SHIFT(741), + [1925] = {.count = 1, .reusable = true}, SHIFT(742), + [1927] = {.count = 1, .reusable = false}, SHIFT(742), + [1929] = {.count = 1, .reusable = true}, SHIFT(743), + [1931] = {.count = 1, .reusable = false}, SHIFT(743), + [1933] = {.count = 1, .reusable = true}, SHIFT(744), + [1935] = {.count = 1, .reusable = false}, SHIFT(744), + [1937] = {.count = 1, .reusable = true}, SHIFT(745), + [1939] = {.count = 1, .reusable = false}, SHIFT(745), + [1941] = {.count = 1, .reusable = true}, SHIFT(746), + [1943] = {.count = 1, .reusable = false}, SHIFT(746), + [1945] = {.count = 1, .reusable = true}, SHIFT(747), + [1947] = {.count = 1, .reusable = false}, SHIFT(747), + [1949] = {.count = 1, .reusable = true}, SHIFT(748), + [1951] = {.count = 1, .reusable = false}, SHIFT(748), + [1953] = {.count = 1, .reusable = true}, SHIFT(749), + [1955] = {.count = 1, .reusable = false}, SHIFT(749), + [1957] = {.count = 1, .reusable = true}, SHIFT(750), + [1959] = {.count = 1, .reusable = false}, SHIFT(750), + [1961] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(486), + [1964] = {.count = 1, .reusable = true}, SHIFT(752), + [1966] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), + [1968] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [1970] = {.count = 1, .reusable = true}, SHIFT(753), + [1972] = {.count = 1, .reusable = false}, SHIFT(753), + [1974] = {.count = 1, .reusable = true}, SHIFT(754), + [1976] = {.count = 1, .reusable = true}, SHIFT(755), + [1978] = {.count = 1, .reusable = true}, SHIFT(757), + [1980] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [1982] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [1984] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(274), + [1987] = {.count = 1, .reusable = true}, SHIFT(759), + [1989] = {.count = 1, .reusable = true}, SHIFT(760), + [1991] = {.count = 1, .reusable = true}, SHIFT(761), + [1993] = {.count = 1, .reusable = true}, SHIFT(762), + [1995] = {.count = 1, .reusable = true}, SHIFT(763), + [1997] = {.count = 1, .reusable = false}, SHIFT(764), + [1999] = {.count = 1, .reusable = false}, SHIFT(765), + [2001] = {.count = 1, .reusable = false}, SHIFT(766), + [2003] = {.count = 1, .reusable = true}, SHIFT(767), + [2005] = {.count = 1, .reusable = false}, SHIFT(767), + [2007] = {.count = 1, .reusable = true}, SHIFT(769), + [2009] = {.count = 1, .reusable = false}, SHIFT(769), + [2011] = {.count = 1, .reusable = true}, SHIFT(771), + [2013] = {.count = 1, .reusable = false}, SHIFT(771), + [2015] = {.count = 1, .reusable = true}, SHIFT(773), + [2017] = {.count = 1, .reusable = true}, SHIFT(774), + [2019] = {.count = 1, .reusable = true}, SHIFT(776), + [2021] = {.count = 1, .reusable = true}, SHIFT(778), + [2023] = {.count = 1, .reusable = true}, SHIFT(780), + [2025] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .alias_sequence_id = 14), + [2027] = {.count = 1, .reusable = true}, SHIFT(781), + [2029] = {.count = 1, .reusable = true}, SHIFT(782), + [2031] = {.count = 1, .reusable = true}, SHIFT(783), + [2033] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), + [2035] = {.count = 1, .reusable = true}, SHIFT(784), + [2037] = {.count = 1, .reusable = true}, SHIFT(785), + [2039] = {.count = 1, .reusable = true}, SHIFT(787), + [2041] = {.count = 1, .reusable = true}, SHIFT(788), + [2043] = {.count = 1, .reusable = false}, SHIFT(788), + [2045] = {.count = 1, .reusable = true}, SHIFT(789), + [2047] = {.count = 1, .reusable = false}, SHIFT(789), + [2049] = {.count = 1, .reusable = true}, SHIFT(790), + [2051] = {.count = 1, .reusable = false}, SHIFT(790), + [2053] = {.count = 1, .reusable = true}, SHIFT(791), + [2055] = {.count = 1, .reusable = false}, SHIFT(791), + [2057] = {.count = 1, .reusable = true}, SHIFT(792), + [2059] = {.count = 1, .reusable = false}, SHIFT(792), + [2061] = {.count = 1, .reusable = true}, SHIFT(793), + [2063] = {.count = 1, .reusable = false}, SHIFT(793), + [2065] = {.count = 1, .reusable = true}, SHIFT(794), + [2067] = {.count = 1, .reusable = false}, SHIFT(794), + [2069] = {.count = 1, .reusable = true}, SHIFT(795), + [2071] = {.count = 1, .reusable = false}, SHIFT(795), + [2073] = {.count = 1, .reusable = true}, SHIFT(796), + [2075] = {.count = 1, .reusable = false}, SHIFT(796), + [2077] = {.count = 1, .reusable = true}, SHIFT(797), + [2079] = {.count = 1, .reusable = false}, SHIFT(797), + [2081] = {.count = 1, .reusable = true}, SHIFT(798), + [2083] = {.count = 1, .reusable = false}, SHIFT(798), + [2085] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [2087] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [2089] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, .alias_sequence_id = 6), + [2091] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .alias_sequence_id = 14), + [2093] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), + [2095] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 22), + [2097] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), + [2099] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), + [2101] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), + [2103] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 15), + [2105] = {.count = 1, .reusable = true}, SHIFT(803), + [2107] = {.count = 1, .reusable = true}, SHIFT(804), + [2109] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), + [2111] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), + [2113] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), + [2115] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), + [2117] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), + [2119] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 16), + [2121] = {.count = 1, .reusable = true}, SHIFT(805), + [2123] = {.count = 1, .reusable = true}, SHIFT(806), + [2125] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), + [2127] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 26), + [2129] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), + [2131] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 27), + [2133] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), + [2135] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 17), + [2137] = {.count = 1, .reusable = true}, SHIFT(807), + [2139] = {.count = 1, .reusable = true}, SHIFT(808), + [2141] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3), + [2143] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 3), + [2145] = {.count = 1, .reusable = true}, SHIFT(809), + [2147] = {.count = 1, .reusable = true}, SHIFT(811), + [2149] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), + [2151] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), + [2153] = {.count = 1, .reusable = true}, SHIFT(812), + [2155] = {.count = 1, .reusable = false}, SHIFT(812), + [2157] = {.count = 1, .reusable = true}, SHIFT(813), + [2159] = {.count = 1, .reusable = false}, SHIFT(813), + [2161] = {.count = 1, .reusable = true}, SHIFT(814), + [2163] = {.count = 1, .reusable = false}, SHIFT(814), + [2165] = {.count = 1, .reusable = true}, SHIFT(815), + [2167] = {.count = 1, .reusable = false}, SHIFT(815), + [2169] = {.count = 1, .reusable = true}, SHIFT(816), + [2171] = {.count = 1, .reusable = false}, SHIFT(816), + [2173] = {.count = 1, .reusable = true}, SHIFT(817), + [2175] = {.count = 1, .reusable = false}, SHIFT(817), + [2177] = {.count = 1, .reusable = true}, SHIFT(818), + [2179] = {.count = 1, .reusable = false}, SHIFT(818), + [2181] = {.count = 1, .reusable = true}, SHIFT(819), + [2183] = {.count = 1, .reusable = false}, SHIFT(819), + [2185] = {.count = 1, .reusable = true}, SHIFT(820), + [2187] = {.count = 1, .reusable = false}, SHIFT(820), + [2189] = {.count = 1, .reusable = true}, SHIFT(821), + [2191] = {.count = 1, .reusable = false}, SHIFT(821), + [2193] = {.count = 1, .reusable = true}, SHIFT(822), + [2195] = {.count = 1, .reusable = false}, SHIFT(822), + [2197] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), + [2199] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), + [2201] = {.count = 1, .reusable = true}, SHIFT(823), + [2203] = {.count = 1, .reusable = true}, SHIFT(824), + [2205] = {.count = 1, .reusable = false}, SHIFT(824), + [2207] = {.count = 1, .reusable = true}, SHIFT(825), + [2209] = {.count = 1, .reusable = true}, SHIFT(826), + [2211] = {.count = 1, .reusable = false}, SHIFT(826), + [2213] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(368), + [2216] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), + [2218] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 3), + [2220] = {.count = 2, .reusable = true}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(11), + [2223] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [2225] = {.count = 1, .reusable = true}, SHIFT(827), + [2227] = {.count = 1, .reusable = true}, SHIFT(828), + [2229] = {.count = 1, .reusable = false}, SHIFT(828), + [2231] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [2233] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4, .dynamic_precedence = 1), + [2235] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(385), + [2238] = {.count = 3, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), SHIFT(41), + [2242] = {.count = 2, .reusable = true}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .alias_sequence_id = 1), + [2245] = {.count = 1, .reusable = true}, SHIFT(831), + [2247] = {.count = 1, .reusable = true}, SHIFT(833), + [2249] = {.count = 1, .reusable = true}, SHIFT(834), + [2251] = {.count = 1, .reusable = false}, SHIFT(834), + [2253] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [2255] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [2257] = {.count = 1, .reusable = true}, SHIFT(835), + [2259] = {.count = 1, .reusable = false}, SHIFT(835), + [2261] = {.count = 1, .reusable = true}, SHIFT(836), + [2263] = {.count = 1, .reusable = false}, SHIFT(836), + [2265] = {.count = 1, .reusable = true}, SHIFT(837), + [2267] = {.count = 1, .reusable = false}, SHIFT(837), + [2269] = {.count = 1, .reusable = true}, SHIFT(838), + [2271] = {.count = 1, .reusable = false}, SHIFT(838), + [2273] = {.count = 1, .reusable = true}, SHIFT(839), + [2275] = {.count = 1, .reusable = false}, SHIFT(839), + [2277] = {.count = 1, .reusable = true}, SHIFT(840), + [2279] = {.count = 1, .reusable = false}, SHIFT(840), + [2281] = {.count = 1, .reusable = true}, SHIFT(841), + [2283] = {.count = 1, .reusable = false}, SHIFT(841), + [2285] = {.count = 1, .reusable = true}, SHIFT(842), + [2287] = {.count = 1, .reusable = false}, SHIFT(842), + [2289] = {.count = 1, .reusable = true}, SHIFT(843), + [2291] = {.count = 1, .reusable = false}, SHIFT(843), + [2293] = {.count = 1, .reusable = true}, SHIFT(844), + [2295] = {.count = 1, .reusable = false}, SHIFT(844), + [2297] = {.count = 1, .reusable = true}, SHIFT(845), + [2299] = {.count = 1, .reusable = false}, SHIFT(845), + [2301] = {.count = 1, .reusable = true}, SHIFT(846), + [2303] = {.count = 1, .reusable = false}, SHIFT(846), + [2305] = {.count = 1, .reusable = false}, SHIFT(848), + [2307] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), + [2309] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 5), + [2311] = {.count = 1, .reusable = true}, SHIFT(849), + [2313] = {.count = 1, .reusable = true}, SHIFT(850), + [2315] = {.count = 1, .reusable = false}, SHIFT(851), + [2317] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1, .alias_sequence_id = 6), + [2319] = {.count = 1, .reusable = false}, SHIFT(852), + [2321] = {.count = 1, .reusable = false}, SHIFT(853), + [2323] = {.count = 1, .reusable = true}, SHIFT(854), + [2325] = {.count = 1, .reusable = false}, SHIFT(855), + [2327] = {.count = 1, .reusable = false}, SHIFT(856), + [2329] = {.count = 1, .reusable = false}, SHIFT(857), + [2331] = {.count = 1, .reusable = false}, SHIFT(858), + [2333] = {.count = 1, .reusable = false}, SHIFT(859), + [2335] = {.count = 1, .reusable = false}, SHIFT(860), + [2337] = {.count = 1, .reusable = false}, SHIFT(861), + [2339] = {.count = 1, .reusable = false}, SHIFT(862), + [2341] = {.count = 1, .reusable = false}, SHIFT(863), + [2343] = {.count = 1, .reusable = false}, SHIFT(864), + [2345] = {.count = 1, .reusable = false}, SHIFT(865), + [2347] = {.count = 1, .reusable = true}, SHIFT(870), + [2349] = {.count = 1, .reusable = false}, SHIFT(870), + [2351] = {.count = 1, .reusable = false}, SHIFT(866), + [2353] = {.count = 1, .reusable = false}, SHIFT(873), + [2355] = {.count = 1, .reusable = true}, SHIFT(874), + [2357] = {.count = 1, .reusable = true}, SHIFT(875), + [2359] = {.count = 1, .reusable = true}, SHIFT(876), + [2361] = {.count = 1, .reusable = false}, SHIFT(876), + [2363] = {.count = 1, .reusable = true}, SHIFT(877), + [2365] = {.count = 1, .reusable = true}, SHIFT(878), + [2367] = {.count = 1, .reusable = true}, SHIFT(880), + [2369] = {.count = 1, .reusable = true}, SHIFT(881), + [2371] = {.count = 1, .reusable = true}, SHIFT(882), + [2373] = {.count = 1, .reusable = false}, SHIFT(882), + [2375] = {.count = 1, .reusable = true}, SHIFT(883), + [2377] = {.count = 1, .reusable = true}, SHIFT(884), + [2379] = {.count = 1, .reusable = true}, SHIFT(885), + [2381] = {.count = 1, .reusable = true}, SHIFT(886), + [2383] = {.count = 1, .reusable = true}, SHIFT(887), + [2385] = {.count = 1, .reusable = true}, SHIFT(888), + [2387] = {.count = 1, .reusable = true}, SHIFT(889), + [2389] = {.count = 1, .reusable = true}, SHIFT(890), + [2391] = {.count = 1, .reusable = false}, SHIFT(891), + [2393] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), + [2395] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 7), + [2397] = {.count = 1, .reusable = true}, SHIFT(895), + [2399] = {.count = 1, .reusable = true}, SHIFT(896), + [2401] = {.count = 1, .reusable = false}, SHIFT(897), + [2403] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), + [2405] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 8), + [2407] = {.count = 1, .reusable = true}, SHIFT(900), + [2409] = {.count = 1, .reusable = true}, SHIFT(901), + [2411] = {.count = 1, .reusable = false}, SHIFT(902), + [2413] = {.count = 1, .reusable = true}, SHIFT(906), + [2415] = {.count = 1, .reusable = true}, SHIFT(907), + [2417] = {.count = 1, .reusable = false}, SHIFT(907), + [2419] = {.count = 1, .reusable = true}, SHIFT(908), + [2421] = {.count = 1, .reusable = true}, SHIFT(909), + [2423] = {.count = 1, .reusable = false}, SHIFT(910), + [2425] = {.count = 1, .reusable = false}, SHIFT(911), + [2427] = {.count = 1, .reusable = true}, SHIFT(912), + [2429] = {.count = 1, .reusable = true}, SHIFT(911), + [2431] = {.count = 1, .reusable = false}, SHIFT(913), + [2433] = {.count = 1, .reusable = true}, SHIFT(914), + [2435] = {.count = 1, .reusable = true}, SHIFT(915), + [2437] = {.count = 1, .reusable = false}, SHIFT(916), + [2439] = {.count = 1, .reusable = false}, SHIFT(917), + [2441] = {.count = 1, .reusable = true}, SHIFT(918), + [2443] = {.count = 1, .reusable = false}, SHIFT(919), + [2445] = {.count = 1, .reusable = true}, SHIFT(919), + [2447] = {.count = 1, .reusable = false}, SHIFT(920), + [2449] = {.count = 1, .reusable = false}, SHIFT(921), + [2451] = {.count = 1, .reusable = true}, SHIFT(922), + [2453] = {.count = 1, .reusable = true}, SHIFT(923), + [2455] = {.count = 1, .reusable = true}, SHIFT(925), + [2457] = {.count = 1, .reusable = true}, SHIFT(926), + [2459] = {.count = 1, .reusable = false}, SHIFT(926), + [2461] = {.count = 1, .reusable = true}, SHIFT(928), + [2463] = {.count = 1, .reusable = false}, SHIFT(928), + [2465] = {.count = 1, .reusable = true}, SHIFT(929), + [2467] = {.count = 1, .reusable = false}, SHIFT(929), + [2469] = {.count = 1, .reusable = true}, SHIFT(930), + [2471] = {.count = 1, .reusable = false}, SHIFT(930), + [2473] = {.count = 1, .reusable = true}, SHIFT(931), + [2475] = {.count = 1, .reusable = false}, SHIFT(931), + [2477] = {.count = 1, .reusable = true}, SHIFT(932), + [2479] = {.count = 1, .reusable = false}, SHIFT(932), + [2481] = {.count = 1, .reusable = true}, SHIFT(933), + [2483] = {.count = 1, .reusable = false}, SHIFT(933), + [2485] = {.count = 1, .reusable = true}, SHIFT(934), + [2487] = {.count = 1, .reusable = false}, SHIFT(934), + [2489] = {.count = 1, .reusable = true}, SHIFT(935), + [2491] = {.count = 1, .reusable = false}, SHIFT(935), + [2493] = {.count = 1, .reusable = true}, SHIFT(936), + [2495] = {.count = 1, .reusable = false}, SHIFT(936), + [2497] = {.count = 1, .reusable = true}, SHIFT(937), + [2499] = {.count = 1, .reusable = false}, SHIFT(937), + [2501] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [2503] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [2505] = {.count = 1, .reusable = true}, SHIFT(938), + [2507] = {.count = 1, .reusable = true}, SHIFT(939), + [2509] = {.count = 1, .reusable = false}, SHIFT(939), + [2511] = {.count = 1, .reusable = true}, SHIFT(940), + [2513] = {.count = 1, .reusable = false}, SHIFT(940), + [2515] = {.count = 1, .reusable = true}, SHIFT(941), + [2517] = {.count = 1, .reusable = false}, SHIFT(942), + [2519] = {.count = 1, .reusable = true}, SHIFT(943), + [2521] = {.count = 1, .reusable = false}, SHIFT(943), + [2523] = {.count = 1, .reusable = true}, SHIFT(944), + [2525] = {.count = 1, .reusable = true}, SHIFT(945), + [2527] = {.count = 1, .reusable = false}, SHIFT(945), + [2529] = {.count = 1, .reusable = true}, SHIFT(946), + [2531] = {.count = 1, .reusable = true}, SHIFT(947), + [2533] = {.count = 1, .reusable = true}, SHIFT(948), + [2535] = {.count = 1, .reusable = false}, SHIFT(948), + [2537] = {.count = 1, .reusable = true}, SHIFT(949), + [2539] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [2541] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [2543] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), + [2545] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 28), + [2547] = {.count = 1, .reusable = true}, SHIFT(950), + [2549] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2551] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2553] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(714), + [2556] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), + [2558] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 29), + [2560] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), + [2562] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), + [2564] = {.count = 1, .reusable = true}, SHIFT(951), + [2566] = {.count = 1, .reusable = true}, SHIFT(952), + [2568] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), + [2570] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), + [2572] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), + [2574] = {.count = 1, .reusable = true}, SHIFT(954), + [2576] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), + [2578] = {.count = 1, .reusable = true}, SHIFT(955), + [2580] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), + [2582] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), + [2584] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), + [2586] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), + [2588] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), + [2590] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), + [2592] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), + [2594] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), + [2596] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), + [2598] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), + [2600] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), + [2602] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 30), + [2604] = {.count = 1, .reusable = true}, SHIFT(956), + [2606] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(737), + [2609] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), + [2611] = {.count = 1, .reusable = true}, SHIFT(957), + [2613] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [2615] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [2617] = {.count = 1, .reusable = true}, SHIFT(958), + [2619] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 31), + [2621] = {.count = 1, .reusable = true}, SHIFT(959), + [2623] = {.count = 1, .reusable = true}, SHIFT(960), + [2625] = {.count = 1, .reusable = false}, SHIFT(960), + [2627] = {.count = 1, .reusable = true}, SHIFT(962), + [2629] = {.count = 1, .reusable = true}, SHIFT(964), + [2631] = {.count = 1, .reusable = false}, SHIFT(964), + [2633] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(489), + [2636] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [2638] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(490), + [2641] = {.count = 1, .reusable = true}, SHIFT(966), + [2643] = {.count = 1, .reusable = true}, SHIFT(967), + [2645] = {.count = 1, .reusable = true}, SHIFT(968), + [2647] = {.count = 1, .reusable = true}, SHIFT(969), + [2649] = {.count = 1, .reusable = true}, SHIFT(970), + [2651] = {.count = 1, .reusable = true}, SHIFT(971), + [2653] = {.count = 1, .reusable = true}, SHIFT(972), + [2655] = {.count = 1, .reusable = true}, SHIFT(973), + [2657] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), + [2659] = {.count = 1, .reusable = true}, SHIFT(974), + [2661] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(787), + [2664] = {.count = 1, .reusable = true}, SHIFT(975), + [2666] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 32), + [2668] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 33), + [2670] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 14), + [2672] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), + [2674] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 34), + [2676] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), + [2678] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 35), + [2680] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), + [2682] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 36), + [2684] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), + [2686] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 37), + [2688] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), + [2690] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 38), + [2692] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), + [2694] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 39), + [2696] = {.count = 1, .reusable = true}, SHIFT(978), + [2698] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(811), + [2701] = {.count = 1, .reusable = true}, SHIFT(979), + [2703] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), + [2705] = {.count = 1, .reusable = true}, SHIFT(980), + [2707] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), + [2709] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), + [2711] = {.count = 1, .reusable = true}, SHIFT(981), + [2713] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), + [2715] = {.count = 1, .reusable = true}, SHIFT(982), + [2717] = {.count = 1, .reusable = true}, SHIFT(984), + [2719] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(833), + [2722] = {.count = 1, .reusable = true}, SHIFT(985), + [2724] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), + [2726] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), + [2728] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), + [2730] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), + [2732] = {.count = 1, .reusable = false}, SHIFT(986), + [2734] = {.count = 1, .reusable = false}, SHIFT(990), + [2736] = {.count = 1, .reusable = false}, SHIFT(994), + [2738] = {.count = 1, .reusable = false}, SHIFT(998), + [2740] = {.count = 1, .reusable = true}, SHIFT(999), + [2742] = {.count = 1, .reusable = true}, SHIFT(1000), + [2744] = {.count = 1, .reusable = true}, SHIFT(1001), + [2746] = {.count = 1, .reusable = true}, SHIFT(1002), + [2748] = {.count = 1, .reusable = true}, SHIFT(1003), + [2750] = {.count = 1, .reusable = false}, SHIFT(1003), + [2752] = {.count = 1, .reusable = true}, SHIFT(1004), + [2754] = {.count = 1, .reusable = true}, SHIFT(1005), + [2756] = {.count = 1, .reusable = true}, SHIFT(1007), + [2758] = {.count = 1, .reusable = true}, SHIFT(1008), + [2760] = {.count = 1, .reusable = true}, SHIFT(1009), + [2762] = {.count = 1, .reusable = false}, SHIFT(1009), + [2764] = {.count = 1, .reusable = true}, SHIFT(1010), + [2766] = {.count = 1, .reusable = true}, SHIFT(1011), + [2768] = {.count = 1, .reusable = true}, SHIFT(1012), + [2770] = {.count = 1, .reusable = true}, SHIFT(1013), + [2772] = {.count = 1, .reusable = true}, SHIFT(1014), + [2774] = {.count = 1, .reusable = true}, SHIFT(1015), + [2776] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2, .alias_sequence_id = 6), + [2778] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2, .alias_sequence_id = 14), + [2780] = {.count = 1, .reusable = true}, SHIFT(1020), + [2782] = {.count = 1, .reusable = false}, SHIFT(1020), + [2784] = {.count = 1, .reusable = true}, SHIFT(1021), + [2786] = {.count = 1, .reusable = false}, SHIFT(1021), + [2788] = {.count = 1, .reusable = true}, SHIFT(1022), + [2790] = {.count = 1, .reusable = false}, SHIFT(1023), + [2792] = {.count = 1, .reusable = true}, SHIFT(1026), + [2794] = {.count = 1, .reusable = false}, SHIFT(1026), + [2796] = {.count = 1, .reusable = true}, SHIFT(1027), + [2798] = {.count = 1, .reusable = true}, SHIFT(1028), + [2800] = {.count = 1, .reusable = true}, SHIFT(1029), + [2802] = {.count = 1, .reusable = false}, SHIFT(1029), + [2804] = {.count = 1, .reusable = true}, SHIFT(1030), + [2806] = {.count = 1, .reusable = true}, SHIFT(1031), + [2808] = {.count = 1, .reusable = false}, SHIFT(1032), + [2810] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), + [2812] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 22), + [2814] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), + [2816] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), + [2818] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), + [2820] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 15), + [2822] = {.count = 1, .reusable = true}, SHIFT(1034), + [2824] = {.count = 1, .reusable = true}, SHIFT(1035), + [2826] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(58), + [2829] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(59), + [2832] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(635), + [2835] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [2837] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(637), + [2840] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(638), + [2843] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(66), + [2846] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(641), + [2849] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(67), + [2852] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(313), + [2855] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(642), + [2858] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(643), + [2861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(644), + [2864] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(645), + [2867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(646), + [2870] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(647), + [2873] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(648), + [2876] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(649), + [2879] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(650), + [2882] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(651), + [2885] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(652), + [2888] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(659), + [2891] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(659), + [2894] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(653), + [2897] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), + [2899] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), + [2901] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), + [2903] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), + [2905] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), + [2907] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 16), + [2909] = {.count = 1, .reusable = true}, SHIFT(1036), + [2911] = {.count = 1, .reusable = true}, SHIFT(1037), + [2913] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), + [2915] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 26), + [2917] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), + [2919] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 27), + [2921] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), + [2923] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 17), + [2925] = {.count = 1, .reusable = true}, SHIFT(1038), + [2927] = {.count = 1, .reusable = true}, SHIFT(1039), + [2929] = {.count = 1, .reusable = true}, SHIFT(1040), + [2931] = {.count = 1, .reusable = true}, SHIFT(1042), + [2933] = {.count = 1, .reusable = false}, SHIFT(1043), + [2935] = {.count = 1, .reusable = false}, SHIFT(1044), + [2937] = {.count = 1, .reusable = false}, SHIFT(1045), + [2939] = {.count = 1, .reusable = false}, SHIFT(1046), + [2941] = {.count = 1, .reusable = false}, SHIFT(1047), + [2943] = {.count = 1, .reusable = false}, SHIFT(1048), + [2945] = {.count = 1, .reusable = false}, SHIFT(1049), + [2947] = {.count = 1, .reusable = true}, SHIFT(1051), + [2949] = {.count = 1, .reusable = false}, SHIFT(1051), + [2951] = {.count = 1, .reusable = true}, SHIFT(1052), + [2953] = {.count = 1, .reusable = false}, SHIFT(1052), + [2955] = {.count = 1, .reusable = true}, SHIFT(1053), + [2957] = {.count = 1, .reusable = false}, SHIFT(1053), + [2959] = {.count = 1, .reusable = true}, SHIFT(1054), + [2961] = {.count = 1, .reusable = false}, SHIFT(1054), + [2963] = {.count = 1, .reusable = true}, SHIFT(1055), + [2965] = {.count = 1, .reusable = false}, SHIFT(1055), + [2967] = {.count = 1, .reusable = true}, SHIFT(1056), + [2969] = {.count = 1, .reusable = false}, SHIFT(1056), + [2971] = {.count = 1, .reusable = true}, SHIFT(1057), + [2973] = {.count = 1, .reusable = false}, SHIFT(1057), + [2975] = {.count = 1, .reusable = true}, SHIFT(1058), + [2977] = {.count = 1, .reusable = false}, SHIFT(1058), + [2979] = {.count = 1, .reusable = true}, SHIFT(1059), + [2981] = {.count = 1, .reusable = false}, SHIFT(1059), + [2983] = {.count = 1, .reusable = true}, SHIFT(1060), + [2985] = {.count = 1, .reusable = false}, SHIFT(1060), + [2987] = {.count = 1, .reusable = true}, SHIFT(1061), + [2989] = {.count = 1, .reusable = false}, SHIFT(1061), + [2991] = {.count = 1, .reusable = true}, SHIFT(1063), + [2993] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(925), + [2996] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), + [2998] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), + [3000] = {.count = 1, .reusable = true}, SHIFT(1064), + [3002] = {.count = 1, .reusable = true}, SHIFT(1066), + [3004] = {.count = 1, .reusable = true}, SHIFT(1067), + [3006] = {.count = 1, .reusable = true}, SHIFT(1068), + [3008] = {.count = 1, .reusable = true}, SHIFT(1069), + [3010] = {.count = 1, .reusable = true}, SHIFT(1070), + [3012] = {.count = 1, .reusable = false}, SHIFT(1070), + [3014] = {.count = 1, .reusable = true}, SHIFT(1071), + [3016] = {.count = 1, .reusable = true}, SHIFT(1072), + [3018] = {.count = 1, .reusable = false}, SHIFT(1072), + [3020] = {.count = 1, .reusable = true}, SHIFT(1073), + [3022] = {.count = 1, .reusable = true}, SHIFT(1074), + [3024] = {.count = 1, .reusable = false}, SHIFT(1074), + [3026] = {.count = 1, .reusable = true}, SHIFT(1075), + [3028] = {.count = 1, .reusable = true}, SHIFT(1076), + [3030] = {.count = 1, .reusable = false}, SHIFT(1076), + [3032] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), + [3034] = {.count = 1, .reusable = false}, SHIFT(230), + [3036] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), + [3038] = {.count = 1, .reusable = false}, SHIFT(242), + [3040] = {.count = 1, .reusable = true}, SHIFT(1077), + [3042] = {.count = 1, .reusable = false}, SHIFT(1077), + [3044] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), + [3046] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), + [3048] = {.count = 1, .reusable = true}, SHIFT(1078), + [3050] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), + [3052] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), + [3054] = {.count = 1, .reusable = true}, SHIFT(1080), + [3056] = {.count = 1, .reusable = false}, SHIFT(1080), + [3058] = {.count = 1, .reusable = false}, SHIFT(255), + [3060] = {.count = 1, .reusable = false}, SHIFT(257), + [3062] = {.count = 1, .reusable = true}, SHIFT(1081), + [3064] = {.count = 1, .reusable = false}, SHIFT(1081), + [3066] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [3068] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [3070] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [3072] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3074] = {.count = 1, .reusable = true}, SHIFT(1082), + [3076] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1083), + [3079] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), + [3081] = {.count = 1, .reusable = false}, SHIFT(331), + [3083] = {.count = 1, .reusable = false}, SHIFT(332), + [3085] = {.count = 1, .reusable = true}, SHIFT(1084), + [3087] = {.count = 1, .reusable = false}, SHIFT(1084), + [3089] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 40), + [3091] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 41), + [3093] = {.count = 1, .reusable = false}, SHIFT(361), + [3095] = {.count = 1, .reusable = false}, SHIFT(362), + [3097] = {.count = 1, .reusable = true}, SHIFT(1085), + [3099] = {.count = 1, .reusable = false}, SHIFT(1085), + [3101] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), + [3103] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), + [3105] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), + [3107] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), + [3109] = {.count = 1, .reusable = false}, SHIFT(397), + [3111] = {.count = 1, .reusable = false}, SHIFT(398), + [3113] = {.count = 1, .reusable = true}, SHIFT(1086), + [3115] = {.count = 1, .reusable = false}, SHIFT(1086), + [3117] = {.count = 1, .reusable = true}, SHIFT(1087), + [3119] = {.count = 1, .reusable = true}, SHIFT(1088), + [3121] = {.count = 1, .reusable = false}, SHIFT(1089), + [3123] = {.count = 1, .reusable = true}, SHIFT(1092), + [3125] = {.count = 1, .reusable = true}, SHIFT(1093), + [3127] = {.count = 1, .reusable = false}, SHIFT(1094), + [3129] = {.count = 1, .reusable = true}, SHIFT(1097), + [3131] = {.count = 1, .reusable = true}, SHIFT(1098), + [3133] = {.count = 1, .reusable = false}, SHIFT(1099), + [3135] = {.count = 1, .reusable = false}, SHIFT(1102), + [3137] = {.count = 1, .reusable = false}, SHIFT(1106), + [3139] = {.count = 1, .reusable = false}, SHIFT(1110), + [3141] = {.count = 1, .reusable = true}, SHIFT(1114), + [3143] = {.count = 1, .reusable = false}, SHIFT(1114), + [3145] = {.count = 1, .reusable = true}, SHIFT(1115), + [3147] = {.count = 1, .reusable = false}, SHIFT(1115), + [3149] = {.count = 1, .reusable = true}, SHIFT(1116), + [3151] = {.count = 1, .reusable = false}, SHIFT(1117), + [3153] = {.count = 1, .reusable = true}, SHIFT(1120), + [3155] = {.count = 1, .reusable = false}, SHIFT(1120), + [3157] = {.count = 1, .reusable = true}, SHIFT(1121), + [3159] = {.count = 1, .reusable = true}, SHIFT(1122), + [3161] = {.count = 1, .reusable = true}, SHIFT(1123), + [3163] = {.count = 1, .reusable = false}, SHIFT(1123), + [3165] = {.count = 1, .reusable = true}, SHIFT(1124), + [3167] = {.count = 1, .reusable = true}, SHIFT(1125), + [3169] = {.count = 1, .reusable = false}, SHIFT(1126), + [3171] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(142), + [3174] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(143), + [3177] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(851), + [3180] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(852), + [3183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(853), + [3186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(147), + [3189] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(854), + [3192] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(148), + [3195] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(525), + [3198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(855), + [3201] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(856), + [3204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(857), + [3207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(858), + [3210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(859), + [3213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(860), + [3216] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(861), + [3219] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(862), + [3222] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(863), + [3225] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(864), + [3228] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(865), + [3231] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(870), + [3234] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(870), + [3237] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(866), + [3240] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 32), + [3242] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 33), + [3244] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 14), + [3246] = {.count = 1, .reusable = true}, SHIFT(1130), + [3248] = {.count = 1, .reusable = true}, SHIFT(1131), + [3250] = {.count = 1, .reusable = true}, SHIFT(1133), + [3252] = {.count = 1, .reusable = true}, SHIFT(1134), + [3254] = {.count = 1, .reusable = true}, SHIFT(1135), + [3256] = {.count = 1, .reusable = true}, SHIFT(1136), + [3258] = {.count = 1, .reusable = false}, SHIFT(1136), + [3260] = {.count = 1, .reusable = true}, SHIFT(1137), + [3262] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), + [3264] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 34), + [3266] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), + [3268] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 35), + [3270] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), + [3272] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 36), + [3274] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), + [3276] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 37), + [3278] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), + [3280] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 38), + [3282] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), + [3284] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 39), + [3286] = {.count = 1, .reusable = true}, SHIFT(1138), + [3288] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1042), + [3291] = {.count = 1, .reusable = true}, SHIFT(1139), + [3293] = {.count = 1, .reusable = true}, SHIFT(1140), + [3295] = {.count = 1, .reusable = true}, SHIFT(1141), + [3297] = {.count = 1, .reusable = false}, SHIFT(1141), + [3299] = {.count = 1, .reusable = true}, SHIFT(1142), + [3301] = {.count = 1, .reusable = true}, SHIFT(1143), + [3303] = {.count = 1, .reusable = true}, SHIFT(1144), + [3305] = {.count = 1, .reusable = true}, SHIFT(1145), + [3307] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [3309] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [3311] = {.count = 1, .reusable = false}, SHIFT(1146), + [3313] = {.count = 1, .reusable = true}, SHIFT(1147), + [3315] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 5), + [3317] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 5), + [3319] = {.count = 1, .reusable = false}, SHIFT(414), + [3321] = {.count = 1, .reusable = false}, SHIFT(415), + [3323] = {.count = 1, .reusable = true}, SHIFT(1148), + [3325] = {.count = 1, .reusable = false}, SHIFT(1148), + [3327] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), + [3329] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), + [3331] = {.count = 1, .reusable = false}, SHIFT(1149), + [3333] = {.count = 1, .reusable = false}, SHIFT(1150), + [3335] = {.count = 1, .reusable = false}, SHIFT(1151), + [3337] = {.count = 1, .reusable = false}, SHIFT(1152), + [3339] = {.count = 1, .reusable = false}, SHIFT(1153), + [3341] = {.count = 1, .reusable = false}, SHIFT(1154), + [3343] = {.count = 1, .reusable = false}, SHIFT(1155), + [3345] = {.count = 1, .reusable = true}, SHIFT(1157), + [3347] = {.count = 1, .reusable = true}, SHIFT(1158), + [3349] = {.count = 1, .reusable = false}, SHIFT(1158), + [3351] = {.count = 1, .reusable = true}, SHIFT(1159), + [3353] = {.count = 1, .reusable = true}, SHIFT(1160), + [3355] = {.count = 1, .reusable = false}, SHIFT(1160), + [3357] = {.count = 1, .reusable = true}, SHIFT(1161), + [3359] = {.count = 1, .reusable = true}, SHIFT(1163), + [3361] = {.count = 1, .reusable = true}, SHIFT(1165), + [3363] = {.count = 1, .reusable = false}, SHIFT(1165), + [3365] = {.count = 1, .reusable = true}, SHIFT(1166), + [3367] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [3369] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), + [3371] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), + [3373] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(951), + [3376] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), + [3378] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [3380] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [3382] = {.count = 1, .reusable = true}, SHIFT(1167), + [3384] = {.count = 1, .reusable = true}, SHIFT(1168), + [3386] = {.count = 1, .reusable = true}, SHIFT(1169), + [3388] = {.count = 1, .reusable = true}, SHIFT(1170), + [3390] = {.count = 1, .reusable = true}, SHIFT(1171), + [3392] = {.count = 1, .reusable = true}, SHIFT(1172), + [3394] = {.count = 1, .reusable = true}, SHIFT(1173), + [3396] = {.count = 1, .reusable = true}, SHIFT(1174), + [3398] = {.count = 1, .reusable = false}, SHIFT(1175), + [3400] = {.count = 1, .reusable = true}, SHIFT(1178), + [3402] = {.count = 1, .reusable = true}, SHIFT(1179), + [3404] = {.count = 1, .reusable = false}, SHIFT(1180), + [3406] = {.count = 1, .reusable = true}, SHIFT(1183), + [3408] = {.count = 1, .reusable = true}, SHIFT(1184), + [3410] = {.count = 1, .reusable = false}, SHIFT(1185), + [3412] = {.count = 1, .reusable = true}, SHIFT(1188), + [3414] = {.count = 1, .reusable = true}, SHIFT(1189), + [3416] = {.count = 1, .reusable = true}, SHIFT(1191), + [3418] = {.count = 1, .reusable = true}, SHIFT(1192), + [3420] = {.count = 1, .reusable = true}, SHIFT(1193), + [3422] = {.count = 1, .reusable = true}, SHIFT(1194), + [3424] = {.count = 1, .reusable = false}, SHIFT(1194), + [3426] = {.count = 1, .reusable = true}, SHIFT(1195), + [3428] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 40), + [3430] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 41), + [3432] = {.count = 1, .reusable = false}, SHIFT(1196), + [3434] = {.count = 1, .reusable = false}, SHIFT(1197), + [3436] = {.count = 1, .reusable = false}, SHIFT(1198), + [3438] = {.count = 1, .reusable = false}, SHIFT(1199), + [3440] = {.count = 1, .reusable = false}, SHIFT(1200), + [3442] = {.count = 1, .reusable = false}, SHIFT(1201), + [3444] = {.count = 1, .reusable = false}, SHIFT(1202), + [3446] = {.count = 1, .reusable = true}, SHIFT(1206), + [3448] = {.count = 1, .reusable = false}, SHIFT(1206), + [3450] = {.count = 1, .reusable = true}, SHIFT(1207), + [3452] = {.count = 1, .reusable = true}, SHIFT(1208), + [3454] = {.count = 1, .reusable = false}, SHIFT(1208), + [3456] = {.count = 1, .reusable = true}, SHIFT(1209), + [3458] = {.count = 1, .reusable = true}, SHIFT(1210), + [3460] = {.count = 1, .reusable = false}, SHIFT(1210), + [3462] = {.count = 1, .reusable = false}, SHIFT(671), + [3464] = {.count = 1, .reusable = false}, SHIFT(672), + [3466] = {.count = 1, .reusable = true}, SHIFT(1211), + [3468] = {.count = 1, .reusable = false}, SHIFT(1211), + [3470] = {.count = 1, .reusable = true}, SHIFT(1212), + [3472] = {.count = 1, .reusable = false}, SHIFT(1212), + [3474] = {.count = 1, .reusable = true}, SHIFT(1213), + [3476] = {.count = 1, .reusable = false}, SHIFT(1214), + [3478] = {.count = 1, .reusable = true}, SHIFT(1215), + [3480] = {.count = 1, .reusable = false}, SHIFT(1215), + [3482] = {.count = 1, .reusable = true}, SHIFT(1216), + [3484] = {.count = 1, .reusable = true}, SHIFT(1217), + [3486] = {.count = 1, .reusable = false}, SHIFT(1217), + [3488] = {.count = 1, .reusable = true}, SHIFT(1219), + [3490] = {.count = 1, .reusable = false}, SHIFT(1219), + [3492] = {.count = 1, .reusable = true}, SHIFT(1220), + [3494] = {.count = 1, .reusable = true}, SHIFT(1221), + [3496] = {.count = 1, .reusable = true}, SHIFT(1222), + [3498] = {.count = 1, .reusable = false}, SHIFT(1222), + [3500] = {.count = 1, .reusable = true}, SHIFT(1223), + [3502] = {.count = 1, .reusable = true}, SHIFT(1224), + [3504] = {.count = 1, .reusable = true}, SHIFT(1225), + [3506] = {.count = 1, .reusable = true}, SHIFT(1226), + [3508] = {.count = 1, .reusable = true}, SHIFT(1227), + [3510] = {.count = 1, .reusable = true}, SHIFT(1228), + [3512] = {.count = 1, .reusable = true}, SHIFT(1230), + [3514] = {.count = 1, .reusable = false}, SHIFT(1230), + [3516] = {.count = 1, .reusable = true}, SHIFT(1231), + [3518] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 6), + [3520] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 6), + [3522] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [3524] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [3526] = {.count = 1, .reusable = true}, SHIFT(1233), + [3528] = {.count = 1, .reusable = true}, SHIFT(1235), + [3530] = {.count = 1, .reusable = false}, SHIFT(1235), + [3532] = {.count = 1, .reusable = true}, SHIFT(1236), + [3534] = {.count = 1, .reusable = true}, SHIFT(1237), + [3536] = {.count = 1, .reusable = true}, SHIFT(1238), + [3538] = {.count = 1, .reusable = true}, SHIFT(1239), + [3540] = {.count = 1, .reusable = true}, SHIFT(1240), + [3542] = {.count = 1, .reusable = true}, SHIFT(1241), + [3544] = {.count = 1, .reusable = false}, SHIFT(1242), + [3546] = {.count = 1, .reusable = false}, SHIFT(1243), + [3548] = {.count = 1, .reusable = false}, SHIFT(1244), + [3550] = {.count = 1, .reusable = false}, SHIFT(1245), + [3552] = {.count = 1, .reusable = false}, SHIFT(1246), + [3554] = {.count = 1, .reusable = false}, SHIFT(1247), + [3556] = {.count = 1, .reusable = false}, SHIFT(1248), + [3558] = {.count = 1, .reusable = true}, SHIFT(1252), + [3560] = {.count = 1, .reusable = false}, SHIFT(1252), + [3562] = {.count = 1, .reusable = true}, SHIFT(1253), + [3564] = {.count = 1, .reusable = true}, SHIFT(1254), + [3566] = {.count = 1, .reusable = false}, SHIFT(1254), + [3568] = {.count = 1, .reusable = true}, SHIFT(1255), + [3570] = {.count = 1, .reusable = true}, SHIFT(1256), + [3572] = {.count = 1, .reusable = false}, SHIFT(1256), + [3574] = {.count = 1, .reusable = true}, SHIFT(1257), + [3576] = {.count = 1, .reusable = true}, SHIFT(1258), + [3578] = {.count = 1, .reusable = true}, SHIFT(1259), + [3580] = {.count = 1, .reusable = false}, SHIFT(1259), + [3582] = {.count = 1, .reusable = true}, SHIFT(1260), + [3584] = {.count = 1, .reusable = true}, SHIFT(1261), + [3586] = {.count = 1, .reusable = true}, SHIFT(1262), + [3588] = {.count = 1, .reusable = true}, SHIFT(1263), + [3590] = {.count = 1, .reusable = false}, SHIFT(1264), + [3592] = {.count = 1, .reusable = true}, SHIFT(1265), + [3594] = {.count = 1, .reusable = true}, SHIFT(1267), + [3596] = {.count = 1, .reusable = true}, SHIFT(1269), + [3598] = {.count = 1, .reusable = false}, SHIFT(1269), + [3600] = {.count = 1, .reusable = true}, SHIFT(1270), + [3602] = {.count = 1, .reusable = true}, SHIFT(1271), + [3604] = {.count = 1, .reusable = true}, SHIFT(1272), + [3606] = {.count = 1, .reusable = true}, SHIFT(1273), + [3608] = {.count = 1, .reusable = true}, SHIFT(1274), + [3610] = {.count = 1, .reusable = true}, SHIFT(1275), + [3612] = {.count = 1, .reusable = false}, SHIFT(1275), + [3614] = {.count = 1, .reusable = true}, SHIFT(1276), + [3616] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [3618] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [3620] = {.count = 1, .reusable = true}, SHIFT(1277), + [3622] = {.count = 1, .reusable = false}, SHIFT(1277), + [3624] = {.count = 1, .reusable = true}, SHIFT(1278), + [3626] = {.count = 1, .reusable = false}, SHIFT(1278), + [3628] = {.count = 1, .reusable = true}, SHIFT(1279), + [3630] = {.count = 1, .reusable = false}, SHIFT(1280), + [3632] = {.count = 1, .reusable = true}, SHIFT(1281), + [3634] = {.count = 1, .reusable = false}, SHIFT(1281), + [3636] = {.count = 1, .reusable = true}, SHIFT(1282), + [3638] = {.count = 1, .reusable = true}, SHIFT(1283), + [3640] = {.count = 1, .reusable = false}, SHIFT(1283), + [3642] = {.count = 1, .reusable = true}, SHIFT(1284), + [3644] = {.count = 1, .reusable = true}, SHIFT(1286), + [3646] = {.count = 1, .reusable = false}, SHIFT(1286), + [3648] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), + [3650] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), + [3652] = {.count = 1, .reusable = true}, SHIFT(1288), + [3654] = {.count = 1, .reusable = true}, SHIFT(1290), + [3656] = {.count = 1, .reusable = true}, SHIFT(1291), + [3658] = {.count = 1, .reusable = true}, SHIFT(1292), + [3660] = {.count = 1, .reusable = false}, SHIFT(1292), + [3662] = {.count = 1, .reusable = true}, SHIFT(1293), + [3664] = {.count = 1, .reusable = true}, SHIFT(1294), + [3666] = {.count = 1, .reusable = true}, SHIFT(1295), + [3668] = {.count = 1, .reusable = true}, SHIFT(1296), + [3670] = {.count = 1, .reusable = false}, SHIFT(1297), + [3672] = {.count = 1, .reusable = true}, SHIFT(1298), + [3674] = {.count = 1, .reusable = true}, SHIFT(1300), + [3676] = {.count = 1, .reusable = true}, SHIFT(1302), + [3678] = {.count = 1, .reusable = false}, SHIFT(1302), + [3680] = {.count = 1, .reusable = true}, SHIFT(1303), + [3682] = {.count = 1, .reusable = true}, SHIFT(1304), + [3684] = {.count = 1, .reusable = false}, SHIFT(1304), + [3686] = {.count = 1, .reusable = true}, SHIFT(1305), + [3688] = {.count = 1, .reusable = false}, SHIFT(1305), + [3690] = {.count = 1, .reusable = true}, SHIFT(1306), + [3692] = {.count = 1, .reusable = false}, SHIFT(1307), + [3694] = {.count = 1, .reusable = true}, SHIFT(1308), + [3696] = {.count = 1, .reusable = false}, SHIFT(1308), + [3698] = {.count = 1, .reusable = true}, SHIFT(1309), + [3700] = {.count = 1, .reusable = true}, SHIFT(1310), + [3702] = {.count = 1, .reusable = false}, SHIFT(1310), + [3704] = {.count = 1, .reusable = true}, SHIFT(1313), + [3706] = {.count = 1, .reusable = true}, SHIFT(1315), + [3708] = {.count = 1, .reusable = false}, SHIFT(1315), + [3710] = {.count = 1, .reusable = true}, SHIFT(1317), + [3712] = {.count = 1, .reusable = true}, SHIFT(1318), + [3714] = {.count = 1, .reusable = false}, SHIFT(1318), + [3716] = {.count = 1, .reusable = true}, SHIFT(1319), + [3718] = {.count = 1, .reusable = true}, SHIFT(1320), + [3720] = {.count = 1, .reusable = false}, SHIFT(1320), + [3722] = {.count = 1, .reusable = true}, SHIFT(1321), + [3724] = {.count = 1, .reusable = true}, SHIFT(1322), + [3726] = {.count = 1, .reusable = true}, SHIFT(1323), + [3728] = {.count = 1, .reusable = true}, SHIFT(1324), + [3730] = {.count = 1, .reusable = true}, SHIFT(1325), + [3732] = {.count = 1, .reusable = false}, SHIFT(1325), + [3734] = {.count = 1, .reusable = true}, SHIFT(1326), + [3736] = {.count = 1, .reusable = true}, SHIFT(1327), + [3738] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), + [3740] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), + [3742] = {.count = 1, .reusable = true}, SHIFT(1330), + [3744] = {.count = 1, .reusable = true}, SHIFT(1331), + [3746] = {.count = 1, .reusable = false}, SHIFT(1331), + [3748] = {.count = 1, .reusable = true}, SHIFT(1332), + [3750] = {.count = 1, .reusable = false}, SHIFT(1332), + [3752] = {.count = 1, .reusable = true}, SHIFT(1333), + [3754] = {.count = 1, .reusable = false}, SHIFT(1334), + [3756] = {.count = 1, .reusable = true}, SHIFT(1335), + [3758] = {.count = 1, .reusable = false}, SHIFT(1335), + [3760] = {.count = 1, .reusable = true}, SHIFT(1336), + [3762] = {.count = 1, .reusable = true}, SHIFT(1337), + [3764] = {.count = 1, .reusable = false}, SHIFT(1337), + [3766] = {.count = 1, .reusable = true}, SHIFT(1340), + [3768] = {.count = 1, .reusable = true}, SHIFT(1342), + [3770] = {.count = 1, .reusable = false}, SHIFT(1342), + [3772] = {.count = 1, .reusable = true}, SHIFT(1343), + [3774] = {.count = 1, .reusable = true}, SHIFT(1344), + [3776] = {.count = 1, .reusable = true}, SHIFT(1345), + [3778] = {.count = 1, .reusable = true}, SHIFT(1346), + [3780] = {.count = 1, .reusable = true}, SHIFT(1347), + [3782] = {.count = 1, .reusable = false}, SHIFT(1347), + [3784] = {.count = 1, .reusable = true}, SHIFT(1348), + [3786] = {.count = 1, .reusable = true}, SHIFT(1350), + [3788] = {.count = 1, .reusable = false}, SHIFT(1352), + [3790] = {.count = 1, .reusable = true}, SHIFT(1353), + [3792] = {.count = 1, .reusable = true}, SHIFT(1355), + [3794] = {.count = 1, .reusable = false}, SHIFT(1355), + [3796] = {.count = 1, .reusable = true}, SHIFT(1356), + [3798] = {.count = 1, .reusable = true}, SHIFT(1358), + [3800] = {.count = 1, .reusable = true}, SHIFT(1359), + [3802] = {.count = 1, .reusable = false}, SHIFT(1359), + [3804] = {.count = 1, .reusable = true}, SHIFT(1360), + [3806] = {.count = 1, .reusable = true}, SHIFT(1361), + [3808] = {.count = 1, .reusable = false}, SHIFT(1361), + [3810] = {.count = 1, .reusable = true}, SHIFT(1362), + [3812] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), + [3814] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), + [3816] = {.count = 1, .reusable = true}, SHIFT(1364), + [3818] = {.count = 1, .reusable = true}, SHIFT(1365), + [3820] = {.count = 1, .reusable = true}, SHIFT(1366), + [3822] = {.count = 1, .reusable = true}, SHIFT(1367), + [3824] = {.count = 1, .reusable = true}, SHIFT(1368), + [3826] = {.count = 1, .reusable = false}, SHIFT(1368), + [3828] = {.count = 1, .reusable = true}, SHIFT(1369), + [3830] = {.count = 1, .reusable = true}, SHIFT(1371), + [3832] = {.count = 1, .reusable = true}, SHIFT(1374), + [3834] = {.count = 1, .reusable = true}, SHIFT(1375), + [3836] = {.count = 1, .reusable = false}, SHIFT(1375), + [3838] = {.count = 1, .reusable = true}, SHIFT(1376), + [3840] = {.count = 1, .reusable = true}, SHIFT(1377), + [3842] = {.count = 1, .reusable = false}, SHIFT(1377), + [3844] = {.count = 1, .reusable = true}, SHIFT(1379), + [3846] = {.count = 1, .reusable = true}, SHIFT(1380), + [3848] = {.count = 1, .reusable = true}, SHIFT(1382), + [3850] = {.count = 1, .reusable = false}, SHIFT(1382), + [3852] = {.count = 1, .reusable = true}, SHIFT(1383), + [3854] = {.count = 1, .reusable = true}, SHIFT(1384), + [3856] = {.count = 1, .reusable = true}, SHIFT(1386), + [3858] = {.count = 1, .reusable = false}, SHIFT(1386), + [3860] = {.count = 1, .reusable = true}, SHIFT(1387), + [3862] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), + [3864] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), + [3866] = {.count = 1, .reusable = true}, SHIFT(1389), + [3868] = {.count = 1, .reusable = true}, SHIFT(1390), + [3870] = {.count = 1, .reusable = false}, SHIFT(1390), + [3872] = {.count = 1, .reusable = true}, SHIFT(1391), + [3874] = {.count = 1, .reusable = true}, SHIFT(1392), + [3876] = {.count = 1, .reusable = false}, SHIFT(1392), + [3878] = {.count = 1, .reusable = true}, SHIFT(1394), + [3880] = {.count = 1, .reusable = false}, SHIFT(1395), + [3882] = {.count = 1, .reusable = true}, SHIFT(1396), + [3884] = {.count = 1, .reusable = true}, SHIFT(1398), + [3886] = {.count = 1, .reusable = false}, SHIFT(1398), + [3888] = {.count = 1, .reusable = true}, SHIFT(1399), + [3890] = {.count = 1, .reusable = true}, SHIFT(1401), + [3892] = {.count = 1, .reusable = true}, SHIFT(1403), + [3894] = {.count = 1, .reusable = true}, SHIFT(1405), + [3896] = {.count = 1, .reusable = false}, SHIFT(1405), + [3898] = {.count = 1, .reusable = false}, SHIFT(1406), + [3900] = {.count = 1, .reusable = true}, SHIFT(1407), + [3902] = {.count = 1, .reusable = true}, SHIFT(1409), + [3904] = {.count = 1, .reusable = false}, SHIFT(1409), + [3906] = {.count = 1, .reusable = true}, SHIFT(1410), + [3908] = {.count = 1, .reusable = true}, SHIFT(1412), + [3910] = {.count = 1, .reusable = true}, SHIFT(1414), + [3912] = {.count = 1, .reusable = false}, SHIFT(1414), + [3914] = {.count = 1, .reusable = true}, SHIFT(1415), + [3916] = {.count = 1, .reusable = true}, SHIFT(1416), + [3918] = {.count = 1, .reusable = true}, SHIFT(1418), + [3920] = {.count = 1, .reusable = true}, SHIFT(1420), + [3922] = {.count = 1, .reusable = false}, SHIFT(1420), + [3924] = {.count = 1, .reusable = true}, SHIFT(1421), + [3926] = {.count = 1, .reusable = true}, SHIFT(1423), + [3928] = {.count = 1, .reusable = true}, SHIFT(1424), + [3930] = {.count = 1, .reusable = true}, SHIFT(1426), + [3932] = {.count = 1, .reusable = true}, SHIFT(1427), }; #ifdef _WIN32